-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
111 lines (77 loc) · 2.11 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
source 'https://rubygems.org'
gem 'rails', '3.2.13'
#jsonp middleware
gem 'rack-cors', "~> 0.2.7", :require => 'rack/cors'
gem 'rack-jsonp-middleware', "~> 0.0.9", :require => 'rack/jsonp'
# file uploads
gem "paperclip", "~> 3.4.1"
gem "paperclip-aws", "~> 1.6.7" #support for all locations without hacks
# solr searching
gem 'sunspot_rails', "~> 2.0.0"
gem 'sunspot_solr', "~> 2.0.0" # optional pre-packaged Solr distribution for use in development
gem 'progress_bar' # needed to show progress bar when indexing
# bundle exec rake sunspot:solr:start # or sunspot:solr:run to start in foreground
# bundle exec rake sunspot:solr:reindex
# Authentication
gem 'devise', "~> 2.1.2"
# Voting system
gem 'thumbs_up', '~> 0.6.4'
#geocoded locations for photos and users
gem 'geocoder', "~> 1.1.6"
#only used on html views to display gmaps
gem 'gmaps4rails', "~> 1.5.6"
# pagination
gem "kaminari", "~> 0.14.1"
# comments
gem 'opinio', "~> 0.6"
# activity feeds
gem 'public_activity', "~> 1.0.3"
gem 'bundler'
gem 'mysql2'
gem "acts_as_follower", "~> 0.1.1"
gem 'jquery-rails'
gem 'html5-rails'
#authorization
gem "cancan", "~> 1.6.9"
gem 'rack-ssl-enforcer', "~> 0.2.5"
# send email on exception in production
gem 'exception_notification'
gem 'bullet'
gem 'xmpp4r'
# deployment on uberspace.de
gem 'uberspacify'
gem 'faker'
group :production do
gem 'newrelic_rpm', "~> 3.5.8.72"
end
group :testing do
gem 'shoulda-matchers', require: false
gem "codeclimate-test-reporter", require: nil
end
group :testing, :development do
gem 'rspec-rails'
gem "factory_girl_rails", "~> 4.0"
end
group :development do
gem 'capistrano'
gem 'capistrano-unicorn'
gem 'capistrano-nginx'
gem 'rvm-capistrano'
gem 'guard-rspec', require: false
gem "spring"
gem 'libnotify'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'compass-rails'
gem 'compass-h5bp'
gem "therubyracer", :require => 'v8'
gem 'libv8'
gem 'jquery-datatables-rails'
# only precompile updated assets
gem 'turbo-sprockets-rails3'
end