Sha256: d297c9a9777c05c2a867ca13cb9aa4e83130d9e9fa50068225f1fc5a4358f534
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 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 = 'File versioning to save all files that you need a ' \ 'backup' 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 = 'Expat' 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.4 | lookfile.gemspec |