biopsy 0.1.1.alpha → 0.1.3.alpha
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/lib/biopsy/target.rb +4 -1
- data/lib/biopsy/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: 1ec90ab633f2918da2c0c171f817677c2173368c
|
|
4
|
+
data.tar.gz: 8e6c7456dc5bf2fa8cbb5a878471192f99a8a0fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 050d69fe396e21252bc2f688e102a20b49bce48b95bb70f642a7a7c10e59e243c6d7c0768154a5825b57bc6195ce47f597cf10a63cc5c7f28a802523fed15e50
|
|
7
|
+
data.tar.gz: bee88a6a7132af7954566bd43371e83172f182fea0270e7c91a8ad69eff9aa8ab631c92fd39a96f122ef26e56026db3992ed575ed3dbaad3a10ce89f25d28f52
|
data/lib/biopsy/target.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
1
3
|
module Biopsy
|
|
2
4
|
|
|
3
5
|
class TargetLoadError < Exception
|
|
@@ -11,6 +13,7 @@ module Biopsy
|
|
|
11
13
|
attr_accessor :options
|
|
12
14
|
attr_accessor :output
|
|
13
15
|
attr_accessor :name
|
|
16
|
+
attr_accessor :shortname
|
|
14
17
|
attr_reader :constructor_path
|
|
15
18
|
|
|
16
19
|
# load target with +name+.
|
|
@@ -113,7 +116,7 @@ module Biopsy
|
|
|
113
116
|
end
|
|
114
117
|
else
|
|
115
118
|
# present option to user
|
|
116
|
-
|
|
119
|
+
@options[param] = data
|
|
117
120
|
end
|
|
118
121
|
end
|
|
119
122
|
end
|
data/lib/biopsy/version.rb
CHANGED