Skip to content

Commit

Permalink
Generating the gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Bleigh committed Sep 22, 2009
1 parent 4b6faf8 commit 70dc21b
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 6 deletions.
9 changes: 3 additions & 6 deletions README.rdoc
Expand Up @@ -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
Expand All @@ -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.
73 changes: 73 additions & 0 deletions 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<rspec>, [">= 0"])
s.add_runtime_dependency(%q<yajl-ruby>, [">= 0.6.3"])
s.add_runtime_dependency(%q<daemons>, [">= 0"])
else
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yajl-ruby>, [">= 0.6.3"])
s.add_dependency(%q<daemons>, [">= 0"])
end
else
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yajl-ruby>, [">= 0.6.3"])
s.add_dependency(%q<daemons>, [">= 0"])
end
end

0 comments on commit 70dc21b

Please sign in to comment.