Sha256: 1a0581e55f269c16c15ed6603f7497dfe93be66fac08a6bd99f507711b0ee5a5
Contents?: true
Size: 884 Bytes
Versions: 2
Compression:
Stored size: 884 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ignorefile/version' Gem::Specification.new do |spec| spec.name = 'ignorefile' spec.version = IgnoreFile::VERSION spec.authors = ['John Manero'] spec.email = ['john.manero@gmail.com'] spec.summary = 'Compile a set of ignore statements from files and code' spec.description = IO.read(File.expand_path('../README.md', __FILE__)) rescue '' spec.homepage = 'https://github.com/jmanero/ignorefile' spec.license = 'MIT' spec.files = `git ls-files`.split("\n") spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) } spec.test_files = spec.files.grep(/^(test|spec|features)\//) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.7' spec.add_development_dependency 'thor-scmversion', '1.7.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ignorefile-1.1.0 | ignorefile.gemspec |
ignorefile-1.0.0 | ignorefile.gemspec |