提交 5515a18a 编写于 作者: D Dan Gebhardt

Expanded meta-data in gemspec to include author, email, etc.; Defaults include...

Expanded meta-data in gemspec to include author, email, etc.; Defaults include "TODO" to prevent gems from being built without review.
上级 d482cf8b
# Provide a simple gemspec so you can easily use your # Provide a simple gemspec so you can easily use your
# project in your rails apps through git. # project in your rails apps through git.
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "<%= name %>" s.name = "<%= name %>"
s.summary = "Insert <%= camelized %> summary." s.version = "0.0.1"
s.description = "Insert <%= camelized %> description." 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"] s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
<% unless options.skip_test_unit? -%> <% unless options.skip_test_unit? -%>
s.test_files = Dir["test/**/*"] s.test_files = Dir["test/**/*"]
<% end -%> <% end -%>
s.version = "0.0.1"
end end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册