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.111 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.110 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.109 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.108 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.107 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.106 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.105 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.104 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.103 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.102 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.101 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.100 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.99 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.98 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.97 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.96 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.95 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.94 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.93 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.92 lib/eval_helper/each_with_index_brace_code.rb