Sha256: 087fdcb0ec41c44bd7df70040b468bd143384ad45ba8f33b19991546814bd957

Contents?: true

Size: 618 Bytes

Versions: 86

Compression:

Stored size: 618 Bytes

Contents

# encoding: utf-8

module EvalHelper
  # create each with index brace single line code, for eval
  #
  # ==== Examples
  #
  #   class EvalHelperEachWithIndexBraceTest
  #     include EvalHelper
  #
  #     def hoge(hash)
  #       each_with_index_brace_code(hash[:target], hash[:proc])
  #     end
  #   end
  #
  #   hash = {
  #     target: '[:a, :b]',
  #     proc: 'puts "#{i}:#{v}"',
  #   }
  #   EvalHelperEachWithIndexBraceTest.new.hoge(hash) # => return '[:a, :b].each { |v, i|puts "#{i}:#{v}" }'
  #
  def each_with_index_brace_code(target, proc)
    "#{target}.each_with_index { |v, i|#{proc} }"
  end
end

Version data entries

86 entries across 86 versions & 1 rubygems

Version Path
tbpgr_utils-0.0.91 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.90 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.89 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.88 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.87 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.86 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.85 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.84 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.83 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.82 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.81 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.80 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.79 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.78 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.77 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.76 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.75 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.74 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.73 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.72 lib/eval_helper/each_with_index_brace_code.rb