Gemfile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.6.3'
  4. gem 'bootsnap', '>= 1.4.1', require: false
  5. gem 'listen', '>= 3.0.5', '< 3.2' # requirement of bootsnap
  6. gem 'haml'
  7. gem 'jbuilder', '~> 2.5'
  8. gem 'pg'
  9. gem 'puma', '~> 3.11'
  10. gem 'rails', '~> 6.0.0.beta3'
  11. gem 'rest-client', require: false
  12. gem 'sass-rails', '~> 5.0'
  13. gem 'webpacker'
  14. # Use Redis adapter to run Action Cable in production
  15. # gem 'redis', '~> 4.0'
  16. # Use Active Model has_secure_password
  17. # gem 'bcrypt', '~> 3.1.7'
  18. # Use Active Storage variant
  19. # gem 'image_processing', '~> 1.2'
  20. group :development, :test do
  21. gem 'rubocop', '~> 0.67.2', require: false
  22. gem 'rubocop-performance'
  23. gem 'dotenv-rails'
  24. gem 'pry'
  25. gem 'pry-rails'
  26. gem 'rails-controller-testing'
  27. gem 'factory_bot_rails'
  28. gem 'faker'
  29. gem 'database_cleaner'
  30. # Using unreleased rspec version (since we're using Rails v6.0.0.beta3)
  31. # The following refs were the latest commits on their respective master
  32. # branches
  33. gem 'rspec-support', github: "rspec/rspec-support", ref: "b2389"
  34. gem 'rspec-expectations', github: "rspec/rspec-expectations", ref: "8d630"
  35. gem 'rspec-mocks', github: "rspec/rspec-mocks", ref: "f1b69"
  36. gem 'rspec-core', github: "rspec/rspec-core", :ref => "4a29a"
  37. gem 'rspec-rails', github: "rspec/rspec-rails", branch: "4-0-dev"
  38. end
  39. group :development do
  40. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  41. gem 'web-console', '>= 3.3.0'
  42. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  43. gem 'spring'
  44. gem 'spring-watcher-listen', '~> 2.0.0'
  45. end
  46. group :test do
  47. # Adds support for Capybara system testing and selenium driver
  48. gem 'capybara', '>= 2.15'
  49. gem 'selenium-webdriver'
  50. # Easy installation and use of chromedriver to run system tests with Chrome
  51. gem 'webdrivers'
  52. end
  53. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  54. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]