mustache_json 0.0.1 → 0.0.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/.gitignore +1 -0
  2. data/README.rdoc +8 -0
  3. data/VERSION +1 -1
  4. metadata +1 -1
data/.gitignore CHANGED
@@ -17,5 +17,6 @@ tmtags
17
17
  coverage
18
18
  rdoc
19
19
  pkg
20
+ *.gemspec
20
21
 
21
22
  ## PROJECT::SPECIFIC
data/README.rdoc CHANGED
@@ -4,6 +4,14 @@ The <tt>mustache_json</tt> gem provides a simple way to encode Mustaches
4
4
  into JSON for cross-compatibility with other Mustache rendering libraries
5
5
  such as mustache.js (http://github.com/janl/mustache.js).
6
6
 
7
+ == Installation
8
+
9
+ Mustache JSON is available as a gem on Gemcutter:
10
+
11
+ gem install mustache_json
12
+
13
+ == Usage
14
+
7
15
  It extends Mustache in a simple way such that all public instance methods
8
16
  declared in your Mustache will be automatically serialized into json when
9
17
  the <tt>#to_json</tt> method is called. Any context variables that have
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mustache_json
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bleigh