This repository has been archived by the owner on Jun 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
107 lines (87 loc) · 2.28 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
source 'https://rubygems.org'
ruby '2.4.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.1.4'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails'
gem 'compass-rails'
gem 'bootstrap-sass'
gem 'sentry-raven'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
gem 'omniauth'
gem 'omniauth-stripe-connect'
gem 'stripe', '1.58.0'
gem 'stripe_event', git: 'https://github.com/controlshift/stripe_event.git'
gem 'haml-rails'
gem 'doorkeeper'
gem 'cancancan'
gem 'pusher'
gem 'sidekiq'
gem 'redis-namespace'
# database admin
gem 'pghero'
gem 'blazer'
# required by blazer for background query processing.
gem 'sucker_punch'
gem 'rack-cors', :require => 'rack/cors'
gem 'devise'
gem 'attr_encrypted', "~> 3.0.0"
gem 'action_kit_rest', git: 'https://github.com/controlshift/action_kit_rest.git'
gem 'blue_state_digital', git: 'https://github.com/controlshift/blue_state_digital.git'
gem 'rack-cache'
gem 'dalli'
gem 'sprockets'
gem 'simple_form'
gem 'geoip'
gem 'will_paginate'
gem 'going_postal'
gem 'httparty'
gem 'analytics-ruby'
gem 'bootsnap', require: false
group :development do
gem 'letter_opener'
end
group :development, :test do
gem 'brakeman', :require => false
gem 'spring'
gem 'spring-commands-rspec'
gem 'annotate'
gem 'dotenv-rails'
gem 'pry-byebug'
gem 'byebug'
gem 'thin'
gem 'faker'
end
group :test do
gem 'guard'
gem 'guard-rspec', require: false
gem 'stripe-ruby-mock', '2.3.1', require: 'stripe_mock'
gem 'database_cleaner'
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'factory_bot_rails'
gem 'launchy'
gem 'capybara'
gem 'shoulda-matchers', require: false
gem 'capybara-webkit', require: false
gem 'capybara-email'
gem 'webmock'
end
group :staging, :production do
gem 'rails_12factor'
gem 'newrelic_rpm'
gem 'memcachier'
gem 'unicorn'
gem 'unicorn-worker-killer'
end