-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (44 loc) · 1.04 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 'https://rubygems.org'
gem 'rails', '3.2.13'
gem 'slim-rails', '1.1.0'
gem 'bootstrap-sass', '2.3.0.1'
gem 'pg', '0.14.1'
gem 'bcrypt-ruby', '3.0.1'
gem 'faker'
gem 'will_paginate'
gem 'bootstrap-will_paginate', '0.0.9'
gem 'jquery-rails'
gem 'font-awesome-sass-rails'
gem 'cancan'
gem 'simple_captcha', git: 'git://github.com/galetahub/simple-captcha.git'
gem 'simple_form'
gem 'redcarpet'
gem 'markitup-rails'
gem 'unicorn'
gem 'capistrano'
group :development, :test do
gem 'rspec-rails', '2.13.0'
gem 'guard-rspec'
gem 'fuubar'
end
group :development do
gem 'annotate'
gem 'guard-livereload'
gem 'guard-rails'
gem 'guard-spork'
gem 'rails-footnotes'
gem 'better_errors'
gem 'binding_of_caller'
end
group :assets do
gem 'sass-rails', '3.2.6'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '1.3.0'
end
group :test do
gem 'capybara', '2.0.3'
gem 'rb-inotify'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'capybara-email', '2.0.3'
end