Skip to content

Instantly share code, notes, and snippets.

@VasylShevchenko
Last active April 19, 2019 12:45
Show Gist options
  • Save VasylShevchenko/0da8ca75ca8dfcb561e7b13d20103492 to your computer and use it in GitHub Desktop.
Save VasylShevchenko/0da8ca75ca8dfcb561e7b13d20103492 to your computer and use it in GitHub Desktop.
gem 'interactor'
gem 'whenever', require: false
gem 'render_async'
gem 'figaro'
gem 'dotenv'
gem 'dotenv-rails', groups: [:development, :test]
# Gems for send mail
gem 'mailgun-ruby', '~>1.1.6'
gem 'foundation_emails'
gem 'inky-rb', require: 'inky'
gem 'premailer-rails' # Stylesheet inlining for email **
# Gem for API
gem 'grape', '~> 1.2', '>= 1.2.3'
gem 'grape-jbuilder', '~> 0.2.0'
gem 'hashie', '~> 3.6' # for gem 'grape-jbuilder'
gem 'grape-swagger', '~> 0.32.1'
gem 'grape-swagger-ui', '~> 2.2', '>= 2.2.8'
gem 'turbolinks', '~> 5'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'rspec-rails', '~> 3.5'
gem 'rspec-rails', '~> 3.7'
gem 'factory_girl_rails'
gem 'faker', git: 'https://github.com/stympy/faker.git', branch: 'master'
end
group :development do
# Add a comment summarizing the current schema to the top or bottom of each of your model
# gem 'annotate'
# Pretty prints Ruby objects in full color exposing their internal structure with proper indentation.
gem 'awesome_print'
gem 'rubocop', '~> 0.61.0', require: false
gem 'listen', '~> 3.0.5'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'capistrano', '3.8.1'
gem 'capistrano-rvm'
gem 'capistrano-nginx'
gem 'capistrano3-puma'
gem 'capistrano-rails'
gem 'capistrano-rails-db'
gem 'capistrano-rails-console'
gem 'capistrano-upload-config'
gem 'capistrano-figaro-yml', '~> 1.0.2'
gem 'capistrano-sidekiq'#, github: 'seuros/capistrano-sidekiq'
gem 'sshkit-sudo'
end
group :test do
gem 'database_cleaner'
gem 'simplecov'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment