Skip to content

Commit

Permalink
Fix gem version for EM
Browse files Browse the repository at this point in the history
  • Loading branch information
Sutto committed Sep 25, 2009
1 parent 676ca4d commit 9b43ec9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.executables = FileList["bin/*"].map { |f| File.basename(f) }
s.add_dependency "perennial", ">= 1.0.0.0"
s.add_dependency "eventmachine", ">= 0.12.9"
s.add_dependency "eventmachine", ">= 0.12.8"
s.add_dependency "json"
end

Expand Down
6 changes: 3 additions & 3 deletions marvin.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ working with IRC in an evented fashion fun and easy for all rubyists.}

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<perennial>, [">= 1.0.0.0"])
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.9"])
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_runtime_dependency(%q<json>, [">= 0"])
else
s.add_dependency(%q<perennial>, [">= 1.0.0.0"])
s.add_dependency(%q<eventmachine>, [">= 0.12.9"])
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_dependency(%q<json>, [">= 0"])
end
else
s.add_dependency(%q<perennial>, [">= 1.0.0.0"])
s.add_dependency(%q<eventmachine>, [">= 0.12.9"])
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_dependency(%q<json>, [">= 0"])
end
end

0 comments on commit 9b43ec9

Please sign in to comment.