-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
executable file
·76 lines (62 loc) · 1.85 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
67
68
69
70
71
72
73
74
75
source 'http://rubygems.org'
ruby '2.3.4'
gem 'rake'
gem 'rails', '~> 3.2'
gem 'pg'
gem 'devise'
gem 'cancan'
gem 'iconv'
gem 'paperclip'
gem 'unicorn'
gem 'newrelic_rpm'
gem 'aws-sdk', '~> 1.5.7'
gem 'delayed_job_active_record'
# jQuery is the default JavaScript library in Rails 3.1
gem 'jquery-rails'
# gem 'jquery-ui-rails', '5.0.0'
gem 'jquery-ui-rails', '~> 5.0'
gem 'therubyracer' # bundle can't find this one, even though it's a dependency?
# GOSH I HOPE THIS WORKS
gem 'nested_form'
gem 'rails_12factor', group: :production
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'less-rails'
gem 'twitter-bootstrap-rails', '~>2.2.8'
# gem 'repertoire-groups', :git => 'git@github.com:repertoire/Repertoire-Groups.git', :branch => 'bootstrap-flavor'
# gem 'repertoire-groups', '0.0.1', :path => './vendor/repertoire-groups-0.0.1' #, :require => 'repertoire-groups'
gem 'repertoire-groups', '0.0.1', :path => 'vendor/repertoire-groups-0.0.1' #, :require => 'repertoire-groups'
gem 'repertoire-faceting', '~>0.7.6'
gem 'acts-as-taggable-on'
# enable CORS, for use in CFRP data-essays
gem 'rack-cors', :require => 'rack/cors'
gem 'test-unit', '~> 3.0'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'capybara'
# gem 'autotest'
# gem 'autotest-growl'
# gem 'autotest-fsevent'
gem 'rspec'
gem 'rspec-rails'
gem 'annotate'
gem 'guard-rspec'
gem 'rb-fsevent', '~> 0.9.1'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'shoulda-matchers'
end
# Caching, used for AJAX API endpoints
gem 'rack-cache'
gem 'dalli'
gem 'nokogiri'
# gem 'activeadmin'
gem 'activeadmin', '~> 1.0.0.pre5'
gem 'activeadmin_addons'
gem 'pry'