JekyllDeploy

build gem license

Installation

Add this line to your application's Gemfile:

source 'https://rubygems.org'

group :jekyll_plugins do
  gem 'jekyll_deploy'
end

or for bleeding edge:

group :jekyll_plugins do
  gem 'jekyll_deploy', :git => 'https://github.com/choffmeister/jekyll_deploy.git', :branch => 'develop'
end

And then execute:

$ bundle

Usage

# _config.yml

# example for github pages
deployment:
  type: git
  repo: [email protected]:choffmeister/jekyll_deploy.git
  branch: gh-pages

# example for rsync
deployment:
  type: rsync
  host: myhost.com
  user: username
  directory: /var/www

Now run jekyll deploy

Contributing

  1. Fork it ( https://github.com/choffmeister/jekyll_deploy/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request