Gemfile 591 B

12345678910111213141516171819202122232425
  1. source "http://rubygems.org"
  2. gem "execjs", ">=0.3.0"
  3. gem "multi_json", "~> 1.3"
  4. # Depend on defined ExecJS runtime
  5. execjs_runtimes = {
  6. "RubyRacer" => "therubyracer",
  7. "RubyRhino" => "therubyrhino",
  8. "Mustang" => "mustang"
  9. }
  10. if ENV["EXECJS_RUNTIME"] && execjs_runtimes[ENV["EXECJS_RUNTIME"]]
  11. gem execjs_runtimes[ENV["EXECJS_RUNTIME"]], :group => :development
  12. end
  13. # Engine
  14. gem ENV["MULTI_JSON_ENGINE"], :group => :development if ENV["MULTI_JSON_ENGINE"]
  15. group :development do
  16. gem "rspec", "~> 2.7"
  17. gem "bundler", "~> 1.0"
  18. gem "jeweler", "~> 1.8.3"
  19. gem "rdoc", "~> 3.11"
  20. end