ruby_apk 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +8 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/ruby_apk.gemspec +2 -2
- metadata +3 -3
data/README.md
CHANGED
@@ -70,7 +70,10 @@ Android Apk static analysis library for Ruby.
|
|
70
70
|
|
71
71
|
# listing all class names
|
72
72
|
dex.classes do |cls| # cls is Android::Dex::ClassInfo
|
73
|
-
puts cls.name
|
73
|
+
puts "class: #{cls.name}"
|
74
|
+
cls.virtual_methods.each do |m| # Android::Dex::MethodInfo
|
75
|
+
puts "\t#{m.definition}" # puts method definition
|
76
|
+
end
|
74
77
|
end
|
75
78
|
|
76
79
|
#### Parse dex file directly
|
@@ -79,6 +82,10 @@ Android Apk static analysis library for Ruby.
|
|
79
82
|
|
80
83
|
|
81
84
|
## ChangeLog
|
85
|
+
### 0.4.1
|
86
|
+
* fix typo
|
87
|
+
* add document
|
88
|
+
|
82
89
|
### 0.4.0
|
83
90
|
* add resource parser
|
84
91
|
* enhance dex parser
|
data/Rakefile
CHANGED
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
17
|
gem.name = "ruby_apk"
|
18
|
-
gem.homepage = "
|
18
|
+
gem.homepage = "https://github.com/SecureBrain/ruby_apk/"
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{static analysis tool for android apk}
|
21
21
|
gem.description = %Q{static analysis tool for android apk}
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.1
|
data/ruby_apk.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "ruby_apk"
|
8
|
-
s.version = "0.4.
|
8
|
+
s.version = "0.4.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["SecureBrain"]
|
@@ -54,7 +54,7 @@ Gem::Specification.new do |s|
|
|
54
54
|
"spec/spec_helper.rb",
|
55
55
|
"spec/utils_spec.rb"
|
56
56
|
]
|
57
|
-
s.homepage = "
|
57
|
+
s.homepage = "https://github.com/SecureBrain/ruby_apk/"
|
58
58
|
s.licenses = ["MIT"]
|
59
59
|
s.require_paths = ["lib"]
|
60
60
|
s.rubygems_version = "1.8.24"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_apk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -167,7 +167,7 @@ files:
|
|
167
167
|
- spec/ruby_apk_spec.rb
|
168
168
|
- spec/spec_helper.rb
|
169
169
|
- spec/utils_spec.rb
|
170
|
-
homepage:
|
170
|
+
homepage: https://github.com/SecureBrain/ruby_apk/
|
171
171
|
licenses:
|
172
172
|
- MIT
|
173
173
|
post_install_message:
|
@@ -182,7 +182,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
182
182
|
version: '0'
|
183
183
|
segments:
|
184
184
|
- 0
|
185
|
-
hash:
|
185
|
+
hash: 3605376742814916476
|
186
186
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
187
187
|
none: false
|
188
188
|
requirements:
|