Sha256: 668c96223d414733638ae1dcb5f6da992ce839b7f85c7b5e9017688b9feeb234

Contents?: true

Size: 1017 Bytes

Versions: 1

Compression:

Stored size: 1017 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name = 'gistory'
  spec.version = Gistory::VERSION
  spec.authors = ['Sergio Medina']
  spec.email = ['medinasergio@gmail.com']

  spec.summary = 'Gistory: Know exactly when a gem was updated in your Gemfile.lock'
  spec.description = 'Gistory: Know exactly when a gem was updated in your Gemfile.lock'
  spec.homepage = 'https://www.github.com/serch/gistory'

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir = 'exe'
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_dependency 'bundler', '~> 1.14' # FIXME: what is the minimum bundler version I need?
  spec.add_dependency 'colorize'

  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'minitest', '~> 5.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gistory-0.1.0 gistory.gemspec