Skip to content

Commit

Permalink
constrain ammeter dependency to :test group
Browse files Browse the repository at this point in the history
It was causing some trouble running generators when it was in the
development group as well.
  • Loading branch information
dchelimsky committed Nov 22, 2011
1 parent 5af9d7d commit 40d3bf1
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions Gemfile
Expand Up @@ -11,21 +11,23 @@ source "http://rubygems.org"
end
end

platforms :jruby do
gem "jruby-openssl"
end

gem 'rake', '0.9.2'
gem 'rdoc'
gem 'sqlite3-ruby', :require => 'sqlite3'
gem "cucumber", "1.0.0"
gem "aruba", "0.4.2"
gem "ZenTest", "~> 4.4.2"
gem 'ammeter', '~> 0.1'

platforms :jruby do
gem "jruby-openssl"
group :development, :test do
gem "cucumber", "1.0.0"
gem "aruba", "0.4.2"
gem "ZenTest", "~> 4.4.2"
end

# gem "webrat", "0.7.3"
# gem "capybara", "~> 0.4"
# gem "capybara", "1.0.0.beta1"
group :test do
gem 'ammeter', '~> 0.1'
end

group :development do
gem 'gherkin', '2.4.5'
Expand Down

0 comments on commit 40d3bf1

Please sign in to comment.