trackler 2.0.0.10 → 2.0.1.0
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/CHANGELOG.md +4 -0
- data/lib/trackler/track.rb +2 -1
- data/lib/trackler/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: 81ae3637f5f3d42296e823f94812c81668d7810c
|
|
4
|
+
data.tar.gz: 9651d8a472651fb84914d1893efe32be4e02b9a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba199ee4d48f9df1a6c3fab44aff5560ff56cb8b7ebcfb25cacb77c687700736328e2259f3408e6445b89e4817c32d71988c0ccbc6d2f21f5e72248656f67ea2
|
|
7
|
+
data.tar.gz: 3e0d68d8cb59b2a26266664ed358b7b1fbc26b5fd69c71b630dd5268da82f0cfe4e2a0d6dc25c594abffb589b45270e00c347b43337be90cd12fd5b76821ca45
|
data/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,10 @@ The changelog will not be updated for content updates.
|
|
|
15
15
|
## Next Release
|
|
16
16
|
* **Your contribution here**
|
|
17
17
|
|
|
18
|
+
## v2.0.1.0 (2016-11-25)
|
|
19
|
+
|
|
20
|
+
* Make track documentation accessible via messages.
|
|
21
|
+
|
|
18
22
|
## v2.0.0.0 (2016-10-22)
|
|
19
23
|
|
|
20
24
|
* Fix domain concept confusion on Tracks. **Backwards incompatible**
|
data/lib/trackler/track.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
require 'json'
|
|
2
2
|
require 'pathname'
|
|
3
3
|
require 'org-ruby'
|
|
4
|
+
require 'ostruct'
|
|
4
5
|
require_relative 'file_bundle'
|
|
5
6
|
|
|
6
7
|
module Trackler
|
|
@@ -80,7 +81,7 @@ module Trackler
|
|
|
80
81
|
end
|
|
81
82
|
|
|
82
83
|
def docs
|
|
83
|
-
Hash[TOPICS.zip(TOPICS.map { |topic| document_contents(topic) })]
|
|
84
|
+
OpenStruct.new( Hash[TOPICS.zip(TOPICS.map { |topic| document_contents(topic) })] )
|
|
84
85
|
end
|
|
85
86
|
|
|
86
87
|
def img(file_path)
|
data/lib/trackler/version.rb
CHANGED