Gemfile 1.5 KB

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