Guest User

Untitled

a guest
Jul 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. source :gemcutter
  2.  
  3. gem 'rails'
  4.  
  5. gem 'sqlite3-ruby', :require => 'sqlite3'
  6.  
  7. gem 'haml'
  8. gem 'inherited_resources'
  9. gem 'warden'
  10. gem 'devise'
  11.  
  12. gem 'dm-core', :git => 'git://github.com/datamapper/dm-core.git'
  13. gem 'dm-devise'
  14. gem 'dm-migrations', :git => 'git://github.com/datamapper/dm-migrations.git'
  15. gem 'dm-postgres-adapter'
  16. gem 'dm-rails'
  17. gem 'dm-timestamps'
  18. gem 'dm-transactions'
  19. gem 'dm-types', :git => 'git://github.com/datamapper/dm-types.git'
  20. gem 'dm-validations', :git => 'git://github.com/datamapper/dm-validations.git'
  21.  
  22. gem 'delayed_job'
  23. gem 'delayed_job_data_mapper', '1.0.0.rc'
  24. gem 'compass'
  25. gem 'uuid'
  26. gem 'has_scope'
  27. gem 'navvy'
  28. gem 'aaronh-chronic', :git => 'git://github.com/AaronH/chronic.git', :require => 'chronic'
  29. gem 'mail'
  30. gem 'beanstalk-client'
  31. gem 'will_paginate', '3.0.pre'
  32. gem 'riddle'
  33. gem 'carrierwave', :git => 'git://github.com/jnicklas/carrierwave.git'
  34. gem 'memcached'
  35. gem 'simple_form'
  36. gem 'has_constant', :git => 'git://github.com/mattbeedle/has_constant.git'
  37. gem 'hassle', :git => 'git://github.com/koppen/hassle.git'
  38. gem 'sunspot', :require => 'sunspot'
  39. gem 'sunspot_rails'
  40. gem 'remail'
  41. gem 'amatch'
  42. gem 'gravtastic'
  43. gem 'cancan'
  44.  
  45. # Plugins
  46. gem 'salesflip-lead_notifications', :require => 'lead_notifications'
  47.  
  48. group :production do
  49. gem 'smurf'
  50. gem 'mbeedle-heroku-autoscale', :require => 'heroku/autoscale'
  51. gem 'mysql2'
  52. gem 'newrelic_rpm'
  53. end
  54.  
  55. group :development do
  56. gem 'ruby-debug19'
  57. gem 'wirble'
  58. gem 'heroku', :require => nil
  59. gem 'thin', :require => nil
  60. gem 'capistrano', :require => nil
  61. end
  62.  
  63. group :test do
  64. gem 'pickle'
  65. gem 'capybara'
  66. gem 'cucumber-rails'
  67. gem 'cucumber'
  68. gem 'spork'
  69. gem 'launchy'
  70. gem 'fakeweb'
  71. gem 'machinist'
  72. gem 'mocha'
  73. gem 'faker', '0.3.1'
  74. gem 'shoulda'
  75. gem 'database_cleaner'
  76. gem 'timecop'
  77. gem 'test_notifier'
  78. end
Add Comment
Please, Sign In to add comment