-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathGemfile
58 lines (46 loc) · 1.05 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
source 'https://rubygems.org'
ruby '2.1.4'
gem 'rails', '3.2.22'
gem 'thin'
gem 'pg'
gem 'squeel'
gem 'memcachier'
gem 'dalli'
group :development do
gem 'execjs'
gem 'therubyracer'
end
group :production do
gem 'rails_12factor' # Added to avoid warnings on heroku
gem 'newrelic_rpm'
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.0.3'
end
#libs
gem "rmagick", :require => "rmagick"
gem 'jquery-rails'
gem 'simple-navigation'
gem 'galetahub-simple_captcha','0.1.3', :require => 'simple_captcha'
gem "cancan",'1.6.8'
gem 'json_builder'
gem 'httpclient'
gem "friendly_id", "~> 4.0.1"
gem 'will_paginate', '~> 3.0'
gem "omniauth-openid"
gem "omniauth-facebook"
## delayed jobs
#gem "delayed_job_active_record"
#gem "workless", "~> 1.1.3"
#versioning
gem 'paper_trail', '~> 3.0.1'
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "guard-rspec"
end