Sha256: 5ba53cadeadbb13c241463f37dc62df5425ff38268aeb37732fd8ed83ccf4676

Contents?: true

Size: 866 Bytes

Versions: 2

Compression:

Stored size: 866 Bytes

Contents

# -*- encoding: utf-8 -*-

require File.dirname(__FILE__) + "/lib/<%= path %>/version"

Gem::Specification.new do |gem|
  gem.name          = "<%= name %>"
  gem.version       = <%= module_name %>::VERSION
  gem.summary       = "<%= info %>"
  gem.description   = "<%= info %>"
  gem.authors       = ["<%= settings['author'] %>"]
  gem.email         = ["<%= settings['email'] %>"]
  gem.homepage      = "https://github.com/<%= settings['github'] %>/<%= github_name %>"
  gem.license       = "MIT"

  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.metadata      = { "rubygems_mfa_required" => "true" }

  gem.required_ruby_version = "~> 2.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
microgem-1.1.2 template/%name%.gemspec.tt
microgem-1.1.1 template/%name%.gemspec.tt