-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
66 lines (60 loc) · 1.48 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.5.1'
gem 'rails', github: 'rails/rails'
gem 'bcrypt'
gem 'bootstrap-sass', '>= 3.4.1'
gem 'cancancan'
gem 'coffee-rails'
gem 'devise', '>= 4.6.0'
gem 'font-awesome-rails', '~> 4.7.0.4'
gem 'httparty'
gem 'jbuilder', '~> 2.7.0'
gem 'jquery-rails', '~> 4.3'
gem 'newrelic_rpm'
gem 'paloma', '~> 6.0.0'
gem 'puma', '~> 3.12.4'
gem 'rails-ujs', '~> 0.1.0'
gem 'recursive-open-struct', '1.1.0'
gem 'rolify'
gem 'sass-rails', '~> 5.0.7'
# gem 'therubyracer', '~> 0.12.3'
gem 'turbolinks', '~> 5.1.0'
gem 'uglifier', '~> 4.2.0'
gem 'pg', '~> 1.2'
gem 'mysql2', '~> 0.5'
gem 'clockwork', '~> 2.0'
gem 'twilio-ruby', '~> 5.33.1'
group :development, :test do
gem 'dotenv-rails'
gem 'pry-byebug'
gem 'pry-rails'
gem 'spring-commands-rspec'
end
group :development do
gem 'guard-rspec', '~> 4.7', '>= 4.7.3'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console'
end
group :test do
gem 'capybara', '~> 3.32.0'
gem 'capybara-selenium'
gem 'capybara-screenshot', '~> 1.0'
gem 'codacy-coverage', require: false
gem 'database_cleaner'
gem 'factory_bot_rails', '~> 5.1.1'
gem 'ffaker'
gem 'rails-controller-testing'
gem 'rspec-activemodel-mocks', '~>1.1.0'
gem 'rspec-collection_matchers'
gem 'rspec-its', '~> 1.2.0'
gem 'rspec-rails', '~> 4.0.0'
gem 'rubocop'
gem 'rubocop-rspec'
gem 'shoulda-matchers'
gem 'vcr', '~> 5.1.0'
gem 'webmock', '~> 3.8.3'
gem 'with_model', '~> 2.1.3'
end