-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
61 lines (47 loc) · 1.24 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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'bootstrap-sass', '2.0.0'
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# use Haml for templates
gem 'haml'
gem 'haml-rails'
# Handle dates properly
gem "date_validator", "~> 0.6.3"
# Wizard handling
gem 'wicked'
# use Ruby debugger
group :development, :test do
gem 'ruby-debug19'
gem 'simplecov', :require => false, :group => :test
gem 'cucumber', '1.1.3'
gem 'rspec', '2.7.0'
gem 'rspec-rails'
gem 'rspec-expectations', '2.7.0'
gem 'cucumber-rails', :require => false
# database_cleaner is not required, but highly recommended
gem 'database_cleaner'
gem 'capybara'
gem 'launchy'
gem 'factory_girl_rails', '1.4.0'
gem 'railroady'
gem 'faker', '1.0.1'
end