Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
voloko committed Oct 4, 2010
1 parent db0e98c commit 4b46bb6
Showing 1 changed file with 5 additions and 15 deletions.
20 changes: 5 additions & 15 deletions twitter-stream.gemspec
Expand Up @@ -5,11 +5,11 @@

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Vladimir Kolesnikov"]
s.date = %q{2010-09-30}
s.date = %q{2010-10-05}
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,11 +27,10 @@ Gem::Specification.new do |s|
"spec/twitter/json_stream.rb",
"twitter-stream.gemspec"
]
s.has_rdoc = true
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.1}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Twitter realtime API client}
s.test_files = [
"spec/spec_helper.rb",
Expand All @@ -41,30 +40,21 @@ Gem::Specification.new do |s|

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
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"])
s.add_runtime_dependency(%q<roauth>, [">= 0.0.2"])
s.add_development_dependency(%q<rspec>, [">= 1.2.8"])
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_runtime_dependency(%q<roauth>, [">= 0.0.2"])
s.add_development_dependency(%q<rspec>, [">= 1.2.8"])
else
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_dependency(%q<roauth>, [">= 0.0.2"])
s.add_dependency(%q<rspec>, [">= 1.2.8"])
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_dependency(%q<roauth>, [">= 0.0.2"])
s.add_dependency(%q<rspec>, [">= 1.2.8"])
end
else
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_dependency(%q<roauth>, [">= 0.0.2"])
s.add_dependency(%q<rspec>, [">= 1.2.8"])
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
s.add_dependency(%q<roauth>, [">= 0.0.2"])
s.add_dependency(%q<rspec>, [">= 1.2.8"])
end
end

0 comments on commit 4b46bb6

Please sign in to comment.