-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (47 loc) · 928 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
46
47
48
49
50
51
52
source 'https://rubygems.org'
gem 'rails'
gem 'pg'
gem 'sass-rails', '~> 5.0.1'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'turbolinks'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'selenium-webdriver'
gem 'psych'
gem 'paperclip', '~> 4.3'
gem 'rails-jquery-autocomplete'
gem 'devise'
gem 'react-rails', '~> 1.6.0'
gem 'd3-rails'
gem 'font-awesome-rails'
gem 'omnicontacts'
gem 'groupdate'
gem 'chartkick'
gem 'aws-sdk', '~> 2'
group :production do
gem 'rails_12factor'
end
group :development do
gem 'byebug'
gem 'web-console'
gem 'spring'
gem 'quiet_assets'
end
group :test, :development do
gem 'rspec-rails'
gem 'launchy'
gem 'pry'
gem 'capybara'
gem 'warden'
gem "factory_girl_rails", "~> 4.0"
gem 'database_cleaner'
gem 'dotenv-rails'
end
group :test do
gem 'capybara-screenshot'
gem 'poltergeist'
gem 'shoulda-matchers'
gem 'simplecov', require: false
end