Gemfile 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. source 'https://rubygems.org'
  2. git_source(:github) do |repo_name|
  3. repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
  4. "https://github.com/#{repo_name}.git"
  5. end
  6. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  7. gem 'rails', '~> 5.1.4'
  8. # Use sqlite3 as the database for Active Record
  9. gem 'sqlite3'
  10. # Use Puma as the app server
  11. gem 'puma', '~> 3.7'
  12. # Use SCSS for stylesheets
  13. gem 'sass-rails', '~> 5.0'
  14. # Use Uglifier as compressor for JavaScript assets
  15. gem 'uglifier', '>= 1.3.0'
  16. # See https://github.com/rails/execjs#readme for more supported runtimes
  17. # gem 'therubyracer', platforms: :ruby
  18. # Use CoffeeScript for .coffee assets and views
  19. gem 'coffee-rails', '~> 4.2'
  20. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  21. gem 'turbolinks', '~> 5'
  22. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  23. gem 'jbuilder', '~> 2.5'
  24. # Use Redis adapter to run Action Cable in production
  25. # gem 'redis', '~> 3.0'
  26. # Use ActiveModel has_secure_password
  27. # gem 'bcrypt', '~> 3.1.7'
  28. # Use Capistrano for deployment
  29. # gem 'capistrano-rails', group: :development
  30. group :development, :test do
  31. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  32. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  33. # Adds support for Capybara system testing and selenium driver
  34. gem 'capybara', '~> 2.13'
  35. gem 'selenium-webdriver'
  36. end
  37. group :development do
  38. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  39. gem 'web-console', '>= 3.3.0'
  40. gem 'listen', '>= 3.0.5', '< 3.2'
  41. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  42. gem 'spring'
  43. gem 'spring-watcher-listen', '~> 2.0.0'
  44. end
  45. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  46. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]