Advertisement
Guest User

Gemfile

a guest
Mar 26th, 2014
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.96 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  4. gem 'rails', '4.0.2'
  5.  
  6. # Use mysql2 as the database for Active Record
  7. gem 'mysql2'
  8.  
  9. # Use SCSS for stylesheets
  10. gem 'sass-rails', '~> 4.0.0'
  11.  
  12. # Use Uglifier as compressor for JavaScript assets
  13. gem 'uglifier', '>= 1.3.0'
  14.  
  15. # Use CoffeeScript for .js.coffee assets and views
  16. gem 'coffee-rails', '~> 4.0.0'
  17.  
  18. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  19. # gem 'therubyracer', platforms: :ruby
  20.  
  21. # Use jquery as the JavaScript library
  22. gem 'jquery-rails'
  23.  
  24. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  25. gem 'turbolinks'
  26.  
  27. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  28. gem 'jbuilder', '~> 1.2'
  29.  
  30. gem 'jquery-turbolinks'
  31. gem 'devise'
  32. gem 'cancan'
  33. gem 'haml'
  34. gem 'dynamic_form'
  35. gem 'has_scope'
  36. gem 'paperclip'
  37. gem 'kaminari'
  38. gem 'sortable', git: 'git://github.com/shuber/sortable.git'
  39. gem 'aasm'
  40. gem 'recaptcha', require: 'recaptcha/rails'
  41. gem 'activemerchant', require: 'active_merchant'
  42. gem 'hpricot'
  43. gem 'wicked_pdf'
  44. gem 'whenever', require: false
  45. gem 'geocoder'
  46. gem 'localized_country_select'
  47. gem 'twocheckout', git: 'git://github.com/attilahorvath/2checkout-ruby.git'
  48. gem 'settingslogic'
  49. gem 'babosa'
  50. gem 'localeapp'
  51. gem 'cells'
  52. gem 'acts_as_list'
  53. gem 'browser'
  54. gem 'net-dns'
  55. gem 'delayed_job_active_record'
  56.  
  57. gem 'newrelic_rpm'
  58.  
  59. group :doc do
  60.   # bundle exec rake doc:rails generates the API under doc/api.
  61.   gem 'sdoc', require: false
  62. end
  63.  
  64. group :test do
  65.   gem 'turn', require: false
  66. end
  67.  
  68. # Use ActiveModel has_secure_password
  69. # gem 'bcrypt-ruby', '~> 3.1.2'
  70.  
  71. # Use unicorn as the app server
  72. # gem 'unicorn'
  73.  
  74. # Use Capistrano for deployment
  75. group :development do
  76.   gem 'mail_view'
  77.   gem 'capistrano-rails'
  78.   gem 'thin'
  79.   gem 'quiet_assets'
  80. end
  81.  
  82. # Use debugger
  83. # gem 'debugger', group: [:development, :test]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement