-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
63 lines (54 loc) · 1.06 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
58
59
60
61
62
63
source 'https://rubygems.org'
# Heroku uses the ruby version to configure your application's runtime.
ruby '2.2.1'
gem 'puma'
gem 'rack-canonical-host'
gem 'rails', '~> 4.2.3'
gem 'pg'
gem 'slim-rails'
gem 'sass-rails'
gem 'bootstrap-sass'
gem 'jquery-rails'
gem 'coffee-rails'
gem 'simple_form'
gem 'uglifier'
gem 'autoprefixer-rails'
gem 'bcrypt'
gem 'railroady'
gem 'rails-erd'
gem 'awesome_print'
group :production, :acceptance do
gem 'rack-timeout'
gem 'rails_stdout_logging'
gem 'heroku_rails_deflate'
end
group :test do
gem 'fuubar'
gem 'capybara'
#gem 'capybara-email'
gem 'poltergeist'
#gem 'timecop'
gem 'database_cleaner'
gem 'simplecov'
end
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'jasmine-rails'
#gem 'cane'
#gem 'morecane'
end
group :development do
gem 'spring'
gem 'spring-commands-rspec'
gem 'foreman'
gem 'launchy'
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
gem 'guard', '~> 2'
gem 'guard-rspec'
gem 'guard-livereload'
gem 'rb-fsevent'
gem 'growl'
end