Advertisement
Guest User

Gemfile

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