folder_template.gemspec in folder_template-1.0.0 vs folder_template.gemspec in folder_template-1.0.1

- old
+ new

@@ -11,18 +11,19 @@ require_relative 'lib/folder_template/version.rb' Gem::Specification.new do |spec| spec.name = 'folder_template' spec.version = FolderTemplate::VERSION - spec.authors = ["Marc-Antoine Argenton"] - spec.email = ["maargenton.dev@gmail.com"] + spec.authors = ['Marc-Antoine Argenton'] + spec.email = ['maargenton.dev@gmail.com'] spec.summary = "Simple and generic folder structure template engine" spec.description = %q{ FolderTemplate is a minimalistic template engine that generates files and folders structure from a template folder layout. It includes a simple variable expansion syntax, automatically injects variables for filename and basename, and can optionally append content to existing files. }.gsub( /\s+/, ' ').strip - spec.homepage = "" + spec.homepage = 'https://github.com/marcus999/folder_template' + spec.metadata = { 'source_code_uri' => 'https://github.com/marcus999/folder_template'} spec.files = Dir['[A-Z]*', 'rakefile.rb', '*.gemspec'].reject { |f| f =~ /.lock/ } spec.files += Dir['bin/**', 'lib/**/*.rb', 'test/**/*.rb', 'spec/**/*.rb', 'features/**/*.rb'] spec.files += Dir['test_data/**/*'] spec.files += Dir['templates/**/*']