Sha256: 7361f6b60a7ec0c0aa6da078bd952b0c3eb5f545d5cf068d1c37824aebec190c

Contents?: true

Size: 993 Bytes

Versions: 6

Compression:

Stored size: 993 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "middleman-deploy/pkg-info"

Gem::Specification.new do |s|
  s.name        = Middleman::Deploy::PACKAGE
  s.version     = Middleman::Deploy::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Tom Vaughan"]
  s.email       = ["thomas.david.vaughan@gmail.com"]
  s.homepage    = "http://github.com/tvaughan/middleman-deploy"
  s.summary     = Middleman::Deploy::TAGLINE
  s.description = Middleman::Deploy::TAGLINE
  s.license     = "MIT"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  # The version of middleman-core your extension depends on
  s.add_runtime_dependency("middleman-core", [">= 3.0.0"])

  # Additional dependencies
  s.add_runtime_dependency("ptools")
  s.add_runtime_dependency("net-sftp")
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
middleman-deploy-0.2.4 middleman-deploy.gemspec
middleman-deploy-0.2.3 middleman-deploy.gemspec
middleman-deploy-0.2.2 middleman-deploy.gemspec
middleman-deploy-0.2.1 middleman-deploy.gemspec
middleman-deploy-0.2.0 middleman-deploy.gemspec
middleman-deploy-0.1.4 middleman-deploy.gemspec