Sha256: eebaaf8a510d41d464bb3494bcb40d89290730e66ce6b25d3ce71a4f79d441f0

Contents?: true

Size: 1.63 KB

Versions: 3

Compression:

Stored size: 1.63 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require '<%=config[:namespaced_path]%>/version'

Gem::Specification.new do |spec|
  spec.name          = <%=config[:name].inspect%>
  spec.version       = <%=config[:constant_name]%>::VERSION
  spec.authors       = [<%=config[:author].inspect%>]
  spec.email         = [<%=config[:email].inspect%>]

<%- if ::Gem::Requirement.new(">= 2.0").satisfied_by? ::Gem::Version.new(::Gem::VERSION) -%>
  spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."
  spec.required_rubygems_version = ">= 2.0"
<% end -%>

<%- if config[:ext] -%>
  spec.extensions    = ["ext/<%=config[:underscored_name]%>/extconf.rb"]
<%- end -%>
  spec.summary       = %q{TODO: Write a short summary, because Rubygems requires one.}
  spec.description   = %q{TODO: Write a longer description or delete this line.}
  spec.homepage      = "TODO: Put your gem's website or public repo URL here."
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> <%= Bundler::VERSION.split(".")[0..1].join(".") %>"
  spec.add_development_dependency "rake", "~> 10.0"
<%- if config[:ext] -%>
  spec.add_development_dependency "rake-compiler"
<%- end -%>
<%- if config[:test] -%>
  spec.add_development_dependency "<%=config[:test]%>"
<%- end -%>
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bundler-prehistoric-1.6.2.2 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-prehistoric-1.6.2.1 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-prehistoric-1.6.2 lib/bundler/templates/newgem/newgem.gemspec.tt