Skip to content

Commit

Permalink
prep for new release
Browse files Browse the repository at this point in the history
* update readme
* update changelog
* update version
  • Loading branch information
cpjolicoeur committed Jun 9, 2011
1 parent 541f3f8 commit 8f00f3d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG
@@ -1,3 +1,10 @@
== 0.3.0 - 2011/06/08

* added option for annotating routes
- :routes => true (false by default)
* added options for annotating tests and fixtures
- :tests => true (false by default)

== 0.2.0 - 2011/05/21 == 0.2.0 - 2011/05/21


* Add option for placement of annotations * Add option for placement of annotations
Expand Down
12 changes: 12 additions & 0 deletions README.rdoc
Expand Up @@ -48,6 +48,18 @@ You can customize the placement of the annotations with (default is 'before'):
guard 'annotate', :position => 'before|after' do guard 'annotate', :position => 'before|after' do
... ...
end end

You can choose to also annotate your routes file with (default is false):

guard 'annotate', :routes => true do
...
end

You can annotate your tests and fixtures files with (default is false):

guard 'annotate', :tests => true do
...
end


== Development == Development


Expand Down
2 changes: 1 addition & 1 deletion lib/guard/annotate/version.rb
@@ -1,6 +1,6 @@
# encoding: utf-8 # encoding: utf-8
module Guard module Guard
module AnnotateVersion module AnnotateVersion
VERSION = "0.2.0" VERSION = "0.3.0"
end end
end end

0 comments on commit 8f00f3d

Please sign in to comment.