forked from mlandauer/cuttlefish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
122 lines (104 loc) · 2.8 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
# frozen_string_literal: true
source "https://rubygems.org"
gem "dotenv-rails"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "5.2.0"
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-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"
# 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'
group :development do
gem "capistrano", "~> 2"
gem "faker", git: "https://github.com/stympy/faker.git", branch: "master"
gem "graphiql-rails"
gem "guard"
gem "guard-rspec"
gem "listen"
gem "rack-mini-profiler"
gem "rb-fchange", require: false
gem "rb-fsevent", require: false
gem "rb-inotify", require: false
gem "rubocop", require: false
gem "rvm-capistrano", ">= 1.5.6", require: false
gem "spring"
gem "spring-commands-rspec"
gem "terminal-notifier"
gem "terminal-notifier-guard"
# Webrick gives us annoying warnings "could not determine content-length
# of response body"
gem "thin"
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