houdini/Gemfile

145 lines
2.8 KiB
Text
Raw Normal View History

source 'https://rubygems.org'
ruby '2.5.1'
gem 'rake'
gem 'rails', '= 5.2.3'
# 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 'puma'
gem 'bootsnap', require: false
gem 'rack-timeout'
gem 'rack-ssl'
gem 'puma_worker_killer'
gem 'test-unit', '~> 3.0'
gem 'hamster'
gem 'aws-ses'
2018-11-09 00:29:00 +00:00
gem 'aws-sdk', '~> 1'
# 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)
2019-07-27 12:39:40 +00:00
gem 'pg', '~> 0.11'
2019-01-09 23:57:35 +00:00
gem 'qx', path: 'gems/ruby-qx'
2019-07-27 12:39:40 +00:00
gem 'dalli'
gem 'memcachier'
2019-01-10 00:22:42 +00:00
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
2019-01-31 23:11:34 +00:00
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'
2019-01-31 23:11:34 +00:00
gem 'rails-i18n'
gem 'i18n-js'
gem 'countries'
2018-10-26 16:13:19 +00:00
group :development, :ci do
gem 'traceroute'
gem 'debase'
gem 'ruby-debug-ide'
end
2018-10-26 16:13:19 +00:00
group :development, :ci, :test do
gem 'timecop'
gem 'pry'
#gem 'pry-byebug'
gem 'binding_of_caller'
gem 'rspec'
gem 'rspec-rails'
gem 'database_cleaner'
gem 'dotenv-rails'
gem 'ruby-prof', '0.15.9'
gem 'stripe-ruby-mock', '~> 2.4.1', :require => 'stripe_mock', git: 'https://github.com/commitchange/stripe-ruby-mock.git', :branch => '2.4.1'
gem 'factory_bot'
gem 'factory_bot_rails'
gem 'action_mailer_matchers'
2018-12-10 21:27:26 +00:00
gem 'simplecov', '~> 0.16.1', require: false
2019-01-25 22:22:05 +00:00
gem 'solargraph'
end
group :test do
gem 'webmock'
end
# Gems used for asset compilation
gem 'sass', '3.2.19'
2018-11-09 00:29:00 +00:00
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'
2019-01-31 23:11:34 +00:00
gem 'grape'
2018-11-09 00:29:00 +00:00
gem 'grape-entity'
gem 'grape-swagger'
gem 'grape-swagger-entity'
gem 'grape_url_validator'
gem 'grape_logging'
2019-07-27 12:39:40 +00:00
gem 'grape_devise', path: 'gems/grape_devise'