Gemfile 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # Use SCSS for stylesheets
  7. gem 'sass-rails', '~> 4.0.3'
  8. # Use Uglifier as compressor for JavaScript assets
  9. gem 'uglifier', '>= 1.3.0'
  10. # Use CoffeeScript for .js.coffee assets and views
  11. gem 'coffee-rails', '~> 4.0.0'
  12. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  13. # gem 'therubyracer', platforms: :ruby
  14. #START:jquery
  15. # Use jquery as the JavaScript library
  16. gem 'jquery-rails'
  17. #START_HIGHLIGHT
  18. gem 'jquery-ui-rails'
  19. #END_HIGHLIGHT
  20. #END:jquery
  21. # Turbolinks makes following links in your web application faster. 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 background. Read more: https://github.com/rails/spring
  28. gem 'spring', group: :development
  29. # Use ActiveModel has_secure_password
  30. # gem 'bcrypt', '~> 3.1.7'
  31. # Use unicorn as the app server
  32. # gem 'unicorn'
  33. # Use Capistrano for deployment
  34. # gem 'capistrano-rails', group: :development
  35. # Use debugger
  36. # gem 'debugger', group: [:development, :test]