From 70dc21b318dcfa63b97315bd036c61e5c9f72256 Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Tue, 22 Sep 2009 16:27:53 -0400 Subject: [PATCH] Generating the gemspec. --- README.rdoc | 9 ++---- tweetstream.gemspec | 73 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+), 6 deletions(-) create mode 100644 tweetstream.gemspec diff --git a/README.rdoc b/README.rdoc index 23d60cd..79acf83 100644 --- a/README.rdoc +++ b/README.rdoc @@ -64,11 +64,8 @@ as start, stop, and run. * Fork the project. * Make your feature addition or bug fix. -* Add tests for it. This is important so I don't break it in a - future version unintentionally. -* Commit, do not mess with rakefile, version, or history. - (if you want to have your own version, that is fine but - bump version in a commit by itself I can ignore when I pull) +* Add tests for it. This is important so I don't break it in a future version unintentionally. +* Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) * Send me a pull request. Bonus points for topic branches. == Contributors @@ -77,4 +74,4 @@ as start, stop, and run. == Copyright -Copyright (c) 2009 Intridea, Inc. See LICENSE for details. +Copyright (c) 2009 Intridea, Inc. (http://www.intridea.com/). See LICENSE for details. diff --git a/tweetstream.gemspec b/tweetstream.gemspec new file mode 100644 index 0000000..08ca5d9 --- /dev/null +++ b/tweetstream.gemspec @@ -0,0 +1,73 @@ +# Generated by jeweler +# DO NOT EDIT THIS FILE +# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec` +# -*- encoding: utf-8 -*- + +Gem::Specification.new do |s| + s.name = %q{tweetstream} + s.version = "0.1.0" + + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + s.authors = ["Michael Bleigh"] + s.date = %q{2009-09-22} + s.description = %q{TweetStream allows you to easily consume the Twitter Streaming API utilizing the YAJL Ruby gem.} + s.email = %q{michael@intridea.com} + s.extra_rdoc_files = [ + "LICENSE", + "README.rdoc" + ] + s.files = [ + ".document", + ".gitignore", + "LICENSE", + "README.rdoc", + "Rakefile", + "VERSION", + "lib/tracker.log", + "lib/tracker.rb", + "lib/tweetstream.rb", + "lib/tweetstream/client.rb", + "lib/tweetstream/daemon.rb", + "lib/tweetstream/hash.rb", + "lib/tweetstream/status.rb", + "lib/tweetstream/user.rb", + "spec/data/statuses.json", + "spec/spec.opts", + "spec/spec_helper.rb", + "spec/tweetstream/client_spec.rb", + "spec/tweetstream/hash_spec.rb", + "spec/tweetstream/status_spec.rb", + "spec/tweetstream_spec.rb" + ] + s.homepage = %q{http://github.com/intridea/tweetstream} + s.rdoc_options = ["--charset=UTF-8"] + s.require_paths = ["lib"] + s.rubygems_version = %q{1.3.5} + s.summary = %q{TweetStream is a simple wrapper for consuming the Twitter Streaming API.} + s.test_files = [ + "spec/spec_helper.rb", + "spec/tweetstream/client_spec.rb", + "spec/tweetstream/hash_spec.rb", + "spec/tweetstream/status_spec.rb", + "spec/tweetstream_spec.rb" + ] + + if s.respond_to? :specification_version then + current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION + s.specification_version = 3 + + if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then + s.add_development_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 0.6.3"]) + s.add_runtime_dependency(%q, [">= 0"]) + else + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0.6.3"]) + s.add_dependency(%q, [">= 0"]) + end + else + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0.6.3"]) + s.add_dependency(%q, [">= 0"]) + end +end