all repos — markup @ 85e53f125eae17f889d91f8337b4b50a4ea3a1ca

The code we use to render README.your_favorite_markup

github_markup => github-markup
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:46:22 -0800
commit

85e53f125eae17f889d91f8337b4b50a4ea3a1ca

parent

19cf832689f02ff290ac94c4d685dcf0b3816e12

2 files changed, 7 insertions(+), 7 deletions(-)

jump to
M README.mdREADME.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 RakefileRakefile

@@ -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