Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/zip using symlinks option #19

Merged
merged 3 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 21 additions & 25 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
carthage_remote_cache (0.0.12)
carthage_remote_cache (0.0.13)
concurrent-ruby (~> 1.0.5)
rack (>= 2.0.6, < 3.1.0)
rest-client (~> 2.0.2)
Expand All @@ -12,9 +12,8 @@ GEM
specs:
coderay (1.1.3)
concurrent-ruby (1.0.5)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
ffi (1.15.5)
domain_name (0.6.20240107)
ffi (1.16.3)
formatador (1.1.0)
guard (2.14.2)
formatador (>= 0.2.4)
Expand All @@ -31,15 +30,15 @@ GEM
test-unit (~> 3.0)
http-cookie (1.0.5)
domain_name (~> 0.5)
listen (3.7.1)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
lumberjack (1.2.8)
lumberjack (1.2.10)
metaclass (0.0.4)
method_source (1.0.0)
mime-types (3.4.1)
method_source (1.1.0)
mime-types (3.5.2)
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mime-types-data (3.2024.0305)
mocha (1.3.0)
metaclass (~> 0.0.1)
mustermann (3.0.0)
Expand All @@ -49,38 +48,35 @@ GEM
notiffany (0.1.3)
nenv (~> 0.1)
shellany (~> 0.0)
power_assert (2.0.1)
pry (0.14.1)
power_assert (2.0.3)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
rack (2.2.8.1)
rack-protection (3.0.4)
rack (2.2.9)
rack-protection (3.0.6)
rack
rake (13.0.6)
rb-fsevent (0.11.1)
rake (13.2.1)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rerun (0.13.1)
rerun (0.14.0)
listen (~> 3.0)
rest-client (2.0.2)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
ruby2_keywords (0.0.5)
rufo (0.13.0)
rufo (0.17.1)
shellany (0.0.1)
sinatra (3.0.4)
sinatra (3.0.6)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
rack-protection (= 3.0.4)
rack-protection (= 3.0.6)
tilt (~> 2.0)
test-unit (3.2.9)
power_assert
thor (1.2.1)
tilt (2.0.11)
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
thor (1.3.1)
tilt (2.3.0)

PLATFORMS
ruby
Expand All @@ -97,4 +93,4 @@ DEPENDENCIES
test-unit (~> 3.2.7)

BUNDLED WITH
2.2.11
2.4.14
2 changes: 1 addition & 1 deletion lib/shell_wrapper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def dwarfdump(path)
end

def archive(input_paths, output_path)
sh("zip -r #{quote output_path} #{quote input_paths}")
sh("zip --symlinks -r #{quote output_path} #{quote input_paths}")
end

def unpack(archive_path)
Expand Down
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.0.12"
VERSION = "0.0.13"
Loading