-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
49 lines (42 loc) · 1.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
source 'http://rubygems.org'
gem 'rails', '3.2.2'
gem 'active_attr'
gem 'mysql2'
gem 'jquery-rails'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'capistrano'
gem 'stringex'
gem 'nokogiri'
gem 'delayed_job_active_record'
gem 'will_paginate', '~> 3.0'
gem 'will_paginate-bootstrap'
gem "delayed_job_admin", :git => "git://github.com/dje29/delayed_job_admin.git"
group :octopress do
gem 'rake'
gem 'rack'
gem 'jekyll', :git => "[email protected]:yortz/jekyll.git", :branch => "edge"
gem 'rdiscount'
gem 'pygments.rb'
gem 'RedCloth'
gem 'haml', '>= 3.1'
gem 'compass', '>= 0.11'
gem 'rubypants'
gem 'rb-fsevent'
gem 'stringex'
gem 'liquid', '2.2.2'
gem 'mini_magick'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass', '2.0.1' #momentarily sticking with 2.0.1 due to icon display issue
end
gem "rspec-rails", "~> 2.6", :group => [:test, :development]
group :test do
gem 'capybara'
gem "factory_girl_rails"
gem 'launchy'
end