Skip to content

Commit

Permalink
Add additional checks in Rakefile for tags, prep for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
dekellum committed Feb 14, 2010
1 parent 9956b27 commit ad8bca7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion History.rdoc
@@ -1,2 +1,2 @@
=== 1.0.0 (TBD)
=== 1.0.0 (2010-2-13)
* Initial version
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -39,10 +39,11 @@ task :check_history_version do
t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
end
task :check_history_date do
t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]\)$/ )
t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
end

task :gem => [ :check_init_versions, :check_history_version ]
task :tag => [ :check_init_versions, :check_history_version, :check_history_date ]
task :push => [ :check_history_date ]

t.define_tasks

0 comments on commit ad8bca7

Please sign in to comment.