getto-elm-layout-router 0.0.4 → 0.0.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b0caeaeba02adcd650746ee0af231cf9acb7e4ab
4
- data.tar.gz: 37be442cbfceb3ece4fc2d3a48a74a91791c1015
3
+ metadata.gz: bfd60722b9b2ff5a609b7603978e16fa02a41fe2
4
+ data.tar.gz: 06ef25dd58cc28fbd3c713e4a985f94ec9dca187
5
5
  SHA512:
6
- metadata.gz: 11cb14495e4d0b3724cdffe8f774f07de6381c0a9450bd19d6271516d5fdd2d3dbef50e224c3aa98f3f869650e1a04ce3da902bc5759a9378c1db87b1fa292f1
7
- data.tar.gz: f4676a4af11636f4c2cb52c9b316b79816d3fc0713618c7585bdb506d2cb3ca51c709370de55ef6f37ce63474e0827e6bc3cadd2a8efd9f4a7ab117db5a3e5b9
6
+ metadata.gz: 570cabc22f13b7b7cba884099fa5c20fbcef4b2aa4dc1ccd56255d594f8d3f26a4c4d996f6e151d80e48a3f2c54b5db98b02aba0928452d2b4b2d5bb31b94de8
7
+ data.tar.gz: 229e36fc2d21cee91656e551527f292a58fdc2fca9dd1448cad9e8735e8ba936b7c83859830f5b34064519c545ad7cf51bbb58e5e551872ecaf7caf167bb2593
data/.envrc CHANGED
@@ -2,3 +2,5 @@ export APP_ROOT=$(pwd)
2
2
  export PATH=$APP_ROOT/bin:$PATH
3
3
 
4
4
  export DOCKER_WRAPPER_IMAGE_ruby=2.4.1
5
+
6
+ export GIT_RELEASE_VERSION_FILE=lib/getto/elm/layout/router/version.rb
@@ -0,0 +1,7 @@
1
+ # Changelog : 0.0.5
2
+
3
+ ## commits
4
+
5
+ * fix json encode when draw
6
+ * fix env
7
+ * Update README.md
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  [![Build Status](https://travis-ci.org/getto-systems/getto-elm-layout-router.svg?branch=master)](https://travis-ci.org/getto-systems/getto-elm-layout-router)
4
4
  [![Gem Version](https://badge.fury.io/rb/getto-elm-layout-router.svg)](https://badge.fury.io/rb/getto-elm-layout-router)
5
5
 
6
-
7
6
  router script for getto-elm-layout
8
7
 
9
8
  ## Installation
@@ -8,7 +8,7 @@ module Getto::Elm::Layout::Router
8
8
  end
9
9
 
10
10
  def draw(&block)
11
- File.write @output_file, build(&block)
11
+ File.write @output_file, JSON.generate(build(&block))
12
12
  end
13
13
  def build(&block)
14
14
  Container.new([],@app).instance_exec(&block)
@@ -2,7 +2,7 @@ module Getto
2
2
  module Elm
3
3
  module Layout
4
4
  module Router
5
- VERSION = "0.0.4"
5
+ VERSION = "0.0.5"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: getto-elm-layout-router
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - shun
@@ -77,6 +77,7 @@ files:
77
77
  - ".gitignore"
78
78
  - ".travis.yml"
79
79
  - CHANGELOG/0.0.4.md
80
+ - CHANGELOG/0.0.5.md
80
81
  - Gemfile
81
82
  - LICENSE
82
83
  - README.md