Skip to content

Commit

Permalink
Upgrade Ruby 2.1, 2.2 and 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon Hooijer committed May 27, 2016
1 parent be77570 commit 79c7a63
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
=== 2016-5-27

* Enhancements:
* Upgraded Ruby 2.3 to 2.3.1
* Upgraded Ruby 2.2 to 2.2.5
* Upgraded Ruby 2.1 to 2.1.9

=== 2016-2-3

* Enhancements:
Expand Down
12 changes: 6 additions & 6 deletions config/ruby_installer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ module RubyInstaller

Ruby21 = OpenStruct.new(
:number => "21",
:version => "2.1.8",
:version => "2.1.9",
:short_version => 'ruby21',
:url => "http://cache.ruby-lang.org/pub/ruby/2.1/",
:checkout => 'http://svn.ruby-lang.org/repos/ruby/branches/ruby_2_1',
Expand All @@ -137,7 +137,7 @@ module RubyInstaller
"CPPFLAGS='-DFD_SETSIZE=2048'"
],
:files => [
"ruby-2.1.8.tar.bz2"
"ruby-2.1.9.tar.bz2"
],
:dependencies => [
:ffi, :gdbm, :iconv, :openssl, :yaml, :zlib, :tcl, :tk
Expand All @@ -151,7 +151,7 @@ module RubyInstaller

Ruby22 = OpenStruct.new(
:number => "22",
:version => "2.2.4",
:version => "2.2.5",
:short_version => 'ruby22',
:url => "http://cache.ruby-lang.org/pub/ruby/2.2/",
:checkout => 'http://svn.ruby-lang.org/repos/ruby/branches/ruby_2_2',
Expand All @@ -168,7 +168,7 @@ module RubyInstaller
"CPPFLAGS='-DFD_SETSIZE=2048'"
],
:files => [
"ruby-2.2.4.tar.bz2"
"ruby-2.2.5.tar.bz2"
],
:dependencies => [
:ffi, :gdbm, :openssl, :yaml, :zlib, :tcl, :tk
Expand All @@ -180,7 +180,7 @@ module RubyInstaller

Ruby23 = OpenStruct.new(
:number => "23",
:version => "2.3.0",
:version => "2.3.1",
:short_version => 'ruby23',
:url => "http://cache.ruby-lang.org/pub/ruby/2.3/",
:checkout => 'http://svn.ruby-lang.org/repos/ruby/branches/ruby_2_3',
Expand All @@ -197,7 +197,7 @@ module RubyInstaller
"CPPFLAGS='-DFD_SETSIZE=2048'"
],
:files => [
"ruby-2.3.0.tar.bz2"
"ruby-2.3.1.tar.bz2"
],
:dependencies => [
:ffi, :gdbm, :openssl, :yaml, :zlib, :tcl, :tk
Expand Down

0 comments on commit 79c7a63

Please sign in to comment.