Advertisement
YarikHrom

Gemfile

Mar 25th, 2022
1,281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 3.30 KB | None | 0 0
  1. # frozen_string_literal: true
  2.  
  3. source 'https://rubygems.org'
  4. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  5.  
  6. ruby '2.7.0'
  7.  
  8. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  9. gem 'rails', '~> 6.1'
  10. # Use postgresql as the database for Active Record
  11. gem 'pg', '>= 0.18', '< 2.0'
  12. # Use Puma as the app server
  13. gem 'puma', '~> 5.1'
  14. # Use SCSS for stylesheets
  15. gem 'sass-rails', '~> 6.0'
  16. # Use Uglifier as compressor for JavaScript assets
  17. gem 'uglifier', '>= 1.3.0'
  18. # See https://github.com/rails/execjs#readme for more supported runtimes
  19. # gem 'mini_racer', platforms: :ruby
  20.  
  21. gem 'jquery-rails', '~> 4.3', '>= 4.3.1'
  22. # Use CoffeeScript for .coffee assets and views
  23. gem 'coffee-rails', '~> 5.0'
  24. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  25. # gem 'turbolinks', '~> 5'
  26. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  27. gem 'jbuilder', '~> 2.5'
  28. # Use Redis adapter to run Action Cable in production
  29. gem 'redis', '~> 4.2'
  30. # Use ActiveModel has_secure_password
  31. # gem 'bcrypt', '~> 3.1.7'
  32.  
  33. # Use ActiveStorage variant
  34. # gem 'mini_magick', '~> 4.8'
  35.  
  36. # Use Capistrano for deployment
  37. # gem 'capistrano-rails', group: :development
  38.  
  39. # Reduces boot times through caching; required in config/boot.rb
  40. gem 'bootsnap', '>= 1.1.0', require: false
  41. gem 'dotenv-rails'
  42. gem 'sentry-raven'
  43.  
  44. # Authentication
  45. gem 'devise'
  46. gem 'omniauth-alfred', git: 'https://github.com/cybergizer-hq/omniauth-alfred', branch: 'master'
  47. gem 'omniauth-google-oauth2'
  48. gem 'omniauth-facebook'
  49. gem 'omniauth-github'
  50.  
  51. gem 'strong_migrations', '~> 0.7.8'
  52.  
  53. gem 'rake'
  54. group :development, :test do
  55.   # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  56.   gem 'rubocop', '~> 1.6.1', require: false
  57.   gem 'rspec-rails', '~> 4.0.1'
  58.   gem 'rspec_junit_formatter'
  59.   gem 'faker', git: 'https://github.com/stympy/faker.git', branch: 'master'
  60.   gem 'pry'
  61.   gem 'pry-byebug'
  62. end
  63.  
  64. group :development do
  65.   # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  66.   gem 'web-console', '>= 3.3.0'
  67.   gem 'listen', '>= 3.0.5', '< 3.4'
  68.   gem 'rails-erd'
  69.   gem 'letter_opener'
  70. end
  71.  
  72. group :test do
  73.   # Adds support for Capybara system testing and selenium driver
  74.   gem 'capybara', '>= 2.15'
  75.   gem 'selenium-webdriver'
  76.   # Easy installation and use of chromedriver to run system tests with Chrome
  77.   gem 'chromedriver-helper'
  78.   gem 'simplecov', require: false
  79.   gem 'factory_bot_rails'
  80.   gem 'vcr'
  81.   gem 'webmock'
  82.   gem 'test-prof'
  83.   gem 'json_matchers'
  84.   gem 'database_cleaner'
  85.   gem 'rails-controller-testing'
  86. end
  87.  
  88. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  89. gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
  90. gem 'webpacker', '~> 5'
  91. gem 'rails-assets-bulma', source: 'https://rails-assets.org'
  92. gem 'fog-aws', require: false
  93. gem 'carrierwave', '>= 2.0.0.rc', '< 3.0'
  94. gem 'nanoid'
  95. gem 'action_policy', '~> 0.5.4'
  96. gem 'react-rails'
  97. gem 'active_model_serializers', '~> 0.10.12'
  98. gem 'dry-monads'
  99. gem 'aasm'
  100. gem 'sidekiq'
  101.  
  102. gem 'graphql', '~> 1.11'
  103. gem 'action_policy-graphql', '~> 0.5'
  104. gem 'graphiql-rails', group: :development
  105. group :test, :development do
  106.   gem 'action-cable-testing'
  107. end
  108.  
  109. gem 'bullet', group: 'test'
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement