Skip to content
This repository has been archived by the owner on Nov 12, 2021. It is now read-only.

Commit

Permalink
correct gems require
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Ponovarev committed Aug 20, 2013
1 parent eaa074e commit f0d8010
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
8 changes: 2 additions & 6 deletions Gemfile
@@ -1,6 +1,2 @@
source :rubygems

group :development do
gem 'mocha'
gem 'test-unit'
end
source :rubygems
gemspec
21 changes: 11 additions & 10 deletions openstack.gemspec
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.files = [
"COPYING",
"README.rdoc",
"VERSION",
"lib/openstack/version.rb",
"lib/openstack.rb",
"lib/openstack/compute/address.rb",
"lib/openstack/compute/connection.rb",
Expand Down Expand Up @@ -55,18 +55,19 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<mocha>, [">= 0"])
s.add_development_dependency(%q<test-unit>, [">= 0"])
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_development_dependency('mocha')
s.add_development_dependency('rake')
s.add_development_dependency('test-unit')
s.add_runtime_dependency('json')
else
s.add_dependency(%q<mocha>, [">= 0"])
s.add_dependency(%q<test-unit>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency('mocha')
s.add_dependency('test-unit')
s.add_dependency('json')
end
else
s.add_dependency(%q<mocha>, [">= 0"])
s.add_dependency(%q<test-unit>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency('mocha')
s.add_dependency('test-unit')
s.add_dependency('json')
end
end

0 comments on commit f0d8010

Please sign in to comment.