-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
46 lines (41 loc) · 1.16 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
# -*- mode: ruby; -*-
source 'https://rubygems.org'
gem 'rails', '~> 3.2.11'
gem 'bootstrap-sass', '~> 2.1'
gem 'bcrypt-ruby', '~> 3.0.1'
gem 'faker', '~> 1.0.1'
gem 'will_paginate', '~> 3.0.3'
gem 'bootstrap-will_paginate', '~> 0.0.6'
gem 'jquery-rails', '~> 2.0.2'
gem 'sqlite3', '~> 1.3.5'
gem 'rdiscount', '~> 2.0.7'
gem 'public_activity', '~> 1.0.3'
gem 'friendly_id', '~> 4.0.9'
gem 'redcarpet', '~> 2.2.2'
gem 'devise', '~> 2.2.3'
group :development, :test do
gem 'rspec-rails', '~> 2.11.0'
gem 'guard-rspec', '~> 1.2.1'
gem 'guard-spork', '~> 1.4.1'
gem 'spork', '~> 0.9.2'
gem 'annotate', '~> 2.5.0'
gem 'better_errors', '~> 0.8.0'
gem "binding_of_caller", '~> 0.7.1'
gem 'simplecov', '~> 0.7.1'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '3.2.5'
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '~> 1.2.3'
end
group :test do
gem 'capybara', '~> 1.1.2'
gem 'factory_girl_rails', '~> 4.1.0'
#gem 'cucumber-rails', '~> 1.2.1', :require => false
gem 'database_cleaner', '~> 0.7.0'
gem 'rb-fsevent', '~> 0.9.1', :require => false
end
group :production do
end