-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
46 lines (39 loc) · 1000 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
40
41
42
43
44
45
46
source 'https://rubygems.org'
gem 'rails', '4.1.1'
gem 'bootstrap-sass', '3.1.1.1'
gem 'sprockets', '2.11.0'
gem 'bcrypt-ruby', '3.1.5'
gem 'sqlite3'
group :development, :test do
gem 'rspec-rails', '2.14.2'
gem 'guard-rspec'
gem 'spork-rails', '4.0.0'
gem 'guard-spork', '1.5.1'
gem 'childprocess', '0.5.3'
gem 'simplecov'
end
group :test do
gem 'database_cleaner'
gem 'selenium-webdriver', '~> 2.38.0'
gem 'capybara', '2.2.1'
gem 'rb-notifu', '0.0.4'
gem 'wdm', '0.1.0', platforms: :mingw, require: false
gem 'factory_girl_rails', '4.4.1'
end
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
group :doc do
gem 'sdoc', '~> 0.4.0', require: false
end
# JavaScript runtime
gem 'therubyracer', platforms: [:ruby]
# client
gem 'thin'
# faye for sockets
gem 'faye'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin]