Sha256: c54c57514a2d676fccaee65d28c6ef8e6fa1f90e982916f923b1221e071cef40

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

# encoding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'napkin/version'

Gem::Specification.new do |spec|
  spec.name         = 'napkin'
  spec.version      = Napkin::VERSION.to_s.gsub('-', '.')
  spec.platform     = Gem::Platform::RUBY
  spec.date         = '2014-07-28'
  spec.summary      = 'Jenkins build setup and runner'
  spec.description  = 'Simplifies the setup and preparation of job runs'
  spec.authors      = ['Aaron Daniel']
  spec.email        = 'ops@liftopia.com'
  spec.homepage     = 'https://github.com/liftopia/napkin'
  spec.license      = 'MIT'
  spec.files        = `git ls-files`.split("\n")
  spec.executables  = spec.files.grep(/^bin\//) { |f| File.basename(f) }
  spec.test_files   = spec.files.grep(/^(test|spec|features)\//)
  spec.require_path = 'lib'

  {
    'pry'     => '~> 0.10.0',
    'rubocop' => '~> 0.24.1'
  }.each_pair do |dep, ver|
    spec.add_development_dependency(dep, ver)
  end

  {
    'semantic' => '~> 1.3.0',
    'thor'     => '~> 0.19.1',
    'veronic'  => '=  0.0.31'
  }.each_pair do |dep, ver|
    spec.add_dependency(dep, ver)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
napkin-0.0.1.pre.1 napkin.gemspec