github_markup => github-markup
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:46:22 -0800
M
README.md
→
README.md
@@ -57,7 +57,7 @@
Installation ----------- - gem install github_markup --source=http://gemcutter.org + gem install github-markup --source=http://gemcutter.org Usage@@ -83,6 +83,6 @@ 5. Create an [Issue][1] with a link to your branch
6. Enjoy a refreshing Diet Coke and wait -[r2h]: http://github.com/defunkt/github_markup/tree/master/lib/github/commands/rest2html -[r2hc]: http://github.com/defunkt/github_markup/tree/master/lib/github/markups.rb#L13 -[1]: http://github.com/defunkt/github_markup/issues +[r2h]: http://github.com/defunkt/github-markup/tree/master/lib/github/commands/rest2html +[r2hc]: http://github.com/defunkt/github-markup/tree/master/lib/github/markups.rb#L13 +[1]: http://github.com/defunkt/github-markup/issues
M
Rakefile
→
Rakefile
@@ -15,11 +15,11 @@ require 'jeweler'
$LOAD_PATH.unshift 'lib' require 'github/markup/version' Jeweler::Tasks.new do |gemspec| - gemspec.name = "github_markup" + gemspec.name = "github-markup" gemspec.summary = "The code we use to render README.your_favorite_markup" gemspec.description = "The code we use to render README.your_favorite_markup" gemspec.email = "chris@ozmm.org" - gemspec.homepage = "http://github.com/defunkt/github_markup" + gemspec.homepage = "http://github.com/defunkt/github-markup" gemspec.authors = ["Chris Wanstrath"] gemspec.version = GitHub::Markup::Version end@@ -42,7 +42,7 @@ task :publish => [ :test, :gemspec, :build ] do
system "git tag v#{GitHub::Markup::Version}" system "git push origin v#{GitHub::Markup::Version}" system "git push origin master" - system "gem push pkg/github_markup-#{GitHub::Markup::Version}.gem" + system "gem push pkg/github-markup-#{GitHub::Markup::Version}.gem" system "git clean -fd" #exec "rake pages" end