web-dev-qa-db-ja.com

rubyのブロック内のコンテキスト/バインディングを変更します

私はRubyにDSLを持っています:

desc 'list all todos'
command :list do |c|
  c.desc 'show todos in long form'
  c.switch :l
  c.action do |global,option,args|
    # some code that's not relevant to this question
  end
end

desc 'make a new todo'
command :new do |c|
  # etc.
end

仲間の開発者は、ccommandブロックに渡す必要がないようにDSLを拡張し、したがってc.内部のすべてのメソッド。おそらく、彼は次のコードを同じように機能させることができると示唆しました:

desc 'list all todos'
command :list do
  desc 'show todos in long form'
  switch :l
  action do |global,option,args|
    # some code that's not relevant to this question
  end
end

desc 'make a new todo'
command :new do
  # etc.
end

commandのコードは次のようになります

def command(*names)
  command = make_command_object(..)
  yield command                                                                                                                      
end

私はいくつかのことを試みましたが、機能させることができませんでした。 commandブロック内のコードのコンテキスト/バインディングをデフォルトとは異なるように変更する方法を理解できませんでした。

これが可能かどうか、そしてどうすればそれができるかについてのアイデアはありますか?

37
davetron5000

このコードを貼り付けます:

  def evaluate(&block)
    @self_before_instance_eval = eval "self", block.binding
    instance_eval &block
  end

  def method_missing(method, *args, &block)
    @self_before_instance_eval.send method, *args, &block
  end

詳細については、この本当に良い記事を参照してください ここ

31
Jatin Ganhotra

多分

def command(*names, &blk)
  command = make_command_object(..)
  command.instance_eval(&blk)
end

コマンドオブジェクトのコンテキストでブロックを評価できます。

10
Sony Santos
class CommandDSL
  def self.call(&blk)
    # Create a new CommandDSL instance, and instance_eval the block to it
    instance = new
    instance.instance_eval(&blk)
    # Now return all of the set instance variables as a Hash
    instance.instance_variables.inject({}) { |result_hash, instance_variable|
      result_hash[instance_variable] = instance.instance_variable_get(instance_variable)
      result_hash # Gotta have the block return the result_hash
    }
  end

  def desc(str); @desc = str; end
  def switch(sym); @switch = sym; end
  def action(&blk); @action = blk; end
end

def command(name, &blk)
  values_set_within_dsl = CommandDSL.call(&blk)

  # INSERT CODE HERE
  p name
  p values_set_within_dsl 
end

command :list do
  desc 'show todos in long form'
  switch :l
  action do |global,option,args|
    # some code that's not relevant to this question
  end
end

印刷されます:

:list
{:@desc=>"show todos in long form", :@switch=>:l, :@action=>#<Proc:0x2392830@C:/Users/Ryguy/Desktop/tesdt.rb:38>}
4
RyanScottLewis

この正確な問題を処理し、@ instance_variableアクセスやネストなどを処理するクラスを作成しました。これが別の質問の要約です。

ブロック呼び出しRuby on Rails

2
Irongaze.com