jasonette-rails 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/lib/jasonette/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fda9259661d09209ae7d3517078f1679ff5ee80c
4
- data.tar.gz: 2bbcea06e94b6f34baa0deb1b6b941c3dd29e6e5
3
+ metadata.gz: 36d128b5e6103d2659007bd97005eabb0d58274d
4
+ data.tar.gz: d20d36df4dd0ec330cbf034aaddc79a2bceda37f
5
5
  SHA512:
6
- metadata.gz: 5cdf2b5f7c18619c602701100f9731053c8113bcd2b4c6025cd47385f61468e933fb91cf447302f442effba25fa9a7aefa4001c355e2d97a8a59e4d213efdf25
7
- data.tar.gz: edadd2a9b6912de4644762159c7d2b9002100ed80dab55ae31a327a12fe78ed975d0c290ff9818fe7eb32e026b243b51366cd4052107bb49651d5d5f3b8bcf84
6
+ metadata.gz: fb4a26ae1f047ddc21322216186beec6ca8e40e433447430869bce246c51b14f6c2e902c1a2cb5e3b260f7b25e72fc80ee183af3925b14839f0ec2b0f95578e9
7
+ data.tar.gz: 954180e875afda314936c982b9d01320115ae96763261d8f58086545113899f6402b0095c382e2718e04ca973cd021f723016772a99b3d6d8d1b3901d062d6d8
data/README.md CHANGED
@@ -45,6 +45,11 @@ Ruby scoping, esp. with meta-programming, so watch out (and help out)!
45
45
  This gem allows to to write the JSON structure expected by a Jasonette application in a much more powerful
46
46
  way than with Jbuilder alone.
47
47
 
48
+ There's a demo app published here: https://github.com/mwlang/jasonette-rails-demo/tree/gemified
49
+
50
+ The master branch has the traditional Jbuilder approach throughout. The gemified branch is built using the
51
+ extensions of this gem.
52
+
48
53
  For example:
49
54
 
50
55
  Here's how the "hello.json" demo JSON would be rendered with this gem:
@@ -1,3 +1,3 @@
1
1
  module Jasonette
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jasonette-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - mwlang