forked from studentinsights/studentinsights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (53 loc) · 1.3 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
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '~> 4.2'
gem 'pg'
gem 'unicorn'
gem 'activerecord-import'
gem 'administrate', '~> 0.2.1'
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 'probability'
gem 'rails-sanitize-js'
gem 'react-rails', '~> 1.5.0' # Provides React, handles swapping between dev/production builds.
# See config/initializers/assets.rb
gem 'rubystats'
gem 'sass-rails', '~> 5.0'
gem 'sprockets', '2.12.3'
gem 'seedbank'
gem 'thor'
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
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 'pry' # Set a breakpoint in your ruby code by adding `binding.pry`
# See https://github.com/pry/pry
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