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 +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/touch_erb/cli.rb +1 -1
- data/lib/touch_erb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66334ce3ca7da87f2ccf9ad099268ea1c65ff7cc4ef22ced4b23d321a5d9fa7c
|
|
4
|
+
data.tar.gz: f59506ce8cf9fe6dc6f767a85d15573c4e3c8746076c3be6d293ccf0b0dc21fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
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(
|
|
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
|
data/lib/touch_erb/version.rb
CHANGED