-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (55 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
source 'https://rubygems.org'
ruby '2.1.0'
#ruby-gemset=expat_4_0
gem 'rails', '~> 4.0.2'
gem 'pg', '~> 0.17.1'
gem 'sass-rails', '~> 4.0.1'
# gem 'bootstrap-sass', '2.3.2.0'
gem 'bootstrap-sass', '~> 3.1.0'
gem 'uglifier', '>= 2.4.0'
gem 'coffee-rails', '~> 4.0.1'
# gem 'jquery-rails', '~> 3.0.4'
gem 'jquery-rails'
# gem 'jquery-ui-rails'
gem 'turbolinks', '~> 2.2.0'
gem 'jbuilder', '~> 1.5.3'
gem 'metamagic', '~> 2.0.6'
gem 'nokogiri', '~> 1.6.0'
gem 'comfortable_mexican_sofa', :git => 'git://github.com/laertiades/comfortable-mexican-sofa.git'
# gem 'comfortable_mexican_sofa', '~> 1.11.0'
# gem 'comfortable_mexican_sofa', '~> 1.11.0', :git => 'git://github.com/laertiades/comfortable-mexican-sofa.git'
# gem 'comfortable_mexican_sofa', '~> 1.11.0', :path => '/home/jesse/rails/comfortable-mexican-sofa'
# gem 'simple_captcha', :git => 'git://github.com/pludoni/simple-captcha.git'
# gem 'simple_captcha', :git => 'git://github.com/galetahub/simple-captcha.git'
gem 'simple_captcha', :git => 'git://github.com/laertiades/simple-captcha.git'
gem 'mobvious'
gem 'aws-sdk'
gem 'jquery-datatables-rails', git: 'git://github.com/rweng/jquery-datatables-rails.git'
# gem 'will_paginate'
gem 'rack-cache', :git => 'git://github.com/laertiades/rack-cache.git'
gem 'rack-cache-purge', :git => 'git://github.com/laertiades/rack-cache-purge.git'
gem 'dalli'
gem 'kgio'
gem "memcachier"
gem 'unicorn'
gem "rack-timeout"
gem 'rack-rewrite'
# Use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.1.2'
group :production do
gem 'rails_12factor', '0.0.2'
gem 'heroku_rails_deflate'
end
group :development, :test do
gem 'rspec-rails', '2.13.1'
gem 'guard-rspec', '2.5.0'
end
group :test do
gem 'selenium-webdriver', '~> 2.35.1'
gem 'capybara', '2.1.0'
gem 'libnotify', '0.8.0'
gem 'factory_girl_rails', '4.2.1'
end
group :doc do
gem 'sdoc', '0.3.20', require: false
end