tps_reporter 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c22490f7154cf24378d1b0d5a378056ff3fd154f
4
- data.tar.gz: 91b513b016205015bad2ba93a66ac483a7153fbf
3
+ metadata.gz: 03ea58ca429e75041b42ccc50c6d18b3a85631f8
4
+ data.tar.gz: fda6800b011ff0e5d59f0623ca012e00750d66da
5
5
  SHA512:
6
- metadata.gz: 67425b5aad22a4555c22e6ee3517910affaafb7db5f4c6623784da0b0170101825354576695cbc49ad19b6c5ec9192b1e596ab523fbe3ef6a98e504ef70e42a3
7
- data.tar.gz: 9e666b0fc651f19df1611c919db454e8cca399939ee96925fcbf3559bd48d0cce73d6fdea5163e0ba7c0ebfa6c756cceef35ddf0c0ea42f53b45794d1f96d9c6
6
+ metadata.gz: c585aa40dcb38e9ac2d26e898424e7d29603abc3a95baab5b2e1c3d9f38887320d763e1e8aac183c3ee51bb65720671aee7bb00d0a69d3a14debc82c5cda3e9c
7
+ data.tar.gz: 89793ef06977e9b0605445130b516966a936ffb6a0b12d10698e9497857b8c0faa7be26d458fed1787e185de610ed2aac65009ab9a456245162263e39bbb6481
data/HISTORY.md CHANGED
@@ -1,3 +1,10 @@
1
+ v0.4.2 - Dec 03, 2013
2
+ ---------------------
3
+
4
+ * MIT license.
5
+ * Allow .tasks and .task extension.
6
+ * Fix Trello link support.
7
+
1
8
  v0.4.1 - Jul 22, 2013
2
9
  ---------------------
3
10
 
data/README.md CHANGED
@@ -3,8 +3,8 @@
3
3
  ![TPS report](http://i.imgur.com/AA7LNTR.png)
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 YAML files
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
@@ -122,7 +122,7 @@ private
122
122
  end
123
123
 
124
124
  begin
125
- if fn.match(/\.taskpaper/)
125
+ if fn.match(/\.(taskpaper|tasks|task)/)
126
126
  TPS::TaskList.new :taskpaper => fn
127
127
  else
128
128
  TPS::TaskList.new :yaml => fn
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: task.trello_url, target: '_blank'}= "Trello"
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
@@ -1,5 +1,5 @@
1
1
  module TPS
2
2
  def self.version
3
- "0.4.1"
3
+ "0.4.2"
4
4
  end
5
5
  end
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.1
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-07-22 00:00:00.000000000 Z
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: []