xcactivitylog 0.2.2 → 0.2.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/VERSION +1 -1
- data/lib/xcactivitylog/objects.rb +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 302f15b4e2c755e0dd506b3aafb102cb211141206a1c97b1dff11240307b26e5
|
|
4
|
+
data.tar.gz: f0c90f6312c6c4e5ae37526b39f3426310d4a8463a62d68fef031aba6d8fbb33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cfbb133c25295f73cebe822ac3943fd04bb8ae84627d236cffa14f27cc55b36a32d65593ff64ee0211aeee01641770b6d6f31baad3561c9945828a6b39e08e2
|
|
7
|
+
data.tar.gz: 6e3883fe267006a351e0c1682e1f1620187b7e53af0fbfac2d40cf74a99dc056ed3d78d0dacda8fcfb837529fe85ed3284249f985f4d7fe6f5016ece29cc78cc
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.3
|
|
@@ -278,6 +278,7 @@ module XCActivityLog
|
|
|
278
278
|
URI::File.parse(document_url_string)
|
|
279
279
|
end
|
|
280
280
|
end
|
|
281
|
+
|
|
281
282
|
class DVTTextDocumentLocation < DVTDocumentLocation
|
|
282
283
|
attribute :starting_line_number, :int
|
|
283
284
|
attribute :starting_column_number, :int
|
|
@@ -288,6 +289,11 @@ module XCActivityLog
|
|
|
288
289
|
attributes.freeze
|
|
289
290
|
end
|
|
290
291
|
|
|
292
|
+
class DVTMemberDocumentLocation < DVTDocumentLocation
|
|
293
|
+
attribute :member, :string
|
|
294
|
+
attributes.freeze
|
|
295
|
+
end
|
|
296
|
+
|
|
291
297
|
class Xcode3ProjectDocumentLocation < DVTDocumentLocation
|
|
292
298
|
attributes.freeze
|
|
293
299
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcactivitylog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Giddins
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
91
|
- !ruby/object:Gem::Version
|
|
92
92
|
version: '0'
|
|
93
93
|
requirements: []
|
|
94
|
-
rubygems_version: 3.
|
|
94
|
+
rubygems_version: 3.4.19
|
|
95
95
|
signing_key:
|
|
96
96
|
specification_version: 4
|
|
97
97
|
summary: Parse Xcode's xcactivitylog files (and other SLF0-serialized files)
|