rbytes 0.1.2 → 0.1.3

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: 240c05001c82217a6c81800227e8043364abf995559420377265e921bf8b30a6
4
- data.tar.gz: 44c8486ef55774b3fbf8bf6781dc17202e2b5e9a8f885fe7db8395ca7fa59e0c
3
+ metadata.gz: f3aaeb47c729c4b3246544749d77204d17ecd9b27319158770cd8047cbb4c284
4
+ data.tar.gz: 5d7da2c374643dad62d6047f406488ef092d7bb2f2464fc211a8fa35cd83f896
5
5
  SHA512:
6
- metadata.gz: d85b989709ffb1a3eb9a820516a5097bc87a6788b6384faa36ca00ec2608e9df7a366383826761b7938dfbcf6976b5335cfb90ce1d667af61c1c957fa88b6ec1
7
- data.tar.gz: 149d5ec020537aaedb78c5d17d6dd9e56f75d33493b22ec6f12b1679515065f672e9bb91859a726bb90ee38766ec5ed3a61f4ffb08801e4fd315bc9be22e28c8
6
+ metadata.gz: e288e3f5c61130bdc676ca3a8bf14e40e6c796366283c27b7067e3588057bf516a3d160cca8547216f91f805d614c5e646453f84382bd528f2d1973c0b8dffe4
7
+ data.tar.gz: 7b539e851f07d83a897477413c8ed4f1b2f399b985523085d037c123df6c01285de54702bd1c0392be146a7a7424f3654245641efbdd068f89c8f5d9776713fb
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 0.1.3 (2023-03-20)
6
+
7
+ - Fix preparing dummy to alwasy set destination.
8
+
5
9
  ## 0.1.2 (2023-03-20)
6
10
 
7
11
  - Add missing `rbytes` executable to the gemspec.
@@ -88,14 +88,15 @@ module RubyBytes
88
88
  dummy = self.class.dummy_app
89
89
  return unless dummy
90
90
 
91
- return if @dummy_prepared
92
-
93
91
  raise ArgumentError, "Dummy app must be a directory" unless File.directory?(dummy)
94
92
 
95
93
  tmp_dummy_path = File.join(TMP_DIR, "dummy")
94
+ self.destination = tmp_dummy_path
95
+
96
+ return if @dummy_prepared
97
+
96
98
  FileUtils.rm_rf(tmp_dummy_path) if File.directory?(tmp_dummy_path)
97
99
  FileUtils.cp_r(dummy, tmp_dummy_path)
98
- self.destination = tmp_dummy_path
99
100
 
100
101
  if block_given?
101
102
  Dir.chdir(tmp_dummy_path) { yield }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyBytes # :nodoc:
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbytes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Dementyev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-20 00:00:00.000000000 Z
11
+ date: 2023-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor