pivotal_to_pdf 1.3.3 → 1.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +0 -1
- data/{CHANGELOG → CHANGELOG.md} +17 -0
- data/lib/pivotal_to_pdf/version.rb +1 -1
- data/pivotal_to_pdf.gemspec +1 -0
- metadata +5 -4
data/.travis.yml
CHANGED
data/{CHANGELOG → CHANGELOG.md}
RENAMED
@@ -1,28 +1,45 @@
|
|
1
|
+
v1.3.3
|
2
|
+
* Internal refactoring.
|
3
|
+
* BREAKING CHANGE: ```Story#label_text``` is renamed to ```Story#formatted_labels```
|
4
|
+
|
1
5
|
v1.1.0
|
2
6
|
* Add label command for printing stories matching any given label
|
7
|
+
|
3
8
|
v1.0.0
|
4
9
|
* Rename iteration command to current_iteration command
|
5
10
|
* Add iteration command for printing any given iterations
|
11
|
+
|
6
12
|
v0.9.1
|
7
13
|
* A bug fix where a nil description or name field will break the PDF generation
|
14
|
+
|
8
15
|
v0.9
|
9
16
|
* Added printing support for bold and italic fonts
|
10
17
|
* removed page number. Did not find it really useful
|
18
|
+
|
11
19
|
v0.8.2
|
12
20
|
* Used activeresource 3.0.9. 3.1.0 broke the pivotal API, it seems
|
21
|
+
|
13
22
|
v0.8
|
14
23
|
* Fixed an issue where the gem didn't handle the releases
|
24
|
+
|
15
25
|
v0.7.1
|
16
26
|
* To support prawn 0.11.1
|
17
27
|
* To make the border thicker
|
28
|
+
|
18
29
|
v0.6
|
19
30
|
* The points section will be printed only for features. Bugs and Chores don't
|
20
31
|
have points
|
21
32
|
* Printed a green bounding box for feature, a yellow box for chores and a red
|
22
33
|
box for bugs
|
34
|
+
|
23
35
|
v0.5.2.1 Fixed a manifest problem
|
36
|
+
|
24
37
|
v0.5.2 Printed labels to the cards
|
38
|
+
|
25
39
|
v0.5.1 minor improvement over printing estimate, owned by
|
40
|
+
|
26
41
|
v0.5 be able to print out an iteration into one single PDF file
|
42
|
+
|
27
43
|
v0.1.1 added a homepage
|
44
|
+
|
28
45
|
v0.1 initial setup
|
data/pivotal_to_pdf.gemspec
CHANGED
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.description = "Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can stick the card to your story board"
|
12
12
|
|
13
13
|
s.files = `git ls-files`.split("\n")
|
14
|
+
s.license = "MIT"
|
14
15
|
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
16
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
16
17
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pivotal_to_pdf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-07-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: pivotal_to_pdf-formatters
|
@@ -123,7 +123,7 @@ files:
|
|
123
123
|
- .rspec
|
124
124
|
- .rvmrc
|
125
125
|
- .travis.yml
|
126
|
-
- CHANGELOG
|
126
|
+
- CHANGELOG.md
|
127
127
|
- Gemfile
|
128
128
|
- Gemfile.lock
|
129
129
|
- Guardfile
|
@@ -153,7 +153,8 @@ files:
|
|
153
153
|
- spec/support/macros/it_converts_string_through_text_class_on.rb
|
154
154
|
- tasks/spec.rb
|
155
155
|
homepage: https://github.com/ywen/pivotal_to_pdf
|
156
|
-
licenses:
|
156
|
+
licenses:
|
157
|
+
- MIT
|
157
158
|
post_install_message:
|
158
159
|
rdoc_options: []
|
159
160
|
require_paths:
|