Sha256: 872bc2708db3524ea7cad23fb3f10fec4a0c8d490aab9e414a2ab41753c113fc

Contents?: true

Size: 970 Bytes

Versions: 1

Compression:

Stored size: 970 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$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.4"
  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.licenses = ["MIT"]

  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", "~> 2.0"
  spec.add_dependency "colorize"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gistory-0.4.0 gistory.gemspec