PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/tools/drillbit/Resources/tests/ruby/foo.rb

http://github.com/appcelerator/titanium_desktop
Ruby | 15 lines | 14 code | 1 blank | 0 comment | 0 complexity | ad8b790300ac95b862e6c42a4d103995 MD5 | raw file
Possible License(s): Apache-2.0
  1. require 'bar'
  2. class Foo
  3. def bar
  4. 'hello world'
  5. end
  6. def yum
  7. bar = Bar.new
  8. bar.mitzvah
  9. end
  10. def what_is_love?(i_am)
  11. bar = Bar.new
  12. bar.give_me_some(i_am)
  13. end
  14. end