Sha256: 4a50c6d5690d78e32f99b504b9cc30a0a43fcee39527b5f66fc9571331cb4fb0

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "dk/version"

Gem::Specification.new do |gem|
  gem.name        = "dk"
  gem.version     = Dk::VERSION
  gem.authors     = ["Kelly Redding", "Collin Redding"]
  gem.email       = ["kelly@kellyredding.com", "collin.redding@me.com"]
  gem.summary     = "\"Why'd you name this repo dk?\" \"Don't know\" (this is some automated task runner thingy ala cap/rake)"
  gem.description = "\"Why'd you name this repo dk?\" \"Don't know\" (this is some automated task runner thingy ala cap/rake)"
  gem.homepage    = "https://github.com/redding/dk"
  gem.license     = 'MIT'

  gem.files         = `git ls-files`.split($/)
  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.add_development_dependency("assert", ["~> 2.16.3"])

  gem.add_dependency("much-plugin", ["~> 0.2.0"])
  gem.add_dependency("scmd",        ["~> 3.0.3"])
  gem.add_dependency("logsly",      ["~> 1.3.2"])

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dk-0.1.0 dk.gemspec