Sha256: 01783e9db0a317dd30bab67c096a0fc88fab7edd6abbbf0c96589f8e874d0d1c
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
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.2' 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', '~> 1.0' spec.add_dependency 'colorize' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.8' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gistory-0.1.8 | gistory.gemspec |
gistory-0.1.7 | gistory.gemspec |