-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
62 lines (55 loc) · 1.13 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.6.0'
gem 'autoprefixer-rails'
gem 'bourbon', '~> 4.2.0'
gem 'chronic'
gem 'coffee-rails', '~> 4.1.0'
gem 'delayed_job_active_record'
gem 'flutie'
gem 'high_voltage'
gem 'jquery-rails'
gem 'leaflet-rails'
gem 'neat', '~> 1.7.0'
gem 'newrelic_rpm', '>= 3.9.8'
gem 'normalize-rails', '~> 3.0.0'
gem 'pg'
gem 'puma'
gem 'rack-canonical-host'
gem 'rails', '~> 4.2'
gem 'recipient_interceptor'
gem 'sass-rails', '~> 5.0'
gem 'simple_form'
gem 'telegram-bot-ruby'
gem 'title'
gem 'uglifier'
group :development do
gem 'quiet_assets'
gem 'refills'
gem 'spring'
gem 'spring-commands-rspec'
gem 'web-console'
end
group :development, :test do
gem 'awesome_print'
gem 'bullet'
gem 'bundler-audit', require: false
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails', '~> 3.9.0'
end
group :test do
gem 'capybara-webkit'
gem 'database_cleaner'
gem 'formulaic'
gem 'launchy'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'timecop'
gem 'webmock'
end
group :staging, :production do
gem 'rack-timeout'
end