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

Use ruby-zip 2.0 #26

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

source "https://rubygems.org"

git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }

gemspec
19 changes: 19 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
PATH
remote: .
specs:
apktools (0.7.4)
rubyzip (~> 2.0)

GEM
remote: https://rubygems.org/
specs:
rubyzip (2.3.0)

PLATFORMS
ruby

DEPENDENCIES
apktools!

BUNDLED WITH
2.1.4
6 changes: 3 additions & 3 deletions apktools.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

Gem::Specification.new do |s|
s.name = 'apktools'
s.version = '0.7.3'
s.date = '2019-09-27'
s.version = '0.7.4'
s.date = '2020-07-02'
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please update this to the release date.

s.summary = 'APKTools'
s.description = 'Library to assist reading resource data out of Android APKs'
s.authors = ['Dave Smith']
Expand All @@ -30,5 +30,5 @@ Gem::Specification.new do |s|

s.executables << 'get_app_version.rb'
s.executables << 'read_manifest.rb'
s.add_runtime_dependency 'rubyzip', '~> 1.3'
s.add_runtime_dependency 'rubyzip', '~> 2.0'
end