Advertisement
michaelpastes

gemfile

Jun 28th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  4. gem 'rails', '4.0.0'
  5.  
  6. # Use postgresql as the database for Active Record
  7. gem 'pg'
  8.  
  9. # Use SCSS for stylesheets
  10. gem 'sass-rails', '~> 4.0.0'
  11.  
  12. # Use Uglifier as compressor for JavaScript assets
  13. gem 'uglifier', '>= 1.3.0'
  14.  
  15. # Use CoffeeScript for .js.coffee assets and views
  16. gem 'coffee-rails', '~> 4.0.0'
  17.  
  18. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  19. # gem 'therubyracer', platforms: :ruby
  20.  
  21. # Use jquery as the JavaScript library
  22. gem 'jquery-rails'
  23. gem "twitter-bootstrap-rails"
  24. gem "therubyracer"
  25. gem 'backbone-on-rails'
  26. gem 'devise', github: 'plataformatec/devise'
  27. gem 'omniauth-twitter'
  28. gem 'dalli'
  29. gem 'simple_form'
  30. gem 'RedCloth', '~> 4.2.9', :require => 'redcloth'
  31. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  32. gem 'turbolinks'
  33.  
  34. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  35. gem 'jbuilder', '~> 1.2'
  36.  
  37. group :doc do
  38. # bundle exec rake doc:rails generates the API under doc/api.
  39. gem 'sdoc', require: false
  40. end
  41.  
  42. # Use ActiveModel has_secure_password
  43. # gem 'bcrypt-ruby', '~> 3.0.0'
  44.  
  45. # Use unicorn as the app server
  46. gem 'unicorn'
  47.  
  48. # Use Capistrano for deployment
  49. gem 'capistrano', group: :development
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement