tps_reporter 0.4.1 → 0.4.2
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/HISTORY.md +7 -0
- data/README.md +11 -2
- data/bin/tps +1 -1
- data/data/index.haml +1 -1
- data/lib/tps/version.rb +1 -1
- data/tps_reporter.gemspec +1 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03ea58ca429e75041b42ccc50c6d18b3a85631f8
|
|
4
|
+
data.tar.gz: fda6800b011ff0e5d59f0623ca012e00750d66da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c585aa40dcb38e9ac2d26e898424e7d29603abc3a95baab5b2e1c3d9f38887320d763e1e8aac183c3ee51bb65720671aee7bb00d0a69d3a14debc82c5cda3e9c
|
|
7
|
+
data.tar.gz: 89793ef06977e9b0605445130b516966a936ffb6a0b12d10698e9497857b8c0faa7be26d458fed1787e185de610ed2aac65009ab9a456245162263e39bbb6481
|
data/HISTORY.md
CHANGED
data/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|

|
|
4
4
|
|
|
5
5
|
We often need to make regular reports of things done for our projects at work. I
|
|
6
|
-
hate doing these by hand. This tool lets us build these reports from
|
|
7
|
-
[such as this][sample]:
|
|
6
|
+
hate doing these by hand. This tool lets us build these reports from [TaskPaper]
|
|
7
|
+
files [such as this][sample]:
|
|
8
8
|
|
|
9
9
|
``` yaml
|
|
10
10
|
Version 1:
|
|
@@ -145,5 +145,14 @@ Old YAML syntax
|
|
|
145
145
|
The old (v0.3.0) YAML syntax is still supported, see the [v0.3.0 readme] for
|
|
146
146
|
more info.
|
|
147
147
|
|
|
148
|
+
License
|
|
149
|
+
-------
|
|
150
|
+
|
|
151
|
+
© 2013, Rico Sta. Cruz. Released under the [MIT License].
|
|
152
|
+
|
|
153
|
+
[My site](http://ricostacruz.com) (ricostacruz.com) -
|
|
154
|
+
[Twitter](http://twitter.com/rstacruz) (@rstacruz)
|
|
155
|
+
|
|
148
156
|
[v0.3.0 readme]: http://github.com/rstacruz/tps_reporter/blob/v0.3.0/README.md
|
|
149
157
|
[TaskPaper]: http://www.hogbaysoftware.com/products/taskpaper
|
|
158
|
+
[MIT License]: http://www.opensource.org/licenses/mit-license.php
|
data/bin/tps
CHANGED
data/data/index.haml
CHANGED
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
- if task.pivotal_id
|
|
431
431
|
%a.meta{href: task.pivotal_url, target: '_blank'}= "PT ##{task.pivotal_id}"
|
|
432
432
|
- if task.trello_id
|
|
433
|
-
%a.meta{href:
|
|
433
|
+
%a.meta{href: list.trello_board_url, target: '_blank'}= "Trello ##{task.trello_id}"
|
|
434
434
|
|
|
435
435
|
- if task.tags.any?
|
|
436
436
|
- task.tags.each do |tag|
|
data/lib/tps/version.rb
CHANGED
data/tps_reporter.gemspec
CHANGED
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.homepage = "http://github.com/rstacruz/tps_reporter"
|
|
11
11
|
s.files = `git ls-files`.strip.split("\n")
|
|
12
12
|
s.executables = Dir["bin/*"].map { |f| File.basename(f) }
|
|
13
|
+
s.license = 'MIT'
|
|
13
14
|
|
|
14
15
|
s.add_dependency "tilt", "~> 1.4.1"
|
|
15
16
|
s.add_dependency "haml", "~> 4.0.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tps_reporter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rico Sta. Cruz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tilt
|
|
@@ -113,7 +113,8 @@ files:
|
|
|
113
113
|
- test/tps_test.rb
|
|
114
114
|
- tps_reporter.gemspec
|
|
115
115
|
homepage: http://github.com/rstacruz/tps_reporter
|
|
116
|
-
licenses:
|
|
116
|
+
licenses:
|
|
117
|
+
- MIT
|
|
117
118
|
metadata: {}
|
|
118
119
|
post_install_message:
|
|
119
120
|
rdoc_options: []
|