Gemfile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. source 'https://rubygems.org'
  2. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  3. gem 'rails', '4.1.4'
  4. # Use sqlite3 as the database for Active Record
  5. gem 'sqlite3'
  6. group :production do
  7. gem 'mysql2'
  8. end
  9. # Use SCSS for stylesheets
  10. gem 'sass-rails', '~> 4.0.3'
  11. # Use Uglifier as compressor for JavaScript assets
  12. gem 'uglifier', '>= 1.3.0'
  13. # Use CoffeeScript for .js.coffee assets and views
  14. gem 'coffee-rails', '~> 4.0.0'
  15. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  16. # gem 'therubyracer', platforms: :ruby
  17. # Use jquery as the JavaScript library
  18. gem 'jquery-rails'
  19. gem 'jquery-ui-rails'
  20. # Turbolinks makes following links in your web application faster.
  21. # Read more: https://github.com/rails/turbolinks
  22. gem 'turbolinks'
  23. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  24. gem 'jbuilder', '~> 2.0'
  25. # bundle exec rake doc:rails generates the API under doc/api.
  26. gem 'sdoc', '~> 0.4.0', group: :doc
  27. # Spring speeds up development by keeping your application running in the
  28. # background. Read more: https://github.com/rails/spring
  29. gem 'spring', group: :development
  30. # Use ActiveModel has_secure_password
  31. gem 'bcrypt', '~> 3.1.7'
  32. # Use unicorn as the app server
  33. # gem 'unicorn'
  34. # Use Capistrano for deployment
  35. gem 'rvm-capistrano', group: :development
  36. # Use debugger
  37. # gem 'debugger', group: [:development, :test]
  38. #START:plugins
  39. gem 'activemerchant', '~> 1.31'
  40. gem 'haml', '~> 4.0'
  41. gem 'kaminari', '~> 0.14'
  42. #END:plugins