app_generators/newgem_simple/templates/Rakefile in newgem-1.4.1 vs app_generators/newgem_simple/templates/Rakefile in newgem-1.5.0
- old
+ new
@@ -2,27 +2,21 @@
require 'rake/gempackagetask'
require 'rubygems/specification'
require 'date'
require 'spec/rake/spectask'
-GEM = "<%= name %>"
-GEM_VERSION = "0.0.1"
-AUTHOR = "Your Name"
-EMAIL = "Your Email"
-HOMEPAGE = "http://example.com"
-SUMMARY = "A gem that provides..."
-
spec = Gem::Specification.new do |s|
- s.name = GEM
- s.version = GEM_VERSION
+ s.name = "<%= name %>"
+ s.version = "0.0.1"
+ s.author = "Your Name"
+ s.email = "Your Email"
+ s.homepage = "http://example.com"
+ s.description = s.summary = "A gem that provides..."
+
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
s.summary = SUMMARY
- s.description = s.summary
- s.author = AUTHOR
- s.email = EMAIL
- s.homepage = HOMEPAGE
# Uncomment this to add a dependency
# s.add_dependency "foo"
s.require_path = 'lib'
\ No newline at end of file