Sha256: 344a666558e4c8f0018551adc5b896c1e646d8b013450bea4add09f49d179f8e

Contents?: true

Size: 866 Bytes

Versions: 1

Compression:

Stored size: 866 Bytes

Contents

# encoding: utf-8

$LOAD_PATH.unshift(File.expand_path('../lib/', __FILE__))
require 'nanoc/git/version'

Gem::Specification.new do |s|
  s.name        = 'nanoc-git'
  s.version     = Nanoc::Git::VERSION
  s.homepage    = 'http://nanoc.ws/'
  s.summary     = 'Git deployer for nanoc'
  s.description = 'Provides a git depoyer for nanoc'

  s.author  = 'Lifepillar'
  s.email   = 'github@lifepillar.org'
  s.license = 'MIT'

  s.required_ruby_version = '>= 1.9.3'

  s.files              = Dir['[A-Z]*'] +
                         Dir['{lib,test}/**/*'] +
                         [ 'nanoc-git.gemspec' ]
  s.require_paths      = [ 'lib' ]

  s.rdoc_options     = [ '--main', 'README.md' ]
  s.extra_rdoc_files = [ 'LICENSE', 'README.md', 'NEWS.md' ]

  s.add_runtime_dependency('nanoc', '>= 3.7.0', '< 4.0.0')
  s.add_development_dependency('bundler', '~> 1.5')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nanoc-git-1.0.0 nanoc-git.gemspec