Advertisement
Guest User

Gemfile

a guest
Sep 25th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.34 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3. git_source(:github) do |repo_name|
  4.   repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
  5.   "https://github.com/#{repo_name}.git"
  6. end
  7.  
  8.  
  9. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  10. gem 'rails', '~> 5.1.4'
  11. # Use Puma as the app server
  12. gem 'puma', '~> 3.7'
  13. # Use SCSS for stylesheets
  14. gem 'sass-rails', '~> 5.0'
  15. # Use Uglifier as compressor for JavaScript assets
  16. gem 'uglifier', '>= 1.3.0'
  17. # See https://github.com/rails/execjs#readme for more supported runtimes
  18. # gem 'therubyracer', platforms: :ruby
  19.  
  20. # Use CoffeeScript for .coffee assets and views
  21. gem 'coffee-rails', '~> 4.2'
  22. gem 'coffee-script-source', '1.8.0'
  23. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  24. gem 'turbolinks', '~> 5'
  25. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  26. gem 'jbuilder', '~> 2.5'
  27. # Use Redis adapter to run Action Cable in production
  28. # gem 'redis', '~> 3.0'
  29. # Use ActiveModel has_secure_password
  30. # gem 'bcrypt', '~> 3.1.7'
  31.  
  32. # Use Devise for authentication
  33. gem 'devise', '~> 4.3'
  34. # Use Slim for view templates
  35. gem 'slim-rails', '~> 3.1', '>= 3.1.2'
  36. # Use Biz for business hours calculation
  37. gem 'biz', '~> 1.7'
  38. # Use Figaro for environment variables
  39. gem 'figaro', '~> 1.1', '>= 1.1.1'
  40.  
  41. group :development, :test do
  42.   # Use sqlite3 as the database for Active Record
  43.   gem 'sqlite3'
  44.   # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  45.   gem 'byebug'
  46.   # Adds support for Capybara system testing and selenium driver
  47.   gem 'capybara', '~> 2.13'
  48.   gem 'selenium-webdriver'
  49. end
  50.  
  51. group :development do
  52.   # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  53.   gem 'web-console', '>= 3.3.0'
  54.   # Use Capistrano for deployment
  55.   gem 'capistrano', '~> 3.9', '>= 3.9.1'
  56.   gem 'capistrano-bundler', '~> 1.3'
  57.   gem 'capistrano-passenger', '~> 0.2.0'
  58.   gem 'capistrano-rails', '~> 1.3'
  59.   gem 'capistrano-rvm', '~> 0.1.2'
  60. end
  61.  
  62. group :test do
  63.   gem 'minitest-reporters', '~> 1.1', '>= 1.1.18'
  64. end
  65.  
  66. group :production do
  67.   # Use MySQL as the database for Active Record
  68.   gem 'mysql2', '~> 0.4.9'
  69. end
  70.  
  71. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  72. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement