-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (40 loc) · 898 Bytes
/
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
source 'https://rubygems.org'
ruby '2.4.2'
gem 'rails', '~> 5.1.2'
gem 'pg', '~> 0.18'
gem 'puma', '>= 3.12.2'
gem 'sass-rails'
gem 'uglifier'
gem 'turbolinks'
gem 'jbuilder'
gem 'redis'
gem 'sidekiq'
gem 'sendgrid-ruby'
gem 'clockwork'
gem 'bootstrap', git: 'https://github.com/twbs/bootstrap-rubygem'
gem 'jquery-rails'
gem 'google-api-client'
gem 'httparty'
gem 'ruby-sun-times', require: 'sun_times'
gem 'switchery-rails'
gem 'phone'
gem 'newrelic_rpm'
gem 'twilio-ruby'
gem 'webdack-uuid_migration'
group :development, :test do
gem 'pry'
gem 'awesome_print'
gem "factory_bot_rails"
gem 'faker'
end
group :test do
gem 'shoulda-matchers'
gem 'rspec-rails'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]