144 lines
2.9 KiB
Ruby
Executable file
144 lines
2.9 KiB
Ruby
Executable file
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
ruby '2.5.1'
|
|
gem 'rails', '= 5.2.3'
|
|
gem 'rake'
|
|
# https://stripe.com/docs/api
|
|
gem 'stripe'
|
|
|
|
# Compression of assets on heroku
|
|
# https://github.com/romanbsd/heroku-deflater
|
|
gem 'heroku-deflater', group: :production
|
|
|
|
# json serialization
|
|
# https://github.com/nesquena/rabl
|
|
gem 'rabl'
|
|
|
|
gem 'parallel'
|
|
|
|
gem 'bootsnap', require: false
|
|
gem 'puma'
|
|
gem 'puma_worker_killer'
|
|
gem 'rack-ssl'
|
|
gem 'rack-timeout'
|
|
|
|
gem 'hamster'
|
|
gem 'test-unit', '~> 3.0'
|
|
|
|
gem 'aws-sdk', '~> 1'
|
|
gem 'aws-ses'
|
|
# for blocking ip addressses
|
|
gem 'rack-attack'
|
|
|
|
gem 'sprockets'
|
|
|
|
# for serving fonts on cdn
|
|
# https://github.com/ericallam/font_assets
|
|
gem 'font_assets', '~> 0.1.14'
|
|
|
|
# Database (postgres)
|
|
|
|
gem 'pg', '~> 0.11'
|
|
gem 'qx', path: 'gems/ruby-qx'
|
|
|
|
gem 'dalli'
|
|
gem 'memcachier'
|
|
|
|
gem 'param_validation', path: 'gems/ruby-param-validation'
|
|
|
|
# Print colorized text lol
|
|
gem 'colorize'
|
|
|
|
# https://github.com/collectiveidea/delayed_job_active_record
|
|
gem 'delayed_job_active_record'
|
|
|
|
# for styling emails
|
|
# https://github.com/Mange/roadie-rails
|
|
gem 'roadie-rails'
|
|
|
|
# For nat lang parsing of dates
|
|
gem 'chronic'
|
|
|
|
# Images
|
|
# https://github.com/carrierwaveuploader/carrierwave
|
|
gem 'carrierwave'
|
|
gem 'carrierwave-aws' # for uploading images to amazon s3
|
|
gem 'mini_magick'
|
|
|
|
# https://github.com/jnunemaker/httparty
|
|
gem 'httparty'
|
|
|
|
# User authentication
|
|
# https://github.com/plataformatec/devise
|
|
gem 'devise', '~> 4.4'
|
|
gem 'devise-async'
|
|
|
|
# http://www.rubygeocoder.com/
|
|
gem 'geocoder' # for adding latitude and longitude to location-based tables
|
|
|
|
# https://github.com/buytruckload/nearest_time_zone
|
|
gem 'nearest_time_zone' # for detecting timezone from lat/lng
|
|
|
|
gem 'mail_view'
|
|
|
|
gem 'fullcontact' # Full Contact API; includes #Hashie::Mash
|
|
|
|
# Nice table printing of data for the console
|
|
gem 'table_print'
|
|
|
|
gem 'bunny', '>= 2.6.3'
|
|
|
|
gem 'countries'
|
|
gem 'i18n-js'
|
|
gem 'rails-i18n'
|
|
|
|
group :development, :ci do
|
|
gem 'debase'
|
|
gem 'ruby-debug-ide'
|
|
gem 'traceroute'
|
|
end
|
|
|
|
group :development, :ci, :test do
|
|
gem 'pry'
|
|
gem 'timecop'
|
|
# gem 'pry-byebug'
|
|
gem 'action_mailer_matchers'
|
|
gem 'binding_of_caller'
|
|
gem 'database_cleaner'
|
|
gem 'dotenv-rails'
|
|
gem 'factory_bot'
|
|
gem 'factory_bot_rails'
|
|
gem 'rspec'
|
|
gem 'rspec-rails'
|
|
gem 'ruby-prof', '0.15.9'
|
|
gem 'simplecov', '~> 0.16.1', require: false
|
|
gem 'solargraph'
|
|
gem 'stripe-ruby-mock', '~> 2.4.1', require: 'stripe_mock', git: 'https://github.com/commitchange/stripe-ruby-mock.git', branch: '2.4.1'
|
|
end
|
|
|
|
group :test do
|
|
gem 'webmock'
|
|
end
|
|
|
|
# Gems used for asset compilation
|
|
gem 'sass', '3.2.19'
|
|
gem 'sass-rails'
|
|
gem 'uglifier'
|
|
|
|
# make logging less terrible in rails
|
|
gem 'lograge'
|
|
|
|
gem 'config', '> 1.5'
|
|
gem 'dry-validation' # used only for config validation
|
|
|
|
gem 'foreman'
|
|
|
|
gem 'grape'
|
|
gem 'grape-entity'
|
|
gem 'grape-swagger'
|
|
gem 'grape-swagger-entity'
|
|
gem 'grape_devise', path: 'gems/grape_devise'
|
|
gem 'grape_logging'
|
|
gem 'grape_url_validator'
|