-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
51 lines (43 loc) · 1.05 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
source 'https://rubygems.org'
ruby "2.3.3"
gem 'bourbon', '~> 4.2', '>= 4.2.6'
gem 'neat', '~> 1.8.0'
gem 'rails', '~> 5.0.1'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'newrelic_rpm'
gem 'swagger-blocks'
gem 'swagger-ui_rails5'
gem 'twilio-ruby'
gem 'normalize-rails'
gem 'jquery-ui-rails'
gem 'client_side_validations'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'devise'
# Use HTTParty for HTTP calls
gem 'httparty'
gem 'crack'
group :development, :test, :ci do
gem 'capybara'
gem 'database_cleaner'
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'launchy'
gem 'poltergeist'
gem 'pry-byebug'
gem 'rspec-rails'
# gem 'selenium-webdriver'
gem 'shoulda-matchers'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]