This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group :assets do | |
gem 'sass-rails', '~> 4.0.0.beta1' | |
gem 'coffee-rails', '~> 4.0.0.beta1' | |
gem 'sprockets-rails', :require => 'sprockets/railtie' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer', platforms: :ruby | |
gem 'uglifier', '>= 1.0.3' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# What's the output of this program? | |
# Compare Ruby 1.8 to 1.9. | |
def fl; lambda { return 1 }.call; 2; end | |
def fp; proc { return 1 }.call; 2; end | |
def fPn; Proc.new { return 1 }.call; 2; end | |
puts fl | |
puts fp | |
puts fPn |