forked from codeforamerica/clientcomm-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
82 lines (73 loc) · 1.83 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
source 'https://rubygems.org'
ruby File.read(File.join(File.dirname(__FILE__), '.ruby-version')).strip
gem 'activeadmin'
gem 'bootsnap'
gem 'delayed_job_active_record'
gem 'delayed_job_web'
gem 'device_detector'
gem 'devise'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.12'
gem 'rails', '~> 5.1.6'
gem 'remotipart'
gem 'timeliness'
gem 'twilio-ruby'
gem 'uglifier', '>= 1.3.0'
gem 'validates_timeliness'
gem 'autosize'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'bourbon', '~> 4.2.0'
gem 'es6-promise-rails', '~> 3.2'
gem 'fuzzy-string-match'
gem 'intercom-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails', git: 'https://github.com/codeforamerica/jquery-ui-rails.git', branch: 'master'
gem 'loofah-activerecord'
gem 'mixpanel-ruby'
gem 'neat', '~> 1.8.0'
gem 'premailer-rails'
gem 'sass-rails', '~> 5.0'
gem 'sentry-raven'
gem 'skylight', '3.0.0.beta'
gem 'aws-sdk', '~> 2'
gem 'paperclip'
gem 'delayed_cron_job', '~> 0.7.2'
gem 'lodash-rails'
group :test do
gem 'capybara-screenshot'
gem 'codeclimate-test-reporter', '1.0.8', require: false
gem 'launchy', require: false
gem 'shoulda-matchers'
gem 'simplecov', require: false
end
group :development, :test do
gem 'action-cable-testing'
gem 'addressable'
gem 'awesome_print'
gem 'byebug', platform: :mri
gem 'capybara'
gem 'database_cleaner'
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'faraday'
gem 'jasmine-rails'
gem 'overcommit'
gem 'paint'
gem 'poltergeist'
gem 'pry-byebug'
gem 'rspec-rails'
gem 'rspec_junit_formatter'
gem 'rubocop'
gem 'selenium-webdriver'
gem 'webmock'
end
group :development do
gem 'listen'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen'
gem 'web-console'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]