Guest User

gemfile

a guest
May 6th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3.  
  4. ruby '2.6.2'
  5.  
  6. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  7. gem 'rails', '~> 6.0.2', '>= 6.0.2.2'
  8. # Use postgresql as the database for Active Record
  9. gem 'pg', '>= 0.18', '< 2.0'
  10. # Use Puma as the app server
  11. gem 'puma', '~> 4.1'
  12. # Use SCSS for stylesheets
  13. gem 'sass-rails', '>= 6'
  14. # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
  15. gem 'webpacker', '~> 4.0'
  16. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  17. gem 'turbolinks', '~> 5'
  18. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  19. gem 'jbuilder', '~> 2.7'
  20. # Use Redis adapter to run Action Cable in production
  21. # gem 'redis', '~> 4.0'
  22. # Use Active Model has_secure_password
  23. # gem 'bcrypt', '~> 3.1.7'
  24.  
  25. # Use Active Storage variant
  26. # gem 'image_processing', '~> 1.2'
  27.  
  28. gem "haml-rails", "~> 2.0"
  29. gem "hashid-rails", "~> 1.0"
  30. gem "audited", "~> 4.9"
  31. gem 'devise'
  32. gem 'simple_form'
  33. gem 'cocoon'
  34.  
  35. # Reduces boot times through caching; required in config/boot.rb
  36. gem 'bootsnap', '>= 1.4.2', require: false
  37.  
  38. group :development, :test do
  39. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  40. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  41. gem 'rspec-rails'
  42. end
  43.  
  44. group :development do
  45. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  46. gem 'web-console', '>= 3.3.0'
  47. gem 'listen', '>= 3.0.5', '< 3.2'
  48. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  49. gem 'spring'
  50. gem 'spring-watcher-listen', '~> 2.0.0'
  51. gem 'annotate'
  52. end
Add Comment
Please, Sign In to add comment