Sha256: 9fb1d221c9b5f74dd0c2760fa5d76ad31982591260d9fa89091f3483229afc19

Contents?: true

Size: 1.01 KB

Versions: 2

Compression:

Stored size: 1.01 KB

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","Ben Cates"]
  s.email       = ["thomas.david.vaughan@gmail.com"]
  s.homepage    = "http://tvaughan.github.com/middleman-deploy/"
  s.summary     = %q{Deploy a middleman built site over rsync or to github pages.}
  s.description = %q{Deploy a middleman built site over rsync or to github pages.}

  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("git", "~> 1.2.0")
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-deploy-0.0.5 middleman-deploy.gemspec
middleman-deploy-0.0.4 middleman-deploy.gemspec