Advertisement
Shiny_

Gemfile

May 6th, 2014
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.31 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3.  
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '4.1.0'
  6. # Use sqlite3 as the database for Active Record
  7. gem 'sqlite3'
  8. # Use SCSS for stylesheets
  9. gem 'sass-rails', '~> 4.0.3'
  10. # Use Uglifier as compressor for JavaScript assets
  11. gem 'uglifier', '>= 1.3.0'
  12. # Use CoffeeScript for .js.coffee assets and views
  13. gem 'coffee-rails', '~> 4.0.0'
  14. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  15. # gem 'therubyracer',  platforms: :ruby
  16.  
  17. # Use jquery as the JavaScript library
  18. gem 'jquery-rails'
  19. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  20. gem 'turbolinks'
  21. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  22. gem 'jbuilder', '~> 2.0'
  23. # bundle exec rake doc:rails generates the API under doc/api.
  24. gem 'sdoc', '~> 0.4.0',          group: :doc
  25.  
  26. # Use ActiveModel has_secure_password
  27. # gem 'bcrypt', '~> 3.1.7'
  28.  
  29. # Use unicorn as the app server
  30. # gem 'unicorn'
  31.  
  32. # Use Capistrano for deployment
  33. # gem 'capistrano-rails', group: :development
  34.  
  35. # Use debugger
  36. # gem 'debugger', group: [:development, :test]
  37.  
  38. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  39. gem 'tzinfo-data', platforms: [:mingw, :mswin]
  40. 'gem "thin"'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement