Gemfile 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.5.1'
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '~> 5.2.1'
  6. # Use sqlite3 as the database for Active Record
  7. gem 'sqlite3'
  8. # Use Puma as the app server
  9. gem 'puma', '~> 3.11'
  10. # Use SCSS for stylesheets
  11. gem 'sass-rails', '~> 5.0'
  12. # Use Uglifier as compressor for JavaScript assets
  13. gem 'uglifier', '>= 1.3.0'
  14. # See https://github.com/rails/execjs#readme for more supported runtimes
  15. # gem 'mini_racer', platforms: :ruby
  16. # Use CoffeeScript for .coffee assets and views
  17. gem 'coffee-rails', '~> 4.2'
  18. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  19. gem 'turbolinks', '~> 5'
  20. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  21. gem 'jbuilder', '~> 2.5'
  22. # Use Redis adapter to run Action Cable in production
  23. # gem 'redis', '~> 4.0'
  24. # Use ActiveModel has_secure_password
  25. # gem 'bcrypt', '~> 3.1.7'
  26. # Use ActiveStorage variant
  27. # gem 'mini_magick', '~> 4.8'
  28. # Use Capistrano for deployment
  29. # gem 'capistrano-rails', group: :development
  30. # Reduces boot times through caching; required in config/boot.rb
  31. gem 'bootsnap', '>= 1.1.0', require: false
  32. group :development, :test do
  33. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  34. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  35. end
  36. group :development do
  37. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  38. gem 'web-console', '>= 3.3.0'
  39. gem 'listen', '>= 3.0.5', '< 3.2'
  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. group :test do
  45. # Adds support for Capybara system testing and selenium driver
  46. gem 'capybara', '>= 2.15'
  47. gem 'selenium-webdriver'
  48. # Easy installation and use of chromedriver to run system tests with Chrome
  49. gem 'chromedriver-helper'
  50. end
  51. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  52. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]