Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
2k views

Accessing Ruby Class Variables with class_eval and instance_eval

I have the following: class Test @@a = 10 def show_a() puts "a: #{@@a}" end class << self @@b = '40' def show_b puts "b: #{@@b}" end end end ...
4
votes
1answer
311 views

Where is instance_eval defined in Ruby 1.9.2?

Forgive my ignorance, but I must be missing something here. I can find the documentation for instance_eval for ruby 1.8.7 in the Object class, but I just cannot find it anywhere for 1.9.2. I know the ...
3
votes
1answer
438 views

Ruby - Possible to pass a block as a param as an actual block to another function?

This is what I'm trying to do: def call_block(in_class = "String", &block) instance = eval("#{in_class}.new") puts "instance class: #{instance.class}" instance.instance_eval{ ...
2
votes
2answers
243 views

Instance Eval in Javascript around browsers

From Coffeekup and JAML's source, (while working on question), we can see a way to hack ruby's instance eval into Javascript (JAML author explains more). It involves decompiling the function, and ...
1
vote
1answer
163 views

Dynamically added accessor assignment doesn't work when invoking block via instance_eval in Ruby

I have a class to which I add attribute accessors dynamically at runtime. This class forms part a DSL, whereby blocks get passed to configuration methods and invoked using instance_eval. This makes it ...
0
votes
1answer
65 views

Ruby/Rails: class_eval doesn't want to evaluate this code

To generate mocks for Omniauth, I Added this method to config/environments/development.rb def provides_mocks_for(*providers) providers.each do |provider| class_eval %Q{ ...
0
votes
1answer
140 views

Ruby instance_exec / instance_eval with arguments

I'm trying to dynamically call a method given in a string using parameters given in the same string, I'm getting stuck on supplying the parameters though... I currently have: query = Query.new ...
0
votes
1answer
83 views

Re-using Ruby DSL in a REPL or irb?

I have developed a simple DSL for tasks on a UniVerse database in jruby. It looks something like this support = { :host => 'localhost', :account => 'SUPPORT' } uni_task support do ...
0
votes
1answer
205 views

Ruby: how does constant-lookup work in instance_eval/class_eval?

I'm working my way through Pickaxe 1.9, and I'm a bit confused by constant-lookup in instance/class_eval blocks. I'm using 1.9.2. It seems that Ruby handles constant-lookup in *_eval blocks the same ...
0
votes
2answers
217 views

ruby metaprogramming - yield block not working in dynamically added method

I'm working on extending the NotAMock framework for stubbing methods in rspec, and getting the stubs to yield to a methods block. The code in this Gist works perfectly when I code it on my own (which ...
0
votes
1answer
33 views

Why does the second 'p arg' report the Foo instance?

class Foo def with_yield yield(self) end def with_instance_eval(&block) instance_eval(&block) end end f = Foo.new f.with_yield do |arg| p self # => main p arg # ...