Advertisement
Guest User

Untitled

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