Sha256: 36df22b296632c1dd1f20c9316b2c804d8eb2e609cdf412ab3b2439e1d7dc88b
Contents?: true
Size: 1.03 KB
Versions: 3
Compression:
Stored size: 1.03 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'capistrano/safe_deploy_to/version' Gem::Specification.new do |gem| gem.name = "capistrano-safe-deploy-to" gem.version = Capistrano::SafeDeployTo::VERSION gem.authors = ["Bruno Sutic"] gem.email = ["bruno.sutic@gmail.com"] gem.description = "Capistrano plugin that ensures the `deploy_to` deployment path exists and has the right permissions." gem.summary = "Capistrano plugin that ensures the `deploy_to` deployment path exists and has the right permissions." gem.homepage = "https://github.com/bruno-/capistrano-safe-deploy-to" gem.license = "MIT" 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.require_paths = ["lib"] gem.add_dependency "capistrano", ">= 3.0" gem.add_development_dependency "rake" end
Version data entries
3 entries across 3 versions & 1 rubygems