template/%name%.gemspec.tt in microgem-1.0.0 vs template/%name%.gemspec.tt in microgem-1.0.1
- old
+ new
@@ -6,14 +6,16 @@
gem.name = "<%= name %>"
gem.version = <%= module_name %>::VERSION
gem.summary = "<%= info %>"
gem.description = "<%= info %>"
gem.authors = ["<%= settings['author'] %>"]
- gem.email = "mail@janlelis.de"
+ gem.email = "<%= settings['email'] %>"
gem.homepage = "https://github.com/<%= settings['github'] %>/<%= github_name %>"
gem.license = "MIT"
- gem.files = Dir['{**/}{.*,*}'].select { |path| File.file?(path) }
+ gem.files = Dir['{**/}{.*,*}'].select{ |path| File.file?(path) && path !~ /^pkg/ }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
+
+ gem.required_ruby_version = '~> 2.0'
end