Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wycats/thor into link_file
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Nov 20, 2010
2 parents 0313721 + f8c0c5e commit 89a171a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions thor.gemspec
@@ -1,6 +1,8 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/thor/version', __FILE__)

extra_rdoc_files = ['CHANGELOG.rdoc', 'LICENSE', 'README.md', 'Thorfile']

Gem::Specification.new do |s|
s.add_development_dependency("bundler", "~> 1.0")
s.add_development_dependency("fakeweb", "~> 1.3")
Expand All @@ -13,12 +15,12 @@ Gem::Specification.new do |s|
s.authors = ['Yehuda Katz', 'José Valim']
s.description = %q{A scripting framework that replaces rake, sake and rubigen}
s.email = ['ruby-thor@googlegroups.com']
s.extra_rdoc_files = ['CHANGELOG.rdoc', 'LICENSE', 'README.md', 'Thorfile']
s.homepage = 'http://yehudakatz.com/2008/05/12/by-thors-hammer/'
s.extra_rdoc_files = extra_rdoc_files
s.homepage = 'http://github.com/wycats/thor'
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.summary = s.description
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.files = `git ls-files -- {bin,lib,spec}/*`.split("\n") + extra_rdoc_files
s.test_files = `git ls-files -- {spec}/*`.split("\n")
end

0 comments on commit 89a171a

Please sign in to comment.