Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: daa482601a4f
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 64f23947110e
Choose a head ref
  • 7 commits
  • 7 files changed
  • 1 contributor

Commits on Oct 21, 2014

  1. Updated Changelog.

    brixen committed Oct 21, 2014
    Copy the full SHA
    735272a View commit details
  2. Copy the full SHA
    6ccff51 View commit details
  3. Copy the full SHA
    5cae6b0 View commit details
  4. Use net/https in configure.

    brixen committed Oct 21, 2014
    Copy the full SHA
    ebba599 View commit details
  5. Updated gems_list.txt.

    brixen committed Oct 21, 2014
    Copy the full SHA
    5002cb4 View commit details
  6. Bumped version to 1.3.4.

    brixen committed Oct 21, 2014
    Copy the full SHA
    dd1fabe View commit details
  7. Reset release date.

    brixen committed Oct 21, 2014
    Copy the full SHA
    64f2394 View commit details
Showing with 21 additions and 7 deletions.
  1. +11 −0 Changelog
  2. +2 −0 Gemfile
  3. +1 −0 Gemfile.installed
  4. +2 −1 Gemfile.lock
  5. +2 −2 configure
  6. +2 −3 gems_list.txt
  7. +1 −1 rakelib/release.rake
11 changes: 11 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 1.3.4 (2014-09-30)

* Hash works with private #hash methods. (Sophia Shao)
* Hash HAMT implementation passes RubySpec. (Sophia Shao)
* JIT implements cast_for_multi_block_arg correctly. (Sophia Shao)
* JIT calls rbx_instance_of correctly. (Brian Shirai)
* IO.new handles closed IO streams. (Sophia Shao)
* The C-API rb_Array function is improved. (Sophia Shao)
* The C-API supports rb_eval_string_wrap. (Sophia Shao)
* The C-API rb_std{in,out,err}, rb_defout are improved. (Sophia Shao)

Version 1.3.3 (2014-06-22)

* The C-API supports rb_std{in,out,err}, rb_defout. (Brian Shirai)
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -6,4 +6,6 @@ gem "redcard", "~> 1.0"
gem "daedalus-core", "~> 0.0.3"
gem "rubinius-bridge", "~> 1.0"

gem "rubinius-toolset", "~> 2.2.0"

gem "rubinius-build_tools", "~> 1.0"
1 change: 1 addition & 0 deletions Gemfile.installed
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ source 'https://rubygems.org'

gem "rubinius-build_tools", "~> 1.0"
gem "rubinius-developer_tools", "~> 2.0"
gem "rubinius-toolset", "~> 2.2.0"

gem "rubysl", "~> 1.0"
gem "rubysl-test-unit", "~> 1.0"
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ GEM
rake (10.3.2)
redcard (1.1.0)
rubinius-ast (1.2.1)
rubinius-bridge (1.0.8)
rubinius-bridge (1.1.0)
redcard (~> 1.0)
rubinius-build_tools (1.0.0)
rubinius-ast (~> 1.0)
@@ -28,3 +28,4 @@ DEPENDENCIES
redcard (~> 1.0)
rubinius-bridge (~> 1.0)
rubinius-build_tools (~> 1.0)
rubinius-toolset (~> 2.2.0)
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ require 'fileutils'
require 'stringio'
require 'date'
require 'digest/md5'
require 'net/http'
require 'net/https'
require 'redcard'

module Rubinius
@@ -175,7 +175,7 @@ class Configure
# Essential settings (modify these for creating releases)
@ruby_version = "1.8.7"
@libversion = "1.3"
@patch_version = "3"
@patch_version = "4"
@release_date = nil

# Configure settings
5 changes: 2 additions & 3 deletions gems_list.txt
Original file line number Diff line number Diff line change
@@ -2,10 +2,9 @@ bundler-1.6.3.gem
ffi2-generators-0.1.1.gem
json-1.8.1.gem
minitest-4.7.5.gem
racc-1.4.11.gem
racc-1.4.12.gem
rake-10.3.2.gem
rdoc-4.1.1.gem
redcard-1.1.0.gem
rdoc-4.1.2.gem
rubinius-ast-1.2.1.gem
rubinius-build_tools-1.0.0.gem
rubinius-compiler-1.1.2.gem
2 changes: 1 addition & 1 deletion rakelib/release.rake
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ desc "Create a release tarball"
task :release => :revision_file do
Dir.chdir BUILD_CONFIG[:gems_cache] do
sh "rm -f *", :verbose => $verbose
sh "gem fetch bundler", :verbose => $verbose
sh "gem fetch bundler -v 1.6.3", :verbose => $verbose
end
sh "bundle update", :verbose => $verbose
Rake::Task['gems:update_list'].invoke