middleman-deploy/middleman-deploy.gemspec

28 lines
993 B
Ruby
Raw Normal View History

2012-08-20 06:38:16 +02:00
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
2012-08-20 19:52:29 +02:00
require "middleman-deploy/pkg-info"
2012-08-20 06:38:16 +02:00
Gem::Specification.new do |s|
2012-08-20 19:52:29 +02:00
s.name = Middleman::Deploy::PACKAGE
s.version = Middleman::Deploy::VERSION
2012-08-20 06:38:16 +02:00
s.platform = Gem::Platform::RUBY
2012-11-14 00:29:47 +01:00
s.authors = ["Tom Vaughan"]
2012-08-20 19:52:29 +02:00
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
2013-05-31 01:19:42 +02:00
s.license = "MIT"
2012-08-20 06:38:16 +02:00
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"]
2012-11-08 16:45:57 +01:00
2012-08-20 06:38:16 +02:00
# The version of middleman-core your extension depends on
s.add_runtime_dependency("middleman-core", [">= 3.0.0"])
2012-11-08 16:45:57 +01:00
2012-08-20 06:38:16 +02:00
# Additional dependencies
2012-11-08 16:45:57 +01:00
s.add_runtime_dependency("ptools")
2013-06-08 22:46:43 +02:00
s.add_runtime_dependency("net-sftp")
2012-08-20 06:38:16 +02:00
end