-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
83 lines (62 loc) · 1.59 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
76
77
78
79
80
81
82
83
source 'http://rubygems.org'
gem 'rails', '4.1.11'
gem 'rake', '10.1.0'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'bcrypt-ruby', '~> 3.1.0'
gem 'faker', '1.0.1'
gem 'activeresource'
# For authenticating with twitter/google
gem 'omniauth-twitter', '1.0.0'
gem 'omniauth-google-oauth2', '0.2.0'
gem 'omniauth-identity', '1.1.1'
# For pagination
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
# For mechanical turk
gem 'rturk', '2.12.1'
# For uploading images
gem 'dragonfly', '~> 1.0.7'
# Caching
#gem 'rack-cache', :require => 'rack/cache'
# For integration with solr
#gem 'sunspot_rails'
group :development, :test, :production do
gem 'paper_trail' #'~> 2'
end
#group :production do
gem 'sqlite3' #'1.3.5'
# gem 'mysql2', '~> 0.3.16'
#end
group :development, :test do
gem "rack-reverse-proxy", :require => "rack/reverse_proxy"
gem 'rspec-rails' #'2.11.0'
end
group :development do
gem 'annotate', '2.5.0'
end
#group :test do
# gem 'capybara', '1.1.2'
# gem 'factory_girl_rails', '4.1.0'
#end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails' #'~> 3.2.3'
gem 'coffee-rails' #'~> 3.2.1'
gem 'uglifier', '1.2.3'
end
gem 'jquery-rails' #'3.1.2'
gem 'requirejs-rails' #'0.9.5'
gem 'font-awesome-sass-rails' #'3.0.2.2'
#Gems added for update to rails 4
gem 'protected_attributes'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
# For dumping database to YAML files
gem 'yaml_db'