itools 0.4.3 → 0.4.4
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/Gemfile.lock +1 -1
- data/lib/itools/class_unuse_finder.rb +2 -2
- data/lib/itools/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf986decbad0ed49addbd9bd7b4803672ef2c20f3294241cc41b9d4fea16b134
|
|
4
|
+
data.tar.gz: 067a550adab2380e1647ff685a888b3140c129604f8673ce20ff68a0fe5e235a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37c3d384f42d7119c41eef5464171e8d0edf00c331d21aa46eedaa19cce88bb1e70fc5140c8ff519ead685ebe1db29eee92d62bc66524b40de55fadbe09cb578
|
|
7
|
+
data.tar.gz: 604cd0e1e17f128dc1724e2943454687c09c93dff02cd50eae8b14a917fc054b7af1773f40a44faab060d8fd9009817a02f8b132d5d39bb7481fe994ec6b1c2e
|
data/Gemfile.lock
CHANGED
|
@@ -16,7 +16,7 @@ module Itools
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
if File.extname(path).eql?(".h")
|
|
19
|
-
ff_result =
|
|
19
|
+
ff_result = ClassFindResult.new(File.basename(path,".h"),path)
|
|
20
20
|
@classes << ff_result
|
|
21
21
|
end
|
|
22
22
|
end
|
|
@@ -118,7 +118,7 @@ module Itools
|
|
|
118
118
|
|
|
119
119
|
# ------------------------查找结果类------------------------
|
|
120
120
|
|
|
121
|
-
class
|
|
121
|
+
class ClassFindResult
|
|
122
122
|
attr_accessor :fr_name, :fr_path
|
|
123
123
|
def initialize(temp_name,temp_path)
|
|
124
124
|
@fr_name = temp_name
|
data/lib/itools/version.rb
CHANGED