Skip to content

Instantly share code, notes, and snippets.

@Intrepidd
Created February 19, 2021 07:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Intrepidd/b46cc32739e20984397da4fe94facc93 to your computer and use it in GitHub Desktop.
Save Intrepidd/b46cc32739e20984397da4fe94facc93 to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.3'
# Use pg as the database for Active Record
gem 'pg', '~> 1.2.3'
# Use Puma as the app server
gem 'puma', '~> 5.2'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbo-rails', '~> 0.5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
group :development, :test do
gem 'dotenv-rails', '~> 2.7.6'
gem 'ruby_jard', '~> 0.3.1'
gem "ruby-prof", ">= 0.17.0", require: false
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '~> 3.4'
gem 'pronto', '~> 0.11.0'
gem 'pronto-rubocop', '~> 0.11.0'
gem 'rspec-rails', '~> 4.0.2'
gem 'rubocop-rails', '~> 2.9.1'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'capybara-screenshot', '~> 1.0', '>= 1.0.25'
gem 'cuprite', '~> 0.11'
gem 'factory_bot_rails', '~> 6.1.0'
gem 'simplecov', '~> 0.21.2'
gem 'test-prof', '~> 1.0.1'
gem 'vcr', '~> 6.0'
gem 'webmock', '~> 3.11'
end
group :development, :staging do
gem 'flamegraph'
gem 'rack-mini-profiler', '~> 2.3'
gem 'stackprof'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Ecotable specific gems
gem 'aasm', '~> 5.1.1'
gem 'activerecord-cte', '~> 0.1.1'
gem 'aws-sdk-s3', '~> 1.88'
gem 'breadcrumbs_on_rails', '~> 4.0'
gem 'bugsnag', '~> 6.19.0'
gem 'combine_pdf', '~> 1.0', require: false
gem 'faraday', '~> 1.3', require: false
gem 'fluent-logger', '~> 0.9.0'
gem 'geocoder', '~> 1.6'
gem 'hamlit', '~> 2.14.4'
gem 'hiredis', '~> 0.6.3'
gem 'inky-rb', require: 'inky'
gem 'inline_svg', '~> 1.7'
gem 'kaminari', '~> 1.2.1'
gem 'lograge', '~> 0.11.2'
gem 'mailjet', '~> 1.6.0'
gem 'newrelic_rpm', '~> 6.15'
gem 'pdf-reader', '~> 2.4'
gem 'pg_lock', '~> 0.2.1'
gem 'premailer-rails', '~> 1.11', '>= 1.11.1'
gem 'pretender', '~> 0.3.4'
gem 'progressbar', '~> 1.11'
gem 'pry-rails', '~> 0.3.9'
gem 'ransack', '~> 2.4'
gem 'retriable', '~> 3.1.2'
gem 'rodauth-rails', '~> 0.9'
gem 'shrine', '~> 3.0'
gem 'sidekiq', '~> 6.1.3'
gem 'sidekiq-cron', '~> 1.2'
gem 'sidekiq-unique-jobs', '~> 7.0'
gem 'stripe', '~> 5.29'
gem 'uppy-s3_multipart', '~> 0.3'
gem 'view_component', '~> 2.25.1'
# Distant APIs
gem 'hubspot-ruby', '~> 0.9.0'
gem 'responses_api_gem', github: 'Intrepidd/responses-api-gem', require: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment