Advertisement
Guest User

Untitled

a guest
May 21st, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3.  
  4. ruby '2.6.3'
  5.  
  6. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  7. gem 'rails', '~> 5.2.3'
  8. # Use sqlite3 as the database for Active Record
  9. group :development, :test do
  10. gem 'sqlite3'
  11. group :production do
  12. gem 'pg'
  13. # Use Puma as the app server
  14. gem 'puma', '~> 3.11'
  15. # Use SCSS for stylesheets
  16. gem 'sass-rails', '~> 5.0'
  17. # Use Uglifier as compressor for JavaScript assets
  18. gem 'uglifier', '>= 1.3.0'
  19. # See https://github.com/rails/execjs#readme for more supported runtimes
  20. # gem 'mini_racer', platforms: :ruby
  21.  
  22. # Use CoffeeScript for .coffee assets and views
  23. gem 'coffee-rails', '~> 4.2'
  24. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  25. gem 'turbolinks', '~> 5'
  26. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  27. gem 'jbuilder', '~> 2.5'
  28. # Use Redis adapter to run Action Cable in production
  29. # gem 'redis', '~> 4.0'
  30. # Use ActiveModel has_secure_password
  31. # gem 'bcrypt', '~> 3.1.7'
  32.  
  33. # Use ActiveStorage variant
  34. # gem 'mini_magick', '~> 4.8'
  35.  
  36. # Use Capistrano for deployment
  37. # gem 'capistrano-rails', group: :development
  38.  
  39. # Reduces boot times through caching; required in config/boot.rb
  40. gem 'bootsnap', '>= 1.1.0', require: false
  41.  
  42. group :development, :test do
  43. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  44. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  45. end
  46.  
  47. group :development do
  48. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  49. gem 'web-console', '>= 3.3.0'
  50. gem 'listen', '>= 3.0.5', '< 3.2'
  51. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  52. gem 'spring'
  53. gem 'spring-watcher-listen', '~> 2.0.0'
  54. end
  55.  
  56. group :test do
  57. # Adds support for Capybara system testing and selenium driver
  58. gem 'capybara', '>= 2.15'
  59. gem 'selenium-webdriver'
  60. # Easy installation and use of chromedriver to run system tests with Chrome
  61. gem 'chromedriver-helper'
  62. end
  63.  
  64. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  65. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement