Sha256: 03ff9db05cc64f8418747d146991ef197df288e1cd8bdafd82bfa886d7e7b0b2

Contents?: true

Size: 1.01 KB

Versions: 9

Compression:

Stored size: 1.01 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%>]
  spec.description   = %q{TODO: Write a gem description}
  spec.summary       = %q{TODO: Write a gem summary}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  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"
<% if config[:test] -%>
  spec.add_development_dependency "<%=config[:test]%>"
<% end -%>
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
bundler-1.4.0.pre.2 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.4.0.pre.1 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.3.5 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.3.4 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.3.3 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.3.2 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.3.1 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.3.0 lib/bundler/templates/newgem/newgem.gemspec.tt
bundler-1.3.0.pre.8 lib/bundler/templates/newgem/newgem.gemspec.tt