touch_erb 0.3.0 → 0.3.1

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
  SHA256:
3
- metadata.gz: 79424c1c87d84b01ba1fcd88fd9b997b0dcd91e0267de56e3f199ab4e544f5bb
4
- data.tar.gz: d3685fa00d08a8cc9affb53b8dd72a234d66713125f02ec7cc07052858cc7c01
3
+ metadata.gz: 66334ce3ca7da87f2ccf9ad099268ea1c65ff7cc4ef22ced4b23d321a5d9fa7c
4
+ data.tar.gz: f59506ce8cf9fe6dc6f767a85d15573c4e3c8746076c3be6d293ccf0b0dc21fa
5
5
  SHA512:
6
- metadata.gz: 136fe213550885833ed9d7cda18eb4c567e4e3c051f7952aed8c008d068da28d4b9953e3aa9cd56a18ff7a1da2db1e479b55bb9fbde09cac33dc5116fab4e5a2
7
- data.tar.gz: 448167cc7d531477a4befa144216e984abd32a330064bc7c22a9a6ba816574fb75c7e609d18641f8460a8079135c3844762ff2e7150bf541f1db49c999380552
6
+ metadata.gz: 7a9a33754047c2fbde15c9408c076c36ffba0e9f573bc417adf90347b7652de4280805857964da36fb6b16b838518d205a6c66b7ec7748c5472bb6ec1f415821
7
+ data.tar.gz: 87bddea57ed4119f3ee502e76378e9e6f4da217ff589b0263d7d3f3fccf04e0da1c48db803e12af15de6c6dc241907354cca117754f38d32cf17db09f6e0a0ec
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ### v0.3.1 (Thu Feb 21 02:59:35 2019 +0900)
2
+
3
+ - Generate CHANGELOG (Wed Feb 20 13:00:27 2019 +0900) [77bbb12](https://github.com/himanoa/touch_erb/commit/77bbb1278a934d4691615ddef786296ee8a9b8b7)
4
+ - chore(bugfix): Update gemfile.lock (Wed Feb 20 13:02:05 2019 +0900) [3982ff4](https://github.com/himanoa/touch_erb/commit/3982ff4dd2ed40c87a5d005a1b61276329d0378e)
5
+ - bugfix: Remove double quote from variable name (Thu Feb 21 02:58:07 2019 +0900) [84dfbd4](https://github.com/himanoa/touch_erb/commit/84dfbd4e078c54b35208a7f6ff60363fe05a9173)
6
+ - Release v0.3.1 (Thu Feb 21 02:59:35 2019 +0900) [9490210](https://github.com/himanoa/touch_erb/commit/94902100d4c3fe7d652b73c6900b57fc8b0eaf7c)
7
+
1
8
  ### v0.3.0 (Wed Feb 20 12:56:08 2019 +0900)
2
9
 
3
10
  - Merge pull request #17 from himanoa/implement-list (Mon Feb 18 09:22:38 2019 +0900) [97d9c79](https://github.com/himanoa/touch_erb/commit/97d9c79a6a60396561b80a5adf07946745d4755c)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- touch_erb (0.3.0)
4
+ touch_erb (0.3.1)
5
5
  thor (~> 0.20)
6
6
 
7
7
  GEM
data/lib/touch_erb/cli.rb CHANGED
@@ -37,7 +37,7 @@ module TouchErb
37
37
  FileUtils.touch(dist_name)
38
38
  else
39
39
  File.open(dist_name, 'w') do |f|
40
- f.write(ERB.new(@local_template_dir.find(template_name) || @template_dir.find("template_name") || "", nil, "%<>").result())
40
+ f.write(ERB.new(@local_template_dir.find(template_name) || @template_dir.find(template_name) || "", nil, "%<>").result())
41
41
  end
42
42
  end
43
43
  end
@@ -1,3 +1,3 @@
1
1
  module TouchErb
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: touch_erb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - himanoa