atosl 0.0.2 → 0.0.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 +4 -4
- data/README.md +5 -1
- data/atosl.gemspec +1 -1
- data/lib/atosl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fe68ea341a98416ab99ec6620b0749d5b475a7b
|
|
4
|
+
data.tar.gz: 4e259ef73a5ecf49249e3118a9e2f17b57788096
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 197b1bcac45052bbb9fd5618aedb1fa1c172fc20e705025a261db8e228dd987ccfd641802a9bd82048697df87e410048136d5e51a65f5f799759ae663596ada0
|
|
7
|
+
data.tar.gz: 14b6b34a8256812d7af648ef5433a62269f6d1bbb4a7ed46cfc1879604864c694354ca602f44b4dc2837f2cf414d5e45e0a5d8cbb842c11170915937abdad10f
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Atosl
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
atosl is used for converting binary addresses within a macho file to symbols for Linux platform.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -20,6 +20,10 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
Usage: atosl --arch architecture -o executable -a [address,address,...]
|
|
22
22
|
|
|
23
|
+
## Example
|
|
24
|
+
|
|
25
|
+
atosl --arch armv7s -o ~/res/CrashTest3Dwarf.thin -a 0x0000b1e7,0x123123
|
|
26
|
+
|
|
23
27
|
## Reference
|
|
24
28
|
|
|
25
29
|
[Original](https://github.com/renoqiu/atosl "atosl").
|
data/atosl.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["dechao.qiu@gmail.com"]
|
|
11
11
|
spec.summary = %q{atos for Linux.}
|
|
12
12
|
spec.description = %q{atosl is used for converting binary addresses within a macho file to symbols.}
|
|
13
|
-
spec.homepage = "https://github.com/renoqiu/
|
|
13
|
+
spec.homepage = "https://github.com/renoqiu/atosl_ruby"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/atosl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: atosl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Reno Qiu
|
|
@@ -86,7 +86,7 @@ files:
|
|
|
86
86
|
- lib/atosl.rb
|
|
87
87
|
- lib/atosl/version.rb
|
|
88
88
|
- test/test_atosl.rb
|
|
89
|
-
homepage: https://github.com/renoqiu/
|
|
89
|
+
homepage: https://github.com/renoqiu/atosl_ruby
|
|
90
90
|
licenses:
|
|
91
91
|
- MIT
|
|
92
92
|
metadata: {}
|