Add gem dependencies for test and build groups

This commit is contained in:
Susan Potter 2012-02-20 23:25:21 -06:00
parent 0a1cdde92d
commit 476d0a1781
2 changed files with 24 additions and 2 deletions

10
Gemfile
View file

@ -1,5 +1,11 @@
source :rubygems source :rubygems
group :testing do group :build do
gem 'aruba' gem 'vulcan', '0.2.5'
end
group :test do
gem 'aruba'
gem 'bcat'
gem 'rdiscount'
end end

View file

@ -6,6 +6,8 @@ GEM
cucumber (>= 1.1.1) cucumber (>= 1.1.1)
ffi (>= 1.0.11) ffi (>= 1.0.11)
rspec (>= 2.7.0) rspec (>= 2.7.0)
bcat (0.6.2)
rack (~> 1.0)
builder (3.0.0) builder (3.0.0)
childprocess (0.3.1) childprocess (0.3.1)
ffi (~> 1.0.6) ffi (~> 1.0.6)
@ -20,6 +22,12 @@ GEM
gherkin (2.8.0) gherkin (2.8.0)
json (>= 1.4.6) json (>= 1.4.6)
json (1.6.5) json (1.6.5)
mime-types (1.17.2)
multipart-post (1.1.5)
rack (1.4.1)
rdiscount (1.6.8)
rest-client (1.6.7)
mime-types (>= 1.16)
rspec (2.8.0) rspec (2.8.0)
rspec-core (~> 2.8.0) rspec-core (~> 2.8.0)
rspec-expectations (~> 2.8.0) rspec-expectations (~> 2.8.0)
@ -29,9 +37,17 @@ GEM
diff-lcs (~> 1.1.2) diff-lcs (~> 1.1.2)
rspec-mocks (2.8.0) rspec-mocks (2.8.0)
term-ansicolor (1.0.7) term-ansicolor (1.0.7)
thor (0.14.6)
vulcan (0.2.5)
multipart-post (~> 1.1.3)
rest-client (~> 1.6.7)
thor (~> 0.14.6)
PLATFORMS PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
aruba aruba
bcat
rdiscount
vulcan (= 0.2.5)