mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Expanded meta-data in gemspec to include author, email, etc.; Defaults include "TODO" to prevent gems from being built without review.
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
# Provide a simple gemspec so you can easily use your
|
||||
# project in your rails apps through git.
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "<%= name %>"
|
||||
s.summary = "Insert <%= camelized %> summary."
|
||||
s.description = "Insert <%= camelized %> description."
|
||||
s.name = "<%= name %>"
|
||||
s.version = "0.0.1"
|
||||
s.authors = ["TODO: Your name"]
|
||||
s.email = ["TODO: Your email"]
|
||||
s.homepage = "TODO"
|
||||
s.summary = "TODO: Summary of <%= camelized %>."
|
||||
s.description = "TODO: Description of <%= camelized %>."
|
||||
|
||||
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
|
||||
<% unless options.skip_test_unit? -%>
|
||||
s.test_files = Dir["test/**/*"]
|
||||
<% end -%>
|
||||
s.version = "0.0.1"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user