This repository has been archived by the owner on Feb 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Gemfile
80 lines (74 loc) · 1.69 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
source "https://rubygems.org"
ruby "2.4.0"
gem "autoprefixer-rails"
gem "flutie"
gem "high_voltage"
gem "jquery-rails"
gem "appsignal"
gem "sidekiq"
gem "normalize-rails", "~> 3.0.0"
gem "pg", "0.21.0"
gem 'turbolinks'
gem "puma"
gem "rails", "~> 5.1.0"
gem "recipient_interceptor"
gem "sass-rails"
gem "sprockets", ">= 3.0.0"
gem "sprockets-es6"
gem "title"
gem "uglifier"
gem "jbuilder"
gem "listen"
gem "spring"
gem 'letter_opener'
gem 'react-rails', "2.2.0"
gem 'bcrypt'
gem 'will_paginate', '~> 3.1.0'
gem 'twilio-ruby'
gem 'premailer-rails'
gem 'rubycritic', require: false
gem 'stripe'
gem 'font-awesome-rails'
gem 'stripe_event'
gem 'gon'
gem 'redis-rails'
gem 'rack-cors', :require => 'rack/cors'
gem 'google_sign_in'
gem 'google-id-token', git: 'https://github.com/google/google-id-token.git'
gem 'enumerize'
gem "gibbon"
gem 'premailer-rails'
gem 'rails-erd'
gem "payola-payments", git: "https://github.com/payolapayments/payola.git", branch: "master"
group :development, :test do
gem "awesome_print"
gem "bullet"
gem "bundler-audit", ">= 0.5.0", require: false
gem "dotenv-rails"
gem "pry-byebug"
gem "pry-rails"
end
group :development, :staging do
gem 'rack-mini-profiler', require: false
end
group :test do
gem "database_cleaner"
gem "formulaic"
gem "launchy"
gem "shoulda-matchers"
gem "simplecov", require: false
gem "timecop"
gem "webmock"
gem 'minitest-reporters'
gem 'minitest-stub_any_instance'
gem 'climate_control'
gem 'stripe-ruby-mock',
git: 'https://github.com/rebelidealist/stripe-ruby-mock.git',
branch: 'master',
require: 'stripe_mock'
end
group :staging, :production do
gem "rack-timeout"
gem "rails_stdout_logging"
gem 'rails_12factor'
end