Sha256: 3a88047c4b37ebfb0966210ce941346358ab33b9c4d958ea516ccd38fab2ca53
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'lookfile/version' Gem::Specification.new do |spec| spec.name = 'lookfile' spec.version = Lookfile::VERSION spec.authors = ['Luciano Prestes Cavalcanti'] spec.email = ['lucianopcbr@gmail.com'] spec.summary = 'Version all files that you need' spec.description = 'Version files usage on day-to-day can be cansative ' \ 'and exaustive, mainly because that files are on ' \ "diferent folders, and group there it's a hard work " \ ',therefore, the people does not can version that ' \ "file. With this gem it's can change, because this " \ 'gem can group all files that you need in a ' \ 'repository, and version all these files with a ' \ 'single command.' spec.homepage = 'https://github.com/LucianoPC/lookfile' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'bin' spec.executables << 'lookfile' spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.12' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lookfile-0.1.1 | lookfile.gemspec |