[macruby-changes] [4747] DietRB/trunk

source_changes at macosforge.org source_changes at macosforge.org
Fri Oct 8 04:09:06 PDT 2010


Revision: 4747
          http://trac.macosforge.org/projects/ruby/changeset/4747
Author:   eloy.de.enige at gmail.com
Date:     2010-10-08 04:09:04 -0700 (Fri, 08 Oct 2010)
Log Message:
-----------
Release version 0.5 which comes with ?\226?\128?\152drivers?\226?\128?\153: tty, readline, and socket.

From: Eloy Duran <eloy.de.enige at gmail.com>

Modified Paths:
--------------
    DietRB/trunk/dietrb.gemspec
    DietRB/trunk/lib/irb/version.rb

Modified: DietRB/trunk/dietrb.gemspec
===================================================================
--- DietRB/trunk/dietrb.gemspec	2010-10-08 11:08:56 UTC (rev 4746)
+++ DietRB/trunk/dietrb.gemspec	2010-10-08 11:09:04 UTC (rev 4747)
@@ -5,11 +5,11 @@
 
 Gem::Specification.new do |s|
   s.name = %q{dietrb}
-  s.version = "0.4.7"
+  s.version = "0.5.0"
 
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
   s.authors = ["Eloy Duran"]
-  s.date = %q{2010-07-02}
+  s.date = %q{2010-07-24}
   s.default_executable = %q{dietrb}
   s.description = %q{IRB on a diet, for MacRuby / Ruby 1.9}
   s.email = %q{eloy.de.enige at gmail.com}
@@ -30,6 +30,10 @@
      "lib/irb/completion.rb",
      "lib/irb/context.rb",
      "lib/irb/deprecated.rb",
+     "lib/irb/driver.rb",
+     "lib/irb/driver/readline.rb",
+     "lib/irb/driver/socket.rb",
+     "lib/irb/driver/tty.rb",
      "lib/irb/ext/colorize.rb",
      "lib/irb/ext/completion.rb",
      "lib/irb/ext/history.rb",
@@ -37,11 +41,14 @@
      "lib/irb/formatter.rb",
      "lib/irb/source.rb",
      "lib/irb/version.rb",
-     "spec/colorize_spec.rb",
-     "spec/completion_spec.rb",
      "spec/context_spec.rb",
+     "spec/driver/readline_spec.rb",
+     "spec/driver/tty_spec.rb",
+     "spec/driver_spec.rb",
+     "spec/ext/colorize_spec.rb",
+     "spec/ext/completion_spec.rb",
+     "spec/ext/history_spec.rb",
      "spec/formatter_spec.rb",
-     "spec/history_spec.rb",
      "spec/regression/context_spec.rb",
      "spec/source_spec.rb",
      "spec/spec_helper.rb"
@@ -50,14 +57,17 @@
   s.rdoc_options = ["--charset=UTF-8"]
   s.require_paths = ["lib"]
   s.required_ruby_version = Gem::Requirement.new("~> 1.9")
-  s.rubygems_version = %q{1.3.7}
+  s.rubygems_version = %q{1.3.5}
   s.summary = %q{IRB on a diet, for MacRuby / Ruby 1.9}
   s.test_files = [
-    "spec/colorize_spec.rb",
-     "spec/completion_spec.rb",
-     "spec/context_spec.rb",
+    "spec/context_spec.rb",
+     "spec/driver/readline_spec.rb",
+     "spec/driver/tty_spec.rb",
+     "spec/driver_spec.rb",
+     "spec/ext/colorize_spec.rb",
+     "spec/ext/completion_spec.rb",
+     "spec/ext/history_spec.rb",
      "spec/formatter_spec.rb",
-     "spec/history_spec.rb",
      "spec/regression/context_spec.rb",
      "spec/source_spec.rb",
      "spec/spec_helper.rb"
@@ -67,7 +77,7 @@
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
     s.specification_version = 3
 
-    if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
+    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
     else
     end
   else

Modified: DietRB/trunk/lib/irb/version.rb
===================================================================
--- DietRB/trunk/lib/irb/version.rb	2010-10-08 11:08:56 UTC (rev 4746)
+++ DietRB/trunk/lib/irb/version.rb	2010-10-08 11:09:04 UTC (rev 4747)
@@ -8,8 +8,8 @@
   module VERSION #:nodoc:
     NAME  = 'DietRB'
     MAJOR = 0
-    MINOR = 4
-    TINY  = 7
+    MINOR = 5
+    TINY  = 0
     
     STRING = [MAJOR, MINOR, TINY].join('.')
     DESCRIPTION = "#{NAME} (#{STRING})"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20101008/45b5f473/attachment-0001.html>


More information about the macruby-changes mailing list