-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (33 loc) · 822 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
# This Gemfile lists all Gems used throughout the book - with versions.
source :rubygems
# Build stuff
gem 'bundler', '1.0.21'
gem 'rake', '0.9.2.2'
gem 'watchr', '0.7'
gem 'bcat', '0.6.2'
# General stuff
gem 'aruba', '0.4.8'
gem 'cucumber', '1.1.3'
gem 'rake', '0.9.2.2'
gem 'rspec', '2.7.0'
# Rails stuff
gem 'activerecord', '3.1.3'
gem 'capybara', '1.1.2'
gem 'coffee-rails', '3.1.1'
gem 'cucumber-rails', '1.2.1'
gem 'database_cleaner', '0.7.0'
gem 'factory_girl', '2.3.2'
gem 'jquery-rails', '1.0.19'
gem 'launchy', '2.0.5'
gem 'rails', '3.1.3'
gem 'rspec-rails', '2.7.0'
gem 'sass-rails', '3.1.5'
gem 'sqlite3', '1.3.5'
gem 'uglifier', '1.1.0'
# Non Rails stuff
gem 'childprocess', '0.2.3'
gem 'httparty', '0.8.1'
gem 'json', '1.6.3'
gem 'rack-test', '0.6.1'
gem 'service_manager', '0.6.2'
gem 'sinatra', '1.3.1'