Gemfile 1.5 KB

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