-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGemfile
53 lines (47 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
52
53
source 'https://rubygems.org'
ruby '2.2.3'
gem 'rails', '4.1.4'
gem 'pg'
gem 'unicorn'
gem 'activerecord-import'
gem 'devise'
gem 'devise_ldap_authenticatable'
gem 'draper', '~> 1.3'
gem 'friendly_id', '~> 5.1.0'
gem 'handlebars_assets', '~> 0.22.0'
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 5.0.3'
gem 'net-sftp'
gem 'net-ssh'
gem 'pdfkit'
gem 'probability'
gem 'react-rails', '~> 1.5.0' # Provides React, handles swapping between dev/production builds.
# See config/initializers/assets.rb
gem 'rubystats'
gem 'sass-rails', '~> 4.0.3'
gem 'seedbank'
gem 'thor'
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
group :production do
gem 'rails_12factor'
end
group :development, :test do
gem 'capybara'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'faker'
gem 'launchy'
gem 'phantomjs'
gem 'rack-test'
gem 'rspec-rails', '~> 3.0'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'teaspoon-jasmine'
gem 'timecop'
end
group :development do
gem 'better_errors'
gem 'pivotal_git_scripts'
gem 'spring'
end