-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
53 lines (48 loc) · 1.08 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
source 'https://rubygems.org'
gem 'cancan'
gem 'carrierwave'
gem 'clearance'
gem 'coffee-rails', '~> 4.0.0'
gem 'compass-rails', '~> 1.1.2'
gem 'draper', '~> 1.3'
gem 'ejs'
gem 'font-awesome-rails'
gem 'jquery-rails'
gem 'mini_magick'
gem 'paranoia', '~> 2.0'
gem 'puma'
gem 'rails', '4.0.0'
gem 'rvm-capistrano'
gem 'sass-rails', '~> 4.0.0'
gem 'slim-rails'
gem 'sqlite3'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'pry-rails'
gem 'rspec-rails', '~> 2.13'
gem 'shoulda-matchers'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-commands-cucumber'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
gem 'capistrano', '~> 3.0.1'
gem 'capistrano-rails', '~> 1.1.0'
gem 'capistrano-rvm', '~> 0.1.0'
gem 'capistrano-bundler', '~> 1.1.0'
gem 'capistrano3-puma'
end
group :test do
gem 'capybara', '~> 2.0'
gem 'capybara-webkit'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'factory_girl_rails', '~> 4.2'
gem 'selenium-webdriver'
end
group :doc do
gem 'sdoc', require: false
end