forked from jhund/filterrific
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ coverage | |
rdoc | ||
pkg | ||
tmp | ||
doc | ||
log | ||
.yardoc | ||
measurements | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Workflow to Maintain This Gem | ||
|
||
1. Update code and commit it. | ||
2. Bump the version with one of the rake tasks: | ||
* @rake version:bump:patch@ 1.5.3 -> 1.5.4 | ||
* @rake version:bump:minor@ 1.5.3 -> 1.6.0 | ||
* @rake version:bump:major@ 1.5.3 -> 2.0.0 | ||
* @rake version:write MAJOR=2 MINOR=3 PATCH=6@ 1.5.3 -> 2.3.6 | ||
3. Add entry to CHANGELOG: | ||
* h1 for major release | ||
* h2 for minor release | ||
* h3 for patch release | ||
4. Release it. | ||
* @rake release@ | ||
* Optionally release it to [[Rubyforge]]: @rake rubyforge:release@ | ||
* Optionally release it to [[Gemcutter]]: @rake gemcutter:release@ | ||
5. Rinse and repeat |