Sha256: ebebaf0ea07f9b5eb772407d2fcf4975d4cf188477bb48048e6f162cbd4c1375

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

#encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jekyll-gh-pages/version'

Gem::Specification.new do |gem|
  gem.name          = "jekyll-gh-pages"
  gem.version       = JekyllGhPages::VERSION
  gem.authors       = ["Ryo Chikazawa"]
  gem.email         = ["chikathreesix@gmail.com"]
  gem.summary       = %q{Deploy Jekyll sites to Github Pages easily}
  gem.description   = %q{Inspired by middleman-gh-pages, Jekyll Github Pages helps deploying Jekyll site to github gh-pages branch. However Github Pages basically supports Jekyll, they have a lot of restrictions. So you might want to use github pages just as a host for static pages. This gem provides rake tasks that automate the process of deploying a Jekyll site to Github Pages.}
  gem.homepage      = "https://github.com/chikathreesix/jekyll-gh-pages"
  gem.license       = 'MIT'

  gem.files         = `git ls-files -z`.split("\x0")
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_dependency 'rake', '> 0.9.3'
  gem.add_development_dependency "bundler", "~> 1.6"
  gem.add_development_dependency "rspec"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-gh-pages-0.1.0 jekyll-gh-pages.gemspec
jekyll-gh-pages-0.0.1 jekyll-gh-pages.gemspec