forked from mlandauer/cuttlefish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
138 lines (115 loc) · 3.17 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# frozen_string_literal: true
source "https://rubygems.org"
gem "dotenv-rails"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "5.2.4.4"
gem "pg"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem "sass-rails"
# Don't upgrade to Bootstrap 3. It's already responsive, for example, so
# there's a bunch of things we need to do for the upgrade
gem "bootstrap-sass", "~> 2.0"
# See /~https://github.com/sstephenson/execjs#readme for more supported runtimes
gem "therubyracer", platforms: :ruby
gem "less-rails"
gem "uglifier"
end
gem "jquery-rails"
gem "jbuilder"
gem "eventmachine"
gem "sidekiq"
gem "sinatra", require: nil
gem "batch-loader"
gem "devise"
gem "devise_invitable"
gem "dkim"
gem "dnsbl-client"
gem "factory_bot_rails"
gem "file-tail"
gem "foreman"
gem "formtastic"
# Use pull request that has needed Rails 4 improvements /~https://github.com/pkurek/flatui-rails/pull/25
gem "flatui-rails", git: "/~https://github.com/iffyuva/flatui-rails.git",
ref: "3d3c423"
gem "fog-aws"
gem "font-awesome-rails"
gem "friendly_id"
gem "google-analytics-rails"
gem "graphql"
gem "graphql-client"
gem "graphql-errors"
gem "graphql-guard"
gem "gravatar_image_tag"
gem "haml-rails"
gem "honeybadger"
gem "syslog_protocol"
gem "will_paginate"
# Need commit c9331088146e456a69bd6e94298c80d09be3ee74
gem "formtastic-bootstrap",
git: "/~https://github.com/mjbellantoni/formtastic-bootstrap.git",
ref: "f86eaef93bea0a06879b3977d7554864964a623f"
gem "haml-coderay"
gem "minitar"
gem "newrelic_rpm"
gem "nokogiri"
gem "premailer"
gem "pundit"
gem "user_agent_parser"
gem "virtus"
# For doing the webhooks to external sites
gem "rest-client"
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'
# We want to be able to use rack-mini-profiler in production
gem "rack-mini-profiler"
# For authorization with json web tokens
gem "jwt"
# For generating ssl certificates for custom tracking domains
gem "acme-client"
group :development do
gem "capistrano", "~> 2"
gem "faker", git: "/~https://github.com/stympy/faker.git", branch: "master"
gem "graphiql-rails"
gem "rubocop", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rvm-capistrano", ">= 1.5.6", require: false
gem "spring"
gem "spring-commands-rspec"
# Webrick gives us annoying warnings "could not determine content-length
# of response body"
gem "thin"
gem "guard"
gem "guard-rspec"
gem "listen"
gem "rb-fchange", require: false
gem "rb-fsevent", require: false
gem "rb-inotify", require: false
gem "ruby_gntp"
gem "terminal-notifier"
gem "terminal-notifier-guard"
end
group :test do
gem "climate_control"
gem "coveralls", require: false
gem "database_cleaner"
gem "rails-controller-testing"
gem "vcr"
gem "webmock"
end
group :development, :test do
gem "capybara"
gem "rspec-activemodel-mocks"
gem "rspec-rails"
gem "selenium-webdriver"
# For resizing screenshots
gem "rmagick"
end