Skip to content

Commit

Permalink
fixing gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jun 5, 2008
1 parent a00124c commit 04166dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
7 changes: 2 additions & 5 deletions meow.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
(in /Users/aaron/git/meow)
Gem::Specification.new do |s|
s.name = %q{meow}
s.version = "1.0.0"
Expand All @@ -13,15 +12,13 @@ Gem::Specification.new do |s|
s.email = ["aaronp@rubyforge.org"]
s.executables = ["meow"]
s.extra_rdoc_files = ["Manifest.txt"]
s.files = ["CHANGELOG.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "bin/meow", "lib/meow.rb", "test/helper.rb", "test/test_meow.rb", "vendor/hoe.rb"]
s.files = ["CHANGELOG.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "bin/meow", "lib/meow.rb", "meow.gemspec", "test/helper.rb", "test/test_meow.rb", "vendor/hoe.rb"]
s.has_rdoc = true
s.homepage = %q{http://meow.rubyforge.org/}
s.rdoc_options = ["--main", "README.txt"]
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{meow}
s.rubygems_version = %q{1.1.1}
s.summary = %q{Send Growl notifications via Ruby.}
s.test_files = ["test/test_meow.rb"]

s.add_dependency(%q<hoe>, [">= 1.5.1"])
end
4 changes: 1 addition & 3 deletions vendor/hoe.rb
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,6 @@ def initialize(name, version) # :nodoc:
hoe_deps.each do |pkg, vers|
extra_deps << [pkg, vers]
end
else
extra_deps << ['hoe', ">= #{VERSION}"] unless hoe_deps.has_key? name
end

define_tasks
Expand Down Expand Up @@ -453,7 +451,7 @@ def with_config # :nodoc:
dirs = Dir['{lib,ext}']
s.require_paths = dirs unless dirs.empty?

s.rdoc_options = ['--main', 'README.txt']
s.rdoc_options = ['--main', self.readme]
s.extra_rdoc_files = s.files.grep(/txt$/)
s.has_rdoc = true

Expand Down

0 comments on commit 04166dc

Please sign in to comment.