origen_updater 0.3.0 → 0.5.0
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/bin/fix_my_workspace +3 -3
- data/config/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 08dbf08960d217d5e452f8378f8df694ae045f26
|
4
|
+
data.tar.gz: a66cb51b66dc836e96ee2bd2d13b5912d0932539
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 290f4e7fd31a714f7dc7a695b0fdb7dda26ee7facf4df0fc39bb0de53860e4c5e4124ddb6f9ac6f40342a7f5ffbff04fefb2db027c4910b9dba65601611cef3a
|
7
|
+
data.tar.gz: 9c87d1eb3a251495af3acf3e2792534caa0b0936ab72a9bd88f714ff20922e9c31a5d5a587cecf395b52922c457b876997d0b8534b297307c176f892c4314ba6
|
data/bin/fix_my_workspace
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
$VERBOSE = nil # Don't care about world writable dir warnings and the like
|
3
3
|
|
4
4
|
if $_fix_my_workspace_version_check
|
5
|
-
$_fix_my_workspace_version = '0.
|
5
|
+
$_fix_my_workspace_version = '0.5.0'
|
6
6
|
else
|
7
7
|
require 'origen'
|
8
8
|
|
@@ -31,7 +31,7 @@ else
|
|
31
31
|
|
32
32
|
local_dir = File.join(local_gem_dir, Pathname.new(spec.gem_dir).relative_path_from(gem_dir))
|
33
33
|
FileUtils.mkdir_p local_dir
|
34
|
-
FileUtils.cp_r(spec.gem_dir, local_dir)
|
34
|
+
FileUtils.cp_r("#{spec.gem_dir}/.", local_dir)
|
35
35
|
|
36
36
|
local_file = Pathname.new(File.join(local_gem_dir, Pathname.new(spec.cache_file).relative_path_from(gem_dir)))
|
37
37
|
FileUtils.mkdir_p local_file.dirname
|
@@ -40,7 +40,7 @@ else
|
|
40
40
|
if spec.extension_dir && File.exist?(spec.extension_dir)
|
41
41
|
local_dir = File.join(local_gem_dir, Pathname.new(spec.extension_dir).relative_path_from(gem_dir))
|
42
42
|
FileUtils.mkdir_p local_dir
|
43
|
-
FileUtils.cp_r(spec.extension_dir, local_dir)
|
43
|
+
FileUtils.cp_r("#{spec.extension_dir}/.", local_dir)
|
44
44
|
end
|
45
45
|
|
46
46
|
local_file = Pathname.new(File.join(local_gem_dir, Pathname.new(spec.spec_file).relative_path_from(gem_dir)))
|
data/config/version.rb
CHANGED