Skip to content

Commit

Permalink
fixed dependency problem with rosc gem
Browse files Browse the repository at this point in the history
  • Loading branch information
Macario committed Aug 7, 2009
1 parent 4f0beba commit 6e4ca1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $hoe = Hoe.spec 'scruby' do
self.rubyforge_name = self.name
self.extra_deps = [
['maca-arguments','>= 0.6'],
['maca-rosc', '>= 0.4.2']
['maca-rosc', '>= 0.0.1']
]

end
Expand Down
2 changes: 1 addition & 1 deletion lib/scruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
$:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))

module Scruby
VERSION = '0.2.1'
VERSION = '0.2.2'
end

require "scruby/core_ext/object"
Expand Down
8 changes: 4 additions & 4 deletions scruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{scruby}
s.version = "0.2.1"
s.version = "0.2.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Macario Ortega"]
Expand All @@ -27,16 +27,16 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<maca-arguments>, [">= 0.6"])
s.add_runtime_dependency(%q<maca-rosc>, [">= 0.4.2"])
s.add_runtime_dependency(%q<maca-rosc>, [">= 0.0.1"])
s.add_development_dependency(%q<hoe>, [">= 2.3.2"])
else
s.add_dependency(%q<maca-arguments>, [">= 0.6"])
s.add_dependency(%q<maca-rosc>, [">= 0.4.2"])
s.add_dependency(%q<maca-rosc>, [">= 0.0.1"])
s.add_dependency(%q<hoe>, [">= 2.3.2"])
end
else
s.add_dependency(%q<maca-arguments>, [">= 0.6"])
s.add_dependency(%q<maca-rosc>, [">= 0.4.2"])
s.add_dependency(%q<maca-rosc>, [">= 0.0.1"])
s.add_dependency(%q<hoe>, [">= 2.3.2"])
end
end

0 comments on commit 6e4ca1b

Please sign in to comment.