meta-record 1.0.12 → 1.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/metarecord/runner.rb +2 -2
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10e6a48e275c6f9eb8a9db81575904d8731b19337cf5ef03d1cbf5622d56ac03
4
- data.tar.gz: 1ac8ebc16b25797e893f5f846db2c42d4513128a7f91454ef4e961b8264b0be2
3
+ metadata.gz: d2a459ae8bfea29eeb256c9da188c13d48d29ef77c402dc05f5a54913a05d9bf
4
+ data.tar.gz: f5ba00fadc0cc603b70b2c9d1a13a4ae5fe96e82764d3dbc0876cbaef6c78237
5
5
  SHA512:
6
- metadata.gz: e663cb97199405dccef67addd85973bace227280cec5b83f315884af7b448b3b1217b1dbfa299854448d48cc9eca505ce41ce72686369dce883f24295064c1c0
7
- data.tar.gz: 570f0875ad928546c8dedca04f400fa6b5d0d349839eb3f0c5e462fc1ac3d33cd4f1b098a5f2be4b7bac12abed48483b8875cad0d5c8daea01c1fff983309c38
6
+ metadata.gz: a8a8814fe47220c18fe3e82cae38c0a2c8da2a19797e93ef83ba7b0a16da438a22ecb21d0faf7a26a61181ce9935ce3f9c9073db0ff4e8a29922734f3ece0969
7
+ data.tar.gz: 82a756725c203990ff958857ca01a9c5020d2275d7fa3c2af9fc6c13b874cdebeb9e3bc6c1c81bdab14800aa398164668a699fdb90830469ce874da2425178f7
@@ -33,7 +33,7 @@ module MetaRecordRunner
33
33
  Dir["#{@tmpdir}/**/*"].each do |tmp_file|
34
34
  next if File.directory? tmp_file
35
35
  new_path = "#{@output}/#{tmp_file[@tmpdir.size + 1..tmp_file.size]}"
36
- if (not File.exists?(new_path)) || File.read(new_path) != File.read(tmp_file)
36
+ if (not File.exist?(new_path)) || File.read(new_path) != File.read(tmp_file)
37
37
  puts "[metarecord] generated #{new_path}"
38
38
  `mkdir -p '#{File.dirname new_path}'`
39
39
  `cp '#{tmp_file}' '#{new_path}'`
@@ -46,7 +46,7 @@ module MetaRecordRunner
46
46
  Dir["#{@output}/#{input}/**/*"].each do |actual_file|
47
47
  next if File.directory? actual_file
48
48
  tmp_path = "#{@tmpdir}/#{@output[@output.size + 1..@output.size]}"
49
- if not File.exists?(tmp_path)
49
+ if not File.exist?(tmp_path)
50
50
  puts "[metarecord] removed #{actual_file}"
51
51
  `rm '#{actual_file}'`
52
52
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meta-record
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.12
4
+ version: 1.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Martin Moro