Sha256: 2cd400834d53e509c4484665e0af8e1698a6f0734c893a9ae173b8dcf1fcc137

Contents?: true

Size: 1.29 KB

Versions: 3

Compression:

Stored size: 1.29 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'capistrano/memcached/version'

Gem::Specification.new do |gem|
  gem.name          = "capistrano-memcached"
  gem.version       = Capistrano::Memcached::VERSION
  gem.authors       = ["Ruben Stranders"]
  gem.email         = ["r.stranders@gmail.com"]
  gem.description   = <<-EOF.gsub(/^\s+/, '')
    Capistrano tasks for automatic and sensible memcached configuration.

    Enables zero downtime deployments of Rails applications. Configs can be
    copied to the application using generators and easily customized.

    Works *only* with Capistrano 3+.

    Heavily inspired (i.e. copied and reworked) by https://github.com/bruno-/capistrano-unicorn-nginx
  EOF
  gem.summary       = "Capistrano tasks for automatic and sensible memcached configuration."
  gem.homepage      = "https://github.com/rhomeister/capistrano-memcached"

  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.1"
  gem.add_dependency "sshkit", ">= 1.2.0"

  gem.add_development_dependency "rake"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
capistrano-memcached-1.2.0 capistrano-memcached.gemspec
capistrano-memcached-1.1.0 capistrano-memcached.gemspec
capistrano-memcached-1.0.0 capistrano-memcached.gemspec