all repos — markup @ cbbaeda7ed1cd2a4f9f59598ebefaa3c8568494e

The code we use to render README.your_favorite_markup

Bump up to 0.7.7
Garen Torikian gjtorikian@gmail.com
Mon, 23 Sep 2013 18:20:15 -0700
commit

cbbaeda7ed1cd2a4f9f59598ebefaa3c8568494e

parent

1d189e7da7f82750bc2b9d8b326a50b9dff21925

3 files changed, 6 insertions(+), 3 deletions(-)

jump to
M .gitignore.gitignore

@@ -1,4 +1,5 @@

*.pyc +pkg/ bin .bundle Gemfile.lock
M github-markup.gemspecgithub-markup.gemspec

@@ -1,3 +1,5 @@

+require File.expand_path("../lib/github-markup", __FILE__) + ## This is the rakegem gemspec template. Make sure you read and understand ## all of the comments. Some sections require modification, and others can ## be deleted if you don't need them. Once you understand the contents of

@@ -13,8 +15,8 @@ ## Leave these as is they will be modified for you by the rake gemspec task.

## If your rubyforge_project name is different, then edit it and comment out ## the sub! line in the Rakefile s.name = 'github-markup' - s.version = '0.7.6' - s.date = '2013-09-12' + s.version = GitHub::Markup::VERSION + s.date = '2013-09-23' s.executables = ['github-markup'] ## Make sure your summary is short. The description may be as long
M lib/github-markup.rblib/github-markup.rb

@@ -1,6 +1,6 @@

module GitHub module Markup - VERSION = '0.7.6' + VERSION = '0.7.7' Version = VERSION end end