trackler 1.0.2.1 → 1.0.3.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/fixtures/tracks/vehicles/config.json +9 -0
- data/lib/trackler/track.rb +10 -2
- data/lib/trackler/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83764e68f984ab4ced07ce2459ba09c07c562373
|
|
4
|
+
data.tar.gz: 315f85701be2188668aa37a69b9ae60ccf66e68a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6f9c3b3fca9ea2256d9d026f783982bd513723507bd46ad2c908d9cae261b97733959a9ec0fb6c936036a03a2b0d4dfbf12ed30053c1eaf089a8c6745494707
|
|
7
|
+
data.tar.gz: b3b3f21023ca3c2f9f64c78d33b4aee1c487c1f038538d652cb45e67dd5975c6a550945c3b29dbff904e03d172282f50b1e2e965030f38231d85dbda5d92178d
|
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
|
+
## v1.0.3.0 (2016-10-21)
|
|
19
|
+
|
|
20
|
+
* Add more granular states for track state
|
|
21
|
+
|
|
18
22
|
## v1.0.2.0 (2016-10-17)
|
|
19
23
|
|
|
20
24
|
* Add script to update submodules and bump version
|
data/lib/trackler/track.rb
CHANGED
|
@@ -33,6 +33,14 @@ module Trackler
|
|
|
33
33
|
!!config["active"]
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
+
def upcoming?
|
|
37
|
+
!active? && problems.length > 0
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def planned?
|
|
41
|
+
!active? && problems.length.zero?
|
|
42
|
+
end
|
|
43
|
+
|
|
36
44
|
def implementations
|
|
37
45
|
@implementations ||= Implementations.new(id, repository, problems, root)
|
|
38
46
|
end
|
|
@@ -125,7 +133,7 @@ module Trackler
|
|
|
125
133
|
end
|
|
126
134
|
|
|
127
135
|
def document_contents(topic)
|
|
128
|
-
filename =
|
|
136
|
+
filename = document_filename(topic)
|
|
129
137
|
case filename
|
|
130
138
|
when /\.md$/
|
|
131
139
|
File.read(filename)
|
|
@@ -136,7 +144,7 @@ module Trackler
|
|
|
136
144
|
end
|
|
137
145
|
end
|
|
138
146
|
|
|
139
|
-
def
|
|
147
|
+
def document_filename(topic)
|
|
140
148
|
path = File.join(dir, "docs", topic.upcase)
|
|
141
149
|
Dir.glob("%s.*" % path).sort.first
|
|
142
150
|
end
|
data/lib/trackler/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trackler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katrina Owen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -468,6 +468,7 @@ files:
|
|
|
468
468
|
- fixtures/tracks/shoes/config.json
|
|
469
469
|
- fixtures/tracks/shoes/hello-world/example.ext
|
|
470
470
|
- fixtures/tracks/shoes/hello-world/hello_world_test.ext
|
|
471
|
+
- fixtures/tracks/vehicles/config.json
|
|
471
472
|
- lib/trackler.rb
|
|
472
473
|
- lib/trackler/file_bundle.rb
|
|
473
474
|
- lib/trackler/implementation.rb
|