-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (32 loc) · 760 Bytes
/
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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
gem 'sqlite3'
gem 'jquery-rails'
gem 'devise'
group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'bootstrap-sass'
end
gem 'turbolinks'
gem 'jbuilder', '~> 1.0.1'
gem 'simple_form'
gem 'haml-rails'
group :doc do
gem 'sdoc', require: false
end
# tools for testing
group :development, :test do
gem 'rspec-rails'
gem 'better_errors'
end
group :test do
gem 'cucumber-rails', :require => false
# use head version to remove annoying bug
gem 'cucumber', :git => '[email protected]:cucumber/cucumber'
gem 'capybara'
gem 'selenium-webdriver'
gem 'database_cleaner'
end