Sha256: e6f619d7368abc27c9565787719fed7694c7c9fcfa45a653e6174ad94b928165

Contents?: true

Size: 1.37 KB

Versions: 5291

Compression:

Stored size: 1.37 KB

Contents

require 'method_source'
require 'rspec'

def is_rbx?
  defined?(RUBY_ENGINE) && RUBY_ENGINE =~ /rbx/
end

def jruby?
  defined?(RUBY_ENGINE) && RUBY_ENGINE =~ /jruby/
end


module M
  def hello; :hello_module; end
end

$o = Object.new
def $o.hello; :hello_singleton; end

# A comment for hello

  # It spans two lines and is indented by 2 spaces
def hello; :hello; end

# a
# b
def comment_test1; end

 # a
 # b
def comment_test2; end

# a
#
# b
def comment_test3; end

# a

# b
def comment_test4; end


# a
  # b
    # c
# d
def comment_test5; end

# This is a comment for MyLambda
MyLambda = lambda { :lambda }
MyProc = Proc.new { :proc }


name = "name"

M.instance_eval <<-METHOD, __FILE__, __LINE__ + 1
  def hello_#{name}(*args)
    send_mesg(:#{name}, *args)
  end
METHOD

M.class_eval <<-METHOD, __FILE__, __LINE__ + 1
  def hello_#{name}(*args)
    send_mesg(:#{name}, *args)
  end
METHOD

# module_eval to DRY code up
#
M.module_eval <<-METHOD, __FILE__, __LINE__ + 1

  # module_eval is used here
  #
  def hi_#{name}
    @var = #{name}
  end
METHOD

# case where 2 methods are defined inside an _eval block
#
M.instance_eval <<EOF, __FILE__, __LINE__ + 1

  def #{name}_one()
    if 40 + 3
      44
    end
  end


  def #{name}_two()
    if 40 + 4
      45
    end
  end
EOF

# class_eval without filename and lineno + 1 parameter

M.class_eval "def #{name}_three; @tempfile.#{name}; end"

Version data entries

5,291 entries across 5,287 versions & 31 rubygems

Version Path
avalara_sdk-24.12.2 vendor/bundle/ruby/2.7.0/gems/method_source-1.0.0/spec/spec_helper.rb
avalara_sdk-24.12.1 vendor/bundle/ruby/2.7.0/gems/method_source-1.0.0/spec/spec_helper.rb
avalara_sdk-24.12.0 vendor/bundle/ruby/2.7.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.102 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
mux_ruby-3.20.0 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
mux_ruby-3.19.0 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.101 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
moneykit-0.1.15 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
moneykit-0.1.14 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.100 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.99 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.94 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.93 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
mux_ruby-3.18.0 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
moneykit-0.1.13 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
moneykit-0.1.12 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.92 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.91 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb
moneykit-0.1.11 vendor/bundle/ruby/3.2.0/gems/method_source-1.0.0/spec/spec_helper.rb
affixapi-1.1.90 vendor/bundle/ruby/3.3.0/gems/method_source-1.0.0/spec/spec_helper.rb