Advertisement
Guest User

Untitled

a guest
Oct 29th, 2017
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.91 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  4. gem 'rails', '5.0.2'
  5. # Use Puma as the app server
  6. gem 'puma', '3.8.1'
  7. # Use SCSS for stylesheets
  8. gem 'sass-rails', '5.0.6'
  9. # Use Uglifier as compressor for JavaScript assets
  10. gem 'uglifier', '3.1.7'
  11. # Use CoffeeScript for .coffee assets and views
  12. gem 'coffee-rails', '4.2.1'
  13. # See https://github.com/rails/execjs#readme for more supported runtimes
  14. #gem 'therubyracer', platforms: :ruby
  15. gem 'coffee-script-source', '1.12.2'
  16. # Use jquery as the JavaScript library
  17. gem 'jquery-rails', '4.2.2'
  18. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  19. gem 'turbolinks', '5.0.1'
  20. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  21. gem 'jbuilder', '2.6.3'
  22.  
  23. # Use Redis adapter to run Action Cable in production
  24. # gem 'redis', '~> 3.0'
  25.  
  26. # Twitter Bootstrap
  27. gem 'bootstrap-sass', '3.3.7'
  28.  
  29. # To display pretty charts and graphs, using Google Charts
  30. gem 'chartkick', '2.2.4'
  31.  
  32. # Used for the dynamic forms:
  33. gem 'simple_form', '3.4.0'
  34. gem 'cocoon', '1.2.9'
  35.  
  36. gem 'bindex', '0.5.0'
  37.  
  38. gem 'devise', '4.2.1'
  39. gem 'cancancan', '2.0.0'
  40.  
  41. # Use ActiveModel has_secure_password
  42. gem 'bcrypt', '3.1.11'
  43.  
  44. group :development, :test do
  45.   # Use sqlite3 as the database for Active Record
  46.   gem 'sqlite3'
  47.   # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  48.   gem 'byebug', platform: :mri
  49. end
  50.  
  51. group :development do
  52.   # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  53.   gem 'web-console', '>= 3.3.0'
  54.   gem 'listen', '3.0.8'
  55.   gem 'spring', '2.0.0'
  56.   gem 'spring-watcher-listen', '2.0.1'
  57. end
  58.  
  59. group :production do
  60.   gem 'pg', '0.18.4'
  61. end
  62.  
  63. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  64. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement