Guest User

Untitled

a guest
May 26th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. # vim: filetype=ruby
  2. source :gemcutter
  3.  
  4. git "git://github.com/bloom/rails.git", :branch => "adgear-2-3-stable"
  5.  
  6. gem "rails", "2.3.8.adgear"
  7.  
  8. gem "pg", "~> 0.9.0"
  9.  
  10. gem "will_paginate", ">= 2.3.11"
  11. gem "aasm", ">= 2.1.5"
  12. gem "sparklines", ">= 0.5.2"
  13. gem "treetop", ">= 1.4.2"
  14. gem "escape", ">= 0.0.4"
  15. gem "mime-types", ">= 1.16"
  16. gem "spreadsheet", ">= 0.6.4.1"
  17. gem "lockfile", ">= 1.4.3"
  18. gem "uuid", ">= 2.1.0"
  19. gem "hpricot", ">= 0.8.2"
  20. gem "hoptoad_notifier", ">= 2.2.2"
  21. gem "rest-client", ">= 1.4.2", :require => "rest_client"
  22. gem "active_url", ">= 0.1.4"
  23.  
  24. gem "json", ">= 1.2.0"
  25. gem "rmagick", ">= 2.12.2"
  26.  
  27. # Ruby's 1.9 stdlib replaced CSV with the implementation of 1.8's FasterCSV, but
  28. # the upgrade path is problematic: we have to change how we're loading the library.
  29. gem "fastercsv", ">= 1.5.0"
  30.  
  31. group :development do
  32. gem "ruby-debug", ">= 0.10.3"
  33. gem "thin"
  34. end
  35.  
  36. group :production, :stw_production, :stw_staging, :staging, :atex_production, :wd_production do
  37. gem "thin"
  38. end
  39.  
  40. group :test do
  41. gem "shoulda", ">= 2.10.3"
  42. gem "mocha", ">= 0.9.8"
  43. gem "timecop", ">= 0.3.4"
  44. gem "factory_girl", ">= 1.2.4"
  45. gem "leftright", ">= 0.0.3"
  46. end
Add Comment
Please, Sign In to add comment