README.md in gollum-lib-3.0.0 vs README.md in gollum-lib-4.0.0

- old
+ new

@@ -1,11 +1,11 @@ gollum lib -- A wiki built on top of Git ======================================== -[![Gem Version](https://badge.fury.io/rb/gollum-lib.png)](http://rubygems.org/gems/gollum-lib) -[![Build Status](https://travis-ci.org/gollum/gollum-lib.png)](https://travis-ci.org/gollum/gollum-lib) -[![Dependency Status](https://gemnasium.com/gollum/gollum-lib.png)](https://gemnasium.com/gollum/gollum-lib) +[![Gem Version](https://badge.fury.io/rb/gollum-lib.svg)](http://badge.fury.io/rb/gollum-lib) +[![Build Status](https://travis-ci.org/gollum/gollum-lib.svg?branch=master)](https://travis-ci.org/gollum/gollum-lib) +[![Dependency Status](https://gemnasium.com/gollum/gollum-lib.svg)](https://gemnasium.com/gollum/gollum-lib) ## DESCRIPTION [Gollum](https://github.com/gollum/gollum) is a simple wiki system built on top of Git that powers GitHub Wikis. @@ -41,11 +41,11 @@ In order to use the various formats that Gollum supports, you will need to separately install the necessary dependencies for each format. You only need to install the dependencies for the formats that you plan to use. -* [ASCIIDoc](http://www.methods.co.nz/asciidoc/) -- `brew install asciidoc` on mac or `apt-get install -y asciidoc` on Ubuntu +* [AsciiDoc](http://www.methods.co.nz/asciidoc/) -- `gem install asciidoctor` * [Creole](http://wikicreole.org/) -- `gem install creole` * [Markdown](http://daringfireball.net/projects/markdown/) -- `gem install redcarpet` * [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown) -- `gem install github-markdown` * [Org](http://orgmode.org/) -- `gem install org-ruby` * [Pod](http://search.cpan.org/dist/perl/pod/perlpod.pod) -- `Pod::Simple::HTML` comes with Perl >= 5.10. Lower versions should install Pod::Simple from CPAN. @@ -103,11 +103,11 @@ page.format # => :markdown vsn = page.version -# => <Grit::Commit> +# => <Gollum::Git::Commit> vsn.id # => '3ca43e12377ea1e32ea5c9ce5992ec8bf266e3e5' ``` @@ -127,11 +127,11 @@ Get a list of versions for a given page: ```ruby vsns = wiki.page('page-name').versions -# => [<Grit::Commit, <Grit::Commit, <Grit::Commit>] +# => [<Gollum::Git::Commit, <Gollum::Git::Commit, <Gollum::Git::Commit>] vsns.first.id # => '3ca43e12377ea1e32ea5c9ce5992ec8bf266e3e5' vsns.first.authored_date @@ -152,10 +152,10 @@ file.raw_data # => "alert('hello');" file.version -# => <Grit::Commit> +# => <Gollum::Git::Commit> ``` Get a specific version of a given static file: ```ruby