trackler 1.0.1.2 → 1.0.2.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 +5 -1
- data/bin/bump-content +2 -0
- data/lib/trackler/version.rb +1 -1
- data/lib/trackler.rb +9 -0
- 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: c4b30eaefbb351c8ef714775008502b2aced63e4
|
|
4
|
+
data.tar.gz: fad7e1fe3f60bf77f8dba2a29943d5883879bdb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 687e52a28282a639da3ce06437d443cdd820061ed6b3ffc0039af8a81fb792b7f85756b2e722ce89b8e46d9d8aabcbf9258585c37da9941bae95707e8455e8ad
|
|
7
|
+
data.tar.gz: 58f2ce2771cd42963976da5c35c3489575f47b336bf3c7078b31c79063c9a01ee616e3747f4ed6c11a2938a66f904877c2dbb2fbb2009898ea889712858542ae
|
data/CHANGELOG.md
CHANGED
|
@@ -13,9 +13,13 @@ The changelog will not be updated for content updates.
|
|
|
13
13
|
----------------
|
|
14
14
|
|
|
15
15
|
## Next Release
|
|
16
|
-
* Add script to update submodules and bump version
|
|
17
16
|
* **Your contribution here**
|
|
18
17
|
|
|
18
|
+
## v1.0.2.0 (2016-10-17)
|
|
19
|
+
|
|
20
|
+
* Add script to update submodules and bump version
|
|
21
|
+
* Invalidate the data caches when switching track data path
|
|
22
|
+
|
|
19
23
|
## v1.0.1.0 (2016-10-16)
|
|
20
24
|
|
|
21
25
|
Make the location of the track data configurable so we can use fixture
|
data/bin/bump-content
CHANGED
data/lib/trackler/version.rb
CHANGED
data/lib/trackler.rb
CHANGED
|
@@ -2,15 +2,24 @@ paths = Dir[File.expand_path('../trackler/**/*.rb', __FILE__)]
|
|
|
2
2
|
paths.each { |path| require path }
|
|
3
3
|
|
|
4
4
|
module Trackler
|
|
5
|
+
def self.reset
|
|
6
|
+
@path = nil
|
|
7
|
+
@implementations = nil
|
|
8
|
+
@problems = nil
|
|
9
|
+
@tracks = nil
|
|
10
|
+
end
|
|
11
|
+
|
|
5
12
|
def self.path
|
|
6
13
|
@path ||= Trackler::Path.root
|
|
7
14
|
end
|
|
8
15
|
|
|
9
16
|
def self.use_real_data
|
|
17
|
+
reset
|
|
10
18
|
@path = Trackler::Path.root
|
|
11
19
|
end
|
|
12
20
|
|
|
13
21
|
def self.use_fixture_data
|
|
22
|
+
reset
|
|
14
23
|
@path = Trackler::Path.fixtures
|
|
15
24
|
end
|
|
16
25
|
|