-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
57 lines (49 loc) · 1.37 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
source 'https://rubygems.org'
gem 'rails', '3.2.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'active_attr', '>= 0.5.0.alpha2'
gem 'slim-rails', '>= 1.0.3'
gem 'simple_form', '>= 2.0.0'
gem 'devise', '>= 2.0.4'
gem 'jquery-rails'
gem 'cabin', '0.4.4'
gem 'yajl-ruby', '>= 1.1.0'
gem 'jbuilder'
gem 'spice', git: 'https://github.com/danryan/spice'
gem 'fog', '>= 1.1.2'
gem 'unicorn'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# gem 'twitter-bootstrap-rails', '>= 2.0.2'
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
group :test do
# gem 'cucumber-rails'
gem 'rspec-rails', '>= 2.8.1'
gem 'factory_girl_rails', '>= 3.2.0'
gem 'shoulda-matchers', '>= 1.0.0'
gem 'capybara', '>= 1.1.2'
gem 'rack-test', '>= 0.6.0', :require => 'rack/test'
gem 'json_spec', '>= 1.0.3'
gem 'email_spec', '>= 1.2.1'
gem 'spork', '>= 1.0.0rc2'
gem 'guard', '>= 1.0.1'
gem 'guard-rails', '>= 0.1.0'
gem 'guard-rspec', '>= 0.7.0'
# gem 'guard-cucumber'
gem 'guard-spork', '>= 0.7.1'
gem 'guard-bundler'
gem 'guard-migrate'
gem 'rb-fsevent', '>= 0.9.1'
gem 'growl', '>= 1.0.3'
gem 'database_cleaner', '>= 0.7.2'
gem 'tach', ">= 0.0.8"
gem 'forgery', '>= 0.5.0'
gem 'timecop', '>= 0.3.5'
end