Sha256: 8d09c92f066153e38cf54cd6cb50a9d3227811245a9ab1b1358e4fa1b8668b02

Contents?: true

Size: 943 Bytes

Versions: 7

Compression:

Stored size: 943 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'giteaucrat'
  spec.version       = Giteaucrat::VERSION
  spec.authors       = ['Alexander Semyonov']
  spec.email         = %w(al@semyonov.us)
  spec.description   = %q{Automatically update copyright messages using git}
  spec.summary       = %q{The Git bureaucrat}
  spec.homepage      = 'http://github.com/alsemyonov/giteaucrat'
  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 = %w(lib)

  spec.add_dependency 'thor'
  spec.add_dependency 'grit'

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'rake'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
giteaucrat-0.0.7 giteaucrat.gemspec
giteaucrat-0.0.6 giteaucrat.gemspec
giteaucrat-0.0.5 giteaucrat.gemspec
giteaucrat-0.0.4 giteaucrat.gemspec
giteaucrat-0.0.3 giteaucrat.gemspec
giteaucrat-0.0.2 giteaucrat.gemspec
giteaucrat-0.0.1 giteaucrat.gemspec