-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
63 lines (53 loc) · 1.24 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
source 'https://rubygems.org'
gem 'rails', '~> 3.2.13'
gem 'mysql2'
gem 'paperclip'
gem 'simple_enum'
gem 'factory_girl_rails'
gem 'kaminari'
gem 'jquery-rails'
gem 'rails-translate-routes'
gem 'simple-navigation', :git => 'git://github.com/andi/simple-navigation.git'
gem 'activerecord-reputation-system'
gem 'sunspot_rails'
gem 'daemons'
gem 'aws-sdk'
gem 'faker'
gem 'random_data'
gem 'authlogic', git: 'git://github.com/julianalucena/authlogic.git'
gem 'cancan'
gem 'faraday'
gem 'patron'
gem 'untied-consumer-sync-activerecord', '~> 0.0.1'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', platforms: :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'sunspot_solr'
gem 'bullet'
end
group :development, :test do
gem 'rspec-rails'
gem 'debugger'
end
group :test do
gem 'shoulda-matchers'
gem 'webmock'
end
group :production do
gem 'asset_sync'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'