Gemfile 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.5.1'
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '~> 5.2.1'
  6. # Use sqlite3 as the database for Active Record
  7. gem 'sqlite3'
  8. # Use Puma as the app server
  9. gem 'puma', '~> 3.11'
  10. # Use SCSS for stylesheets
  11. gem 'sass-rails', '~> 5.0'
  12. # Use Uglifier as compressor for JavaScript assets
  13. gem 'uglifier', '>= 1.3.0'
  14. # See https://github.com/rails/execjs#readme for more supported runtimes
  15. # gem 'mini_racer', platforms: :ruby
  16. # Use CoffeeScript for .coffee assets and views
  17. gem 'coffee-rails', '~> 4.2'
  18. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  19. gem 'turbolinks', '~> 5'
  20. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  21. gem 'jbuilder', '~> 2.5'
  22. # Use Redis adapter to run Action Cable in production
  23. # gem 'redis', '~> 4.0'
  24. # Use ActiveModel has_secure_password
  25. # gem 'bcrypt', '~> 3.1.7'
  26. # Use ActiveStorage variant
  27. # gem 'mini_magick', '~> 4.8'
  28. # Use Capistrano for deployment
  29. # gem 'capistrano-rails', group: :development
  30. # Reduces boot times through caching; required in config/boot.rb
  31. gem 'bootsnap', '>= 1.1.0', require: false
  32. # twitter bootstrap
  33. gem 'bootstrap', '~> 4.1.3'
  34. gem 'jquery-rails'
  35. group :development, :test do
  36. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  37. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  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. gem 'listen', '>= 3.0.5', '< 3.2'
  43. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  44. gem 'spring'
  45. gem 'spring-watcher-listen', '~> 2.0.0'
  46. end
  47. group :test do
  48. # Adds support for Capybara system testing and selenium driver
  49. gem 'capybara', '>= 2.15'
  50. gem 'selenium-webdriver'
  51. # Easy installation and use of chromedriver to run system tests with Chrome
  52. gem 'chromedriver-helper'
  53. end
  54. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  55. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]