Sha256: 3afc3927c75708b85bcd828ad490f98fc9380597030943685505eb0e604702a7

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

Contents

# coding: utf-8

#Naming utils, git utils, and default boilerplate
require 'gemspec'

#This is a place to put custom overrides to Gemspec.boilerplate
begin; require_relative 'gemspec.rb'; rescue LoadError; end

Gem::Specification.new do |s|

  #Name is the name of the project root directory
  s.name           = Gemspec.base_dirname(__FILE__)

  Gemspec.boilerplate(s)

  s.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."

  #####Must change
  s.summary       = %q{TODO: Write a summary}
  s.description   = %q{TODO: Write a description}
  s.licenses      = %w[MIT]


  #####Unlikely to change
  s.email         = [ `git config user.email` ]
  s.homepage      = "https://github.com/#{`git config github.username`}/#{s.name}.git"
  $? == 0 or s.homepage = nil
  ###################################

  #Dependencies
  s.add_development_dependency 'rake', '~> 10.4'
  s.add_development_dependency 'minitest-documentation'

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gemspec-0.2.5 share/gemspec/templates/bare/gemspec.gemspec
gemspec-0.2.3 share/gemspec/templates/bare/gemspec.gemspec
gemspec-0.2.2 share/gemspec/templates/bare/gemspec.gemspec