Gemfile 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. source 'https://rubygems.org'
  2. git_source(:github) do |repo_name|
  3. repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
  4. "https://github.com/#{repo_name}.git"
  5. end
  6. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  7. gem 'rails', '~> 5.0.1'
  8. # Use sqlite3 as the database for Active Record
  9. gem 'sqlite3'
  10. # Use Puma as the app server
  11. gem 'puma', '~> 3.0'
  12. # Use SCSS for stylesheets
  13. gem 'sass-rails', '~> 5.0'
  14. # Use Uglifier as compressor for JavaScript assets
  15. gem 'uglifier', '>= 1.3.0'
  16. # Use CoffeeScript for .coffee assets and views
  17. gem 'coffee-rails', '~> 4.2'
  18. # See https://github.com/rails/execjs#readme for more supported runtimes
  19. # gem 'therubyracer', platforms: :ruby
  20. # Use jquery as the JavaScript library
  21. gem 'jquery-rails'
  22. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  23. gem 'turbolinks', '~> 5'
  24. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  25. gem 'jbuilder', '~> 2.5'
  26. # Use Redis adapter to run Action Cable in production
  27. # gem 'redis', '~> 3.0'
  28. # Use ActiveModel has_secure_password
  29. # gem 'bcrypt', '~> 3.1.7'
  30. # Use Capistrano for deployment
  31. # gem 'capistrano-rails', group: :development
  32. group :development, :test do
  33. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  34. gem 'byebug', platform: :mri
  35. end
  36. group :development do
  37. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  38. gem 'web-console', '>= 3.3.0'
  39. gem 'listen', '~> 3.0.5'
  40. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  41. gem 'spring'
  42. gem 'spring-watcher-listen', '~> 2.0.0'
  43. end
  44. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  45. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]