README.md in middleman-deploy-0.2.3 vs README.md in middleman-deploy-0.2.4

- old
+ new

@@ -1,10 +1,14 @@ # middleman-deploy [![Gem Version](https://badge.fury.io/rb/middleman-deploy.png)](http://badge.fury.io/rb/middleman-deploy) Deploys a [middleman](http://middlemanapp.com/) built site via **rsync**, **ftp**, **sftp**, or **git** (e.g. gh-pages on github). +## Help! + +middleman-deploy needs a new maintainer. Please [create a GitHub issue](https://github.com/tvaughan/middleman-deploy/issues/new) if you're interested. Thanks! + ## Installation Add this to the Gemfile of the repository of your middleman site: ```ruby @@ -64,10 +68,11 @@ deploy.method = :git # Optional Settings # deploy.remote = "custom-remote" # remote name or git url, default: origin # deploy.branch = "custom-branch" # default: gh-pages # deploy.strategy = :submodule # commit strategy: can be :force_push or :submodule, default: :force_push + # deploy.commit_message = "custom-message" # commit message (can be empty), default: Automated commit at `timestamp` by middleman-deploy `version` end ``` If you use a remote name, you must first add it using `git remote add`. Run `git remote -v` to see a list of possible remote names. If you use a git url, @@ -135,10 +140,10 @@ ```ruby # Rakefile namespace :deploy do def deploy(env) puts "Deploying to #{env}" - exec "TARGET=#{env} bundle exec middleman deploy" + system "TARGET=#{env} bundle exec middleman deploy" end task :staging do deploy :staging end