stars.gemspec in stars-0.4.0 vs stars.gemspec in stars-0.5.0

- old
+ new

@@ -1,72 +1,92 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command -# -*- encoding: utf-8 -*- - +## This is the rakegem gemspec template. Make sure you read and understand +## all of the comments. Some sections require modification, and others can +## be deleted if you don't need them. Once you understand the contents of +## this file, feel free to delete any comments that begin with two hash marks. +## You can find comprehensive Gem::Specification documentation, at +## http://docs.rubygems.org/read/chapter/20 Gem::Specification.new do |s| - s.name = %q{stars} - s.version = "0.4.0" - + s.specification_version = 2 if s.respond_to? :specification_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Zach Holman"] - s.date = %q{2010-12-24} - s.default_executable = %q{stars} - s.description = %q{Recent favstar faves on your command line.} - s.email = %q{github.com@zachholman.com} + s.rubygems_version = '1.3.5' + + ## Leave these as is they will be modified for you by the rake gemspec task. + ## If your rubyforge_project name is different, then edit it and comment out + ## the sub! line in the Rakefile + s.name = 'stars' + s.version = '0.5.0' + s.date = '2011-04-18' + s.rubyforge_project = 'stars' + + ## Make sure your summary is short. The description may be as long + ## as you like. + s.summary = "Recent stars on your command line." + s.description = "Twitter stars, Convore stars. On the command line." + + ## List the primary authors. If there are a bunch of authors, it's probably + ## better to set the email to an email list or something. If you don't have + ## a custom homepage, consider using your GitHub URL or the like. + s.authors = ["Zach Holman"] + s.email = 'github.com@zachholman.com' + s.homepage = 'https://github.com/holman/stars' + + ## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as + ## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb' + s.require_paths = %w[lib] + + ## This sections is only necessary if you have C extensions. + #s.require_paths << 'ext' + #s.extensions = %w[ext/extconf.rb] + + ## If your gem includes any executables, list them here. s.executables = ["stars"] - s.extra_rdoc_files = [ - "LICENSE", - "README.markdown" - ] - s.files = [ - ".document", - ".gitignore", - "LICENSE", - "README.markdown", - "Rakefile", - "VERSION", - "bin/stars", - "lib/stars.rb", - "lib/stars/client.rb", - "lib/stars/favstar.rb", - "lib/stars/formatter.rb", - "stars.gemspec", - "test/helper.rb", - "test/test_client.rb", - "test/test_favstar.rb", - "test/test_formatter.rb", - "test/test_stars.rb" - ] - s.homepage = %q{http://github.com/holman/stars} + s.default_executable = 'stars' + + ## Specify any RDoc options here. You'll want to add your README and + ## LICENSE files to the extra_rdoc_files list. s.rdoc_options = ["--charset=UTF-8"] - s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.7} - s.summary = %q{Recent favstar faves on your command line} - s.test_files = [ - "test/helper.rb", - "test/test_client.rb", - "test/test_favstar.rb", - "test/test_formatter.rb", - "test/test_stars.rb" - ] + s.extra_rdoc_files = %w[README.markdown LICENSE] - if s.respond_to? :specification_version then - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 3 + ## List your runtime dependencies here. Runtime dependencies are those + ## that are needed for an end user to actually USE your code. + s.add_dependency('httparty', [">= 0"]) + s.add_dependency('terminal-table', [">= 0"]) + s.add_dependency('nokogiri', [">= 0"]) + s.add_dependency('keep', ["~> 0.0.3"]) - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<httparty>, [">= 0"]) - s.add_runtime_dependency(%q<terminal-table>, [">= 0"]) - s.add_runtime_dependency(%q<nokogiri>, [">= 0"]) - else - s.add_dependency(%q<httparty>, [">= 0"]) - s.add_dependency(%q<terminal-table>, [">= 0"]) - s.add_dependency(%q<nokogiri>, [">= 0"]) - end - else - s.add_dependency(%q<httparty>, [">= 0"]) - s.add_dependency(%q<terminal-table>, [">= 0"]) - s.add_dependency(%q<nokogiri>, [">= 0"]) - end -end + ## List your development dependencies here. Development dependencies are + ## those that are only needed during development + s.add_development_dependency('mocha', "~> 0.9.9") + ## Leave this section as-is. It will be automatically generated from the + ## contents of your Git repository via the gemspec task. DO NOT REMOVE + ## THE MANIFEST COMMENTS, they are used as delimiters by the task. + # = MANIFEST = + s.files = %w[ + Gemfile + Gemfile.lock + LICENSE + README.markdown + Rakefile + bin/stars + lib/stars.rb + lib/stars/client.rb + lib/stars/config.rb + lib/stars/core_ext/string.rb + lib/stars/post.rb + lib/stars/services/convore.rb + lib/stars/services/favstar.rb + lib/stars/services/service.rb + stars.gemspec + test/examples/stars.yml + test/helper.rb + test/test_client.rb + test/test_config.rb + test/test_favstar.rb + test/test_post.rb + ] + # = MANIFEST = + + ## Test files will be grabbed from the file list. Make sure the path glob + ## matches what you actually use. + s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ } +end