Skip to content

Commit

Permalink
add eventmachine dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
voloko committed Oct 14, 2009
1 parent 6a462f5 commit 5b65d8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -17,6 +17,7 @@ begin
gemspec.email = "voloko@gmail.com"
gemspec.homepage = "http://github.com/voloko/twitter-stream"
gemspec.authors = ["Vladimir Kolesnikov"]
gemspec.add_dependency("eventmachine", [">= 0.12.8"])
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
Expand Down
9 changes: 6 additions & 3 deletions twitter-stream.gemspec
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = %q{twitter-stream}
s.version = "0.1.2"
s.version = "0.1.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Vladimir Kolesnikov"]
s.date = %q{2009-10-12}
s.date = %q{2009-10-14}
s.description = %q{Simple Ruby client library for twitter streaming API. Uses EventMachine for connection handling. Adheres to twitter's reconnection guidline. JSON format only.}
s.email = %q{voloko@gmail.com}
s.extra_rdoc_files = [
Expand All @@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/voloko/twitter-stream}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.4}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Twitter realtime API client}
s.test_files = [
"spec/spec_helper.rb",
Expand All @@ -40,8 +40,11 @@ Gem::Specification.new do |s|
s.specification_version = 3

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

0 comments on commit 5b65d8c

Please sign in to comment.