Sha256: 7354e65fee8f1405be8f6a4642d78d307bcdd3da2895f4604084bf3406c63098

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

# coding: utf-8
# frozen_string_literal: true
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.platform = Gem::Platform::RUBY
  spec.required_ruby_version = '>= 2.0.0'
  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.1 gistory.gemspec