WikiCreole 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/Changelog +4 -0
  2. data/README +1 -0
  3. data/lib/wiki_creole.rb +2 -1
  4. metadata +1 -1
data/Changelog CHANGED
@@ -1,3 +1,7 @@
1
+ 2008-12-12 (0.1.2)
2
+ * Made the usage more clear by adding the "require 'rubygems'" before
3
+ the require 'wiki_creole' command
4
+
1
5
  2008-12-12 (0.1.1)
2
6
  * Added the version and date to the wiki_creole.rb file
3
7
  * Added the Rakefile and tests to the built gem
data/README CHANGED
@@ -5,6 +5,7 @@
5
5
  ri WikiCreole
6
6
 
7
7
  == Synopsis
8
+ require 'rubygems'
8
9
  require 'wiki_creole'
9
10
  xhtml = WikiCreole.creole_parse(creole_markup_string)
10
11
 
data/lib/wiki_creole.rb CHANGED
@@ -5,11 +5,12 @@
5
5
  # Author:: Gordon McCreight (mailto:wikicreole.to.gordon@mccreight.com)
6
6
  # Copyright:: Copyright (c) 2008 Gordon McCreight
7
7
  # License:: Distributes under the same terms as Ruby (see the LICENSE file)
8
- # Version:: 0.1.1
8
+ # Version:: 0.1.2
9
9
  # Date:: 2008-12-12
10
10
  #
11
11
  # == Synopsis
12
12
  # Most likely you'll just want to do:
13
+ # require 'rubygems'
13
14
  # require 'wiki_creole'
14
15
  # xhtml = WikiCreole.creole_parse(wiki_creole_markup)
15
16
  # If you want to override the default behaviors, make sure to look at the other
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: WikiCreole
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gordon McCreight