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: a7a6cb0052e3
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ffd327fb5fed
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 10, 2015

  1. Updated bundler.

    brixen committed Jan 10, 2015
    Copy the full SHA
    e9ebcb5 View commit details
  2. Copy the full SHA
    ffd327f View commit details
Showing with 7 additions and 1 deletion.
  1. +1 −1 gems_list.txt
  2. +6 −0 spec/ruby/optional/capi/object_spec.rb
2 changes: 1 addition & 1 deletion gems_list.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bundler-1.7.7.gem
bundler-1.7.11.gem
ffi2-generators-0.1.1.gem
json-1.8.2.gem
minitest-4.7.5.gem
6 changes: 6 additions & 0 deletions spec/ruby/optional/capi/object_spec.rb
Original file line number Diff line number Diff line change
@@ -713,6 +713,12 @@ def reach
@o.rb_iv_set(@test, "@foo", 42).should == 42
@test.instance_eval { @foo }.should == 42
end

it "sets and returns the instance variable with a bare name" do
@o.rb_iv_set(@test, "foo", 42).should == 42
@o.rb_iv_get(@test, "foo").should == 42
@test.instance_eval { @foo }.should == 7
end
end

describe "rb_ivar_get" do