middleman-deploy/middleman-deploy.gemspec

26 lines
1.0 KiB
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-08-30 05:50:23 +02:00
s.authors = ["Tom Vaughan","Ben Cates"]
2012-08-20 19:52:29 +02:00
s.email = ["thomas.david.vaughan@gmail.com"]
s.homepage = "http://tvaughan.github.com/middleman-deploy/"
2012-10-04 20:22:16 +02:00
s.summary = %q{Deploy a middleman built site over rsync or via git (e.g. gh-pages on github).}
s.description = %q{Deploy a middleman built site over rsync or via git (e.g. gh-pages on github).}
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"]
# The version of middleman-core your extension depends on
s.add_runtime_dependency("middleman-core", [">= 3.0.0"])
# Additional dependencies
2012-08-30 05:50:23 +02:00
s.add_runtime_dependency("git", "~> 1.2.0")
2012-08-20 06:38:16 +02:00
end