Gemfile 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.6.0'
  4. gem 'rails', '~> 5.2.2'
  5. gem 'pg'
  6. gem 'haml'
  7. gem 'rest-client'
  8. gem 'puma', '~> 3.11'
  9. gem 'sass-rails', '~> 5.0'
  10. gem 'uglifier', '>= 1.3.0'
  11. gem 'webpacker'
  12. gem 'semantic-ui-sass'
  13. gem 'jbuilder', '~> 2.5'
  14. gem 'bootsnap', '>= 1.1.0', require: false
  15. group :development, :test do
  16. gem 'pry'
  17. gem 'rspec-rails'
  18. gem 'rails-controller-testing'
  19. gem 'factory_bot_rails'
  20. gem 'faker'
  21. end
  22. group :development do
  23. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  24. gem 'web-console', '>= 3.3.0'
  25. gem 'listen', '>= 3.0.5', '< 3.2'
  26. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  27. gem 'spring'
  28. gem 'spring-watcher-listen', '~> 2.0.0'
  29. end
  30. group :test do
  31. # Adds support for Capybara system testing and selenium driver
  32. gem 'capybara', '>= 2.15'
  33. gem 'selenium-webdriver'
  34. # Easy installation and use of chromedriver to run system tests with Chrome
  35. gem 'chromedriver-helper'
  36. end
  37. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]