README.md in middleman-deploy-0.3.0 vs README.md in middleman-deploy-1.0.0
- old
+ new
@@ -3,11 +3,11 @@
Deploy your [Middleman](http://middlemanapp.com/) build via **rsync**, **ftp**, **sftp**, or **git** (e.g. [gh-pages on github](https://help.github.com/articles/creating-project-pages-manually)).
## Installation
```ruby
-gem 'middleman-deploy', '~> 3.0'
+gem 'middleman-deploy', '~> 1.0'
```
## Usage
```
@@ -144,25 +144,15 @@
deploy :production
end
end
```
- $ rake deploy:staging
- $ rake deploy:production
+```
+$ rake deploy:staging
+$ rake deploy:production
+```
-## Breaking Changes
-
-* `v0.1.0`
- - Removed the `--clean` command-line option. This option only applied to
- the rsync deploy method. The idea going forward is that command-line
- options must apply to all deploy methods. Options that are specific to a
- deploy method will only be available in `config.rb`.
- - Removed `deploy` from the `after_build` hook. This caused a `deploy` to
- be run each time `build` was called. This workflow never made
- sense. `deploy` was added to the `after_build` hook simply because it
- was available.
-
## Badges
[![Gem Version](http://img.shields.io/gem/v/middleman-deploy.svg)][gem]
[![Build Status](http://img.shields.io/travis/karlfreeman/middleman-deploy.svg)][travis]
[![Code Quality](http://img.shields.io/codeclimate/github/karlfreeman/middleman-deploy.svg)][codeclimate]
@@ -178,14 +168,12 @@
- Ruby 2.0.0
- Ruby 1.9.3
- [JRuby][jruby]
- [Rubinius][rubinius]
-## Thanks!
-
-A **BIG** thanks to [everyone who has contributed](https://github.com/tvaughan/middleman-deploy/graphs/contributors)! Almost all pull requests are accepted.
-
# Credits
+
+A **BIG** thanks to [everyone who has contributed](https://github.com/karlfreeman/middleman-deploy/graphs/contributors)! Almost all pull requests are accepted.
Inspiration:
- The rsync task in [Octopress](https://github.com/imathis/octopress)