Sha256: 98372ee5ff2801cabe02c18f7599ac96971158991d42d914f82a055061ce2e73
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/traquitana/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Eustaquio Rangel"] gem.email = ["eustaquiorangel@gmail.com"] gem.description = %q{Simple tool for deploy Rails apps} gem.summary = %q{Just a simple tool to deploy Rails apps with SSH and some shell scripts} gem.homepage = "http://github.com/taq/traquitana" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "traquitana" gem.require_paths = ["lib"] gem.version = Traquitana::VERSION gem.add_dependency("rubyzip" , [">= 1.0.0"]) gem.add_dependency("net-ssh" , [">= 0"]) gem.add_dependency("net-scp" , [">= 0"]) gem.add_dependency("highline", [">= 0"]) gem.license = "GPL-2.0" gem.signing_key = '/home/taq/.gemcert/gem-private_key.pem' gem.cert_chain = ['gem-public_cert.pem'] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
traquitana-0.1.2 | traquitana.gemspec |
traquitana-0.1.1 | traquitana.gemspec |
traquitana-0.1.0 | traquitana.gemspec |