aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/plugin_new/templates/%name%.gemspec
blob: 15299ddb9fe2d1e8ac33a3c59c8865aa89efcc5e (plain) (blame)
1
2
3
4
5
6
7
8
9
# 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.files = Dir["{app,config,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
  s.version = "0.0.1"
end