Guest User

Untitled

a guest
May 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. # vim: set filetype=ruby
  2. source :gemcutter
  3.  
  4. # Use our vendored Rails
  5. # I ran gem spec -v 2.3.5 > vendor/rails/activerecord/activerecord.gemspec to allow Bundler to see those
  6. gem "activerecord", :path => "vendor/rails/activerecord"
  7. gem "actionmailer", :path => "vendor/rails/actionmailer"
  8. gem "actionpack", :path => "vendor/rails/actionpack"
  9. gem "activesupport", :path => "vendor/rails/activesupport"
  10. gem "activeresource", :path => "vendor/rails/activeresource"
  11. gem "rails", :path => "vendor/rails/railties"
  12.  
  13. gem "pg", "~> 0.9.0"
  14.  
  15. gem "will_paginate", ">= 2.3.11"
  16. gem "aasm", ">= 2.1.5"
  17. gem "sparklines", ">= 0.5.2"
  18. gem "treetop", ">= 1.4.2"
  19. gem "escape", ">= 0.0.4"
  20. gem "mime-types", ">= 1.16"
  21. gem "spreadsheet", ">= 0.6.4.1"
  22. gem "lockfile", ">= 1.4.3"
  23. gem "uuid", ">= 2.1.0"
  24. gem "hpricot", ">= 0.8.2"
  25. gem "hoptoad_notifier", ">= 2.2.2"
  26. gem "rest-client", ">= 1.4.2", :require => "rest_client"
  27. gem "active_url", ">= 0.1.4"
  28.  
  29. gem "json", ">= 1.2.0"
  30. gem "rmagick", ">= 2.12.2"
  31.  
  32. # Ruby's 1.9 stdlib replaced CSV with the implementation of 1.8's FasterCSV, but
  33. # the upgrade path is problematic: we have to change how we're loading the library.
  34. gem "fastercsv", ">= 1.5.0"
  35.  
  36. group :development do
  37. gem "ruby-debug", ">= 0.10.3"
  38. gem "thin"
  39. end
  40.  
  41. group :production do
  42. gem "thin"
  43. end
  44.  
  45. group :test do
  46. gem "shoulda", ">= 2.10.3"
  47. gem "mocha", ">= 0.9.8"
  48. gem "timecop", ">= 0.3.4"
  49. gem "factory_girl", ">= 1.2.4"
  50. gem "leftright", ">= 0.0.3"
  51. end
Add Comment
Please, Sign In to add comment