chino 0.3.0 → 0.3.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. checksums.yaml +4 -4
  2. data/exe/chino +10 -0
  3. data/lib/chino/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f91f59298dcc9731e573d4ae31a4cef2fbfe92a8be2576ba9ee292b36edcf6d2
4
- data.tar.gz: 7e1c5d6ad750c8ff53fe5812309566107c3646d9eb270f3f5108328c00915bdb
3
+ metadata.gz: 793352b612410813d494c80db826750f4f310dcafdc7722510862354067ee0ed
4
+ data.tar.gz: ff569c457634e699d6c45696545a8955b1cbb20642d858e116fbe8896a4b2abb
5
5
  SHA512:
6
- metadata.gz: a984f2e6e0888f7b22bbd6246aeb443bdb393856a208401ed27704619f3b172bc7f8f34f302267ceb9f54a5def00adac2e062ac74b0ca5719ff2bd74f71cf6af
7
- data.tar.gz: a214ab011eaca08533a003dfad8bbc8f94f75b3d975e52dac2c6f7096c084fd6fc0af337542b4c94317cf70ec985415ef4ba21b489bb5318d69c31858a874333
6
+ metadata.gz: ae8438a03712059e53bd15e76b46ffaf4a7da7889ce3907bc0eff10c6d9ea9f04129350b4eedf9bf7362ae2c9171c75597a2ec8603467be713ec850fb87b9168
7
+ data.tar.gz: 384e69e185151f227fdef1c9e0627833cd23daf773d059872fb1fbe4ac6d3fc8470c790e27b0a99623220be65dcde440bc498e98b5d672b5c44239181cdd9493
data/exe/chino CHANGED
@@ -30,6 +30,11 @@ when 'build'
30
30
  puts "base_path: #{base_path}"
31
31
 
32
32
  Dir['./**/*.j'].each do |file|
33
+ # skip any hidden dirs
34
+ next if file.start_with?('./.')
35
+
36
+ puts "Process file: #{file}"
37
+
33
38
  cur_path = File.expand_path(file)
34
39
  rel_path = cur_path.sub(Regexp.new("^#{base_path}"), '')
35
40
 
@@ -38,6 +43,11 @@ when 'build'
38
43
  end
39
44
 
40
45
  Dir['./**/*.j.erb'].each do |file|
46
+ # skip any hidden dirs here
47
+ next if file.start_with?('./.')
48
+
49
+ puts "Process file: #{file}"
50
+
41
51
  cur_path = File.expand_path(file)
42
52
  rel_path = cur_path.sub(Regexp.new("^#{base_path}"), '').sub(/\.erb$/, "")
43
53
 
data/lib/chino/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Chino
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chino
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Siaw