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.131 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.130 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.129 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.128 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.127 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.126 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.125 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.124 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.123 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.122 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.121 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.120 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.119 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.118 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.117 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.116 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.115 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.114 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.113 lib/eval_helper/each_with_index_brace_code.rb
tbpgr_utils-0.0.112 lib/eval_helper/each_with_index_brace_code.rb