pivotal_to_pdf 0.9.1 → 1.0.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.
- data/.bundle/config +2 -0
- data/.gitignore +5 -0
- data/.pivotal.yml.sample +2 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +0 -1
- data/Gemfile.lock +13 -23
- data/README.md +29 -1
- data/Rakefile +1 -12
- data/bin/pivotal_to_pdf +9 -6
- data/lib/pivotal_to_pdf.rb +11 -5
- data/lib/pivotal_to_pdf/version.rb +3 -0
- data/pivotal_to_pdf.gemspec +17 -37
- data/spec/pivotal_to_pdf_bin_spec.rb +14 -16
- data/spec/pivotal_to_pdf_spec.rb +76 -0
- metadata +76 -109
data/.bundle/config
ADDED
data/.pivotal.yml.sample
ADDED
data/.rspec
ADDED
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm 1.9.3@pivotal_to_pdf
|
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -10,44 +10,34 @@ GEM
|
|
10
10
|
activemodel (= 3.0.9)
|
11
11
|
activesupport (= 3.0.9)
|
12
12
|
activesupport (3.0.9)
|
13
|
-
allison (2.0.3)
|
14
13
|
builder (2.1.2)
|
15
14
|
diff-lcs (1.1.3)
|
16
|
-
echoe (4.5.6)
|
17
|
-
allison
|
18
|
-
gemcutter
|
19
|
-
rubyforge
|
20
|
-
gemcutter (0.7.0)
|
21
15
|
i18n (0.5.0)
|
22
|
-
|
23
|
-
spruz (~> 0.2.8)
|
24
|
-
pdf-reader (0.10.0)
|
16
|
+
pdf-reader (1.0.0)
|
25
17
|
Ascii85 (~> 1.0.0)
|
18
|
+
ruby-rc4
|
26
19
|
prawn (0.12.0)
|
27
20
|
pdf-reader (>= 0.9.0)
|
28
21
|
ttfunk (~> 1.0.2)
|
29
|
-
rainbow (1.1.
|
30
|
-
rake (0.9.2)
|
31
|
-
rspec (2.
|
32
|
-
rspec-core (~> 2.
|
33
|
-
rspec-expectations (~> 2.
|
34
|
-
rspec-mocks (~> 2.
|
35
|
-
rspec-core (2.
|
36
|
-
rspec-expectations (2.
|
22
|
+
rainbow (1.1.3)
|
23
|
+
rake (0.9.2.2)
|
24
|
+
rspec (2.8.0)
|
25
|
+
rspec-core (~> 2.8.0)
|
26
|
+
rspec-expectations (~> 2.8.0)
|
27
|
+
rspec-mocks (~> 2.8.0)
|
28
|
+
rspec-core (2.8.0)
|
29
|
+
rspec-expectations (2.8.0)
|
37
30
|
diff-lcs (~> 1.1.2)
|
38
|
-
rspec-mocks (2.
|
39
|
-
|
40
|
-
json_pure (>= 1.1.7)
|
41
|
-
spruz (0.2.13)
|
31
|
+
rspec-mocks (2.8.0)
|
32
|
+
ruby-rc4 (0.1.3)
|
42
33
|
thor (0.14.6)
|
43
|
-
ttfunk (1.0.
|
34
|
+
ttfunk (1.0.3)
|
44
35
|
|
45
36
|
PLATFORMS
|
46
37
|
ruby
|
47
38
|
|
48
39
|
DEPENDENCIES
|
49
40
|
activeresource (= 3.0.9)
|
50
|
-
echoe (= 4.5.6)
|
51
41
|
prawn
|
52
42
|
rainbow
|
53
43
|
rake
|
data/README.md
CHANGED
@@ -21,9 +21,37 @@ a sample .pivotal.yml:
|
|
21
21
|
|
22
22
|
After install the gem, you can do:
|
23
23
|
|
24
|
-
* pivotal_to_pdf
|
24
|
+
* pivotal_to_pdf current_iteration # print stories for the current iteration into a PDF file
|
25
|
+
|
25
26
|
* pivotal_to_pdf story STORY_ID # print a single story specifed by ID into a PDF file
|
26
27
|
|
28
|
+
* pivotal_to_pdf iteration iteration_number # print a single iteration specifed by the number into a PDF file
|
29
|
+
|
30
|
+
Examples:
|
31
|
+
|
32
|
+
```bash
|
33
|
+
|
34
|
+
pivotal_to_pdf story 159898
|
35
|
+
|
36
|
+
pivotal_to_pdf current_iteration
|
37
|
+
|
38
|
+
pivotal_to_pdf iteration 42
|
39
|
+
```
|
40
|
+
|
41
|
+
Type in
|
42
|
+
|
43
|
+
```bash
|
44
|
+
pivotal_to_pdf help
|
45
|
+
|
46
|
+
pivotal_to_pdf help story
|
47
|
+
|
48
|
+
pivotal_to_pdf help current_iteration
|
49
|
+
|
50
|
+
pivotal_to_pdf help iteration
|
51
|
+
```
|
52
|
+
|
53
|
+
for more usage information
|
54
|
+
|
27
55
|
The gem will then read the story/stories and print it into a PDF file
|
28
56
|
|
29
57
|
The points section will be printed only for features. Bugs and Chores don't have points
|
data/Rakefile
CHANGED
@@ -1,13 +1,2 @@
|
|
1
|
-
require '
|
1
|
+
require 'bundler/gem_tasks'
|
2
2
|
require File.expand_path(File.dirname(__FILE__))+'/tasks/spec'
|
3
|
-
Echoe.new('pivotal_to_pdf') do |p|
|
4
|
-
p.description = "Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can stick the card to your story board"
|
5
|
-
p.summary = "Convert Pivotal Tracker Stories to 4x6 PDF for printing"
|
6
|
-
p.author = "Yi Wen"
|
7
|
-
p.email = "hayafirst@gmail.com"
|
8
|
-
p.runtime_dependencies = [ 'activeresource 3.0.9', 'prawn 0.11.1', 'rainbow', 'thor' ]
|
9
|
-
p.bin_files = [ "bin/pivotal_to_pdf" ]
|
10
|
-
p.url = "https://github.com/ywen/pivotal_to_pdf"
|
11
|
-
# p.ignore_pattern = ["bin/*"]
|
12
|
-
# p.development_dependencies = []
|
13
|
-
end
|
data/bin/pivotal_to_pdf
CHANGED
@@ -5,15 +5,18 @@ require 'thor'
|
|
5
5
|
|
6
6
|
class PivotalToPdfApp < Thor
|
7
7
|
desc "story STORY_ID", "print a single story specifed by ID into a PDF file. The card will have a color stripe. The color will be green for features, yellow for chores and red for bugs"
|
8
|
-
method_option :nocolor, :aliases => "-nc", :desc => "Make the card having no color stripe"
|
9
8
|
def story(story_id)
|
10
|
-
PivotalToPdf::Main.story story_id
|
9
|
+
PivotalToPdf::Main.story story_id
|
11
10
|
end
|
12
11
|
|
13
|
-
desc "
|
14
|
-
|
15
|
-
|
16
|
-
|
12
|
+
desc "current_iteration", "print stories for the current iteration into a PDF file"
|
13
|
+
def current_iteration
|
14
|
+
PivotalToPdf::Main.current_iteration
|
15
|
+
end
|
16
|
+
|
17
|
+
desc "iteration ITERATION-NUMBER", "print all the stories for the iteration specified into a PDF file"
|
18
|
+
def iteration(iteration_number)
|
19
|
+
PivotalToPdf::Main.iteration iteration_number
|
17
20
|
end
|
18
21
|
end
|
19
22
|
|
data/lib/pivotal_to_pdf.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'rubygems'
|
2
|
+
require "pivotal_to_pdf/version"
|
2
3
|
require 'rainbow'
|
3
4
|
require 'thor'
|
4
5
|
require 'active_resource'
|
@@ -10,14 +11,19 @@ require 'pivotal_to_pdf/pdf_writer'
|
|
10
11
|
module PivotalToPdf
|
11
12
|
class Main < Thor
|
12
13
|
class << self
|
13
|
-
def story(story_id
|
14
|
+
def story(story_id)
|
14
15
|
story = Story.find(story_id)
|
15
|
-
PivotalToPdf::PdfWriter.new(story
|
16
|
+
PivotalToPdf::PdfWriter.new(story).write_to
|
16
17
|
end
|
17
18
|
|
18
|
-
def
|
19
|
-
iteration = Iteration.find(:all, :params => {:group =>
|
20
|
-
PivotalToPdf::PdfWriter.new(iteration
|
19
|
+
def current_iteration
|
20
|
+
iteration = Iteration.find(:all, :params => {:group => "current"}).first
|
21
|
+
PivotalToPdf::PdfWriter.new(iteration).write_to
|
22
|
+
end
|
23
|
+
|
24
|
+
def iteration(iteration_number)
|
25
|
+
iteration = Iteration.find(:all, :params => {:offset => iteration_number.to_i - 1, :limit => 1}).first
|
26
|
+
PivotalToPdf::PdfWriter.new(iteration).write_to
|
21
27
|
end
|
22
28
|
end
|
23
29
|
end
|
data/pivotal_to_pdf.gemspec
CHANGED
@@ -1,43 +1,23 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "pivotal_to_pdf/version"
|
2
4
|
|
3
5
|
Gem::Specification.new do |s|
|
4
|
-
s.name
|
5
|
-
s.version
|
6
|
+
s.name = "pivotal_to_pdf"
|
7
|
+
s.version = PivotalToPdf::VERSION
|
8
|
+
s.authors = ["Yi Wen"]
|
9
|
+
s.email = ["hayafirst@gmail.com"]
|
10
|
+
s.summary = %q{Convert Pivotal Tracker Stories to 4x6 PDF cards}
|
11
|
+
s.description = "Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can stick the card to your story board"
|
6
12
|
|
7
|
-
s.
|
8
|
-
s.
|
9
|
-
s.
|
10
|
-
s.default_executable = %q{pivotal_to_pdf}
|
11
|
-
s.description = %q{Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can stick the card to your story board}
|
12
|
-
s.email = %q{hayafirst@gmail.com}
|
13
|
-
s.executables = ["pivotal_to_pdf"]
|
14
|
-
s.extra_rdoc_files = ["CHANGELOG", "README.md", "bin/pivotal_to_pdf", "lib/pivotal_to_pdf.rb", "lib/pivotal_to_pdf/iteration.rb", "lib/pivotal_to_pdf/pdf_writer.rb", "lib/pivotal_to_pdf/pivotal.rb", "lib/pivotal_to_pdf/simple_text_formatter.rb", "lib/pivotal_to_pdf/story.rb", "tasks/spec.rb"]
|
15
|
-
s.files = ["CHANGELOG", "Gemfile", "Gemfile.lock", "Manifest", "README.md", "Rakefile", "bin/pivotal_to_pdf", "lib/pivotal_to_pdf.rb", "lib/pivotal_to_pdf/iteration.rb", "lib/pivotal_to_pdf/pdf_writer.rb", "lib/pivotal_to_pdf/pivotal.rb", "lib/pivotal_to_pdf/simple_text_formatter.rb", "lib/pivotal_to_pdf/story.rb", "spec/pivotal_to_pdf/simple_text_formatter_spec.rb", "spec/pivotal_to_pdf/story_spec.rb", "spec/pivotal_to_pdf_bin_spec.rb", "spec/spec_helper.rb", "tasks/spec.rb", "pivotal_to_pdf.gemspec"]
|
16
|
-
s.homepage = %q{https://github.com/ywen/pivotal_to_pdf}
|
17
|
-
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Pivotal_to_pdf", "--main", "README.md"]
|
13
|
+
s.files = `git ls-files`.split("\n")
|
14
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
16
|
s.require_paths = ["lib"]
|
19
|
-
s.
|
20
|
-
s.
|
21
|
-
s.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
27
|
-
s.add_runtime_dependency(%q<activeresource>, ["= 3.0.9"])
|
28
|
-
s.add_runtime_dependency(%q<prawn>, ["= 0.11.1"])
|
29
|
-
s.add_runtime_dependency(%q<rainbow>, [">= 0"])
|
30
|
-
s.add_runtime_dependency(%q<thor>, [">= 0"])
|
31
|
-
else
|
32
|
-
s.add_dependency(%q<activeresource>, ["= 3.0.9"])
|
33
|
-
s.add_dependency(%q<prawn>, ["= 0.11.1"])
|
34
|
-
s.add_dependency(%q<rainbow>, [">= 0"])
|
35
|
-
s.add_dependency(%q<thor>, [">= 0"])
|
36
|
-
end
|
37
|
-
else
|
38
|
-
s.add_dependency(%q<activeresource>, ["= 3.0.9"])
|
39
|
-
s.add_dependency(%q<prawn>, ["= 0.11.1"])
|
40
|
-
s.add_dependency(%q<rainbow>, [">= 0"])
|
41
|
-
s.add_dependency(%q<thor>, [">= 0"])
|
42
|
-
end
|
17
|
+
s.author = "Yi Wen"
|
18
|
+
s.add_runtime_dependency(%q<activeresource>, ["3.0.9"])
|
19
|
+
s.add_runtime_dependency(%q<prawn>, ["0.12.0"])
|
20
|
+
s.add_runtime_dependency(%q<rainbow>, [">= 0"])
|
21
|
+
s.add_runtime_dependency(%q<thor>, [">= 0"])
|
22
|
+
s.homepage = "https://github.com/ywen/pivotal_to_pdf"
|
43
23
|
end
|
@@ -2,35 +2,33 @@ require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
|
|
2
2
|
load File.expand_path(File.join(File.dirname(__FILE__), "..", "bin", "pivotal_to_pdf"))
|
3
3
|
|
4
4
|
describe 'PivotalToPdf Bin' do
|
5
|
-
|
5
|
+
context "when pased in story sub command" do
|
6
6
|
it "should call story" do
|
7
|
-
PivotalToPdf::Main.should_receive(:story).with(123
|
7
|
+
PivotalToPdf::Main.should_receive(:story).with(123)
|
8
8
|
PivotalToPdfApp.start(["story", 123])
|
9
9
|
end
|
10
10
|
it "should not call story when no story id is given" do
|
11
11
|
PivotalToPdf::Main.should_not_receive(:story)
|
12
12
|
PivotalToPdfApp.start(["story"])
|
13
13
|
end
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
end
|
14
|
+
end
|
15
|
+
context "when pased in current_iteration sub command" do
|
16
|
+
it "should call current_iteration" do
|
17
|
+
PivotalToPdf::Main.should_receive(:current_iteration)
|
18
|
+
PivotalToPdfApp.start(["current_iteration"])
|
20
19
|
end
|
21
20
|
end
|
22
|
-
|
21
|
+
context "when pased in iteration sub command" do
|
23
22
|
it "should call iteration" do
|
24
|
-
PivotalToPdf::Main.should_receive(:iteration).with(
|
25
|
-
PivotalToPdfApp.start(["iteration",
|
23
|
+
PivotalToPdf::Main.should_receive(:iteration).with("1")
|
24
|
+
PivotalToPdfApp.start(["iteration", "1"])
|
26
25
|
end
|
27
26
|
|
28
|
-
|
29
|
-
it "should
|
30
|
-
PivotalToPdf::Main.
|
31
|
-
PivotalToPdfApp.start(["iteration"
|
27
|
+
context "when no iteration number specified" do
|
28
|
+
it "should not call iteration" do
|
29
|
+
PivotalToPdf::Main.should_not_receive(:iteration)
|
30
|
+
PivotalToPdfApp.start(["iteration"])
|
32
31
|
end
|
33
32
|
end
|
34
33
|
end
|
35
34
|
end
|
36
|
-
|
@@ -0,0 +1,76 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
|
2
|
+
|
3
|
+
module PivotalToPdf
|
4
|
+
describe Main do
|
5
|
+
let(:writer) {double :writer, :write_to => true}
|
6
|
+
describe ".story" do
|
7
|
+
let(:story) {double :story}
|
8
|
+
before(:each) do
|
9
|
+
Story.stub(:find).and_return story
|
10
|
+
PivotalToPdf::PdfWriter.stub(:new).and_return writer
|
11
|
+
end
|
12
|
+
|
13
|
+
it "initiates a story" do
|
14
|
+
Story.should_receive(:find).with(23).and_return story
|
15
|
+
Main.story 23
|
16
|
+
end
|
17
|
+
|
18
|
+
it "build a pdf writer" do
|
19
|
+
PivotalToPdf::PdfWriter.should_receive(:new).with(story).and_return writer
|
20
|
+
Main.story 23
|
21
|
+
end
|
22
|
+
|
23
|
+
it "asks the pdf writer to print it" do
|
24
|
+
writer.should_receive :write_to
|
25
|
+
Main.story 23
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe ".current_iteration" do
|
29
|
+
let(:iteration) {double :iteration}
|
30
|
+
before(:each) do
|
31
|
+
Iteration.stub(:find).and_return [iteration, double]
|
32
|
+
PivotalToPdf::PdfWriter.stub(:new).and_return writer
|
33
|
+
end
|
34
|
+
|
35
|
+
it "initiates an Iteration" do
|
36
|
+
Iteration.should_receive(:find).with(:all, :params => {:group => "current"}).and_return [iteration]
|
37
|
+
Main.current_iteration
|
38
|
+
end
|
39
|
+
|
40
|
+
it "build a pdf writer" do
|
41
|
+
PivotalToPdf::PdfWriter.should_receive(:new).with(iteration).and_return writer
|
42
|
+
Main.current_iteration
|
43
|
+
end
|
44
|
+
|
45
|
+
it "asks the pdf writer to print it" do
|
46
|
+
writer.should_receive :write_to
|
47
|
+
Main.current_iteration
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe ".iteration" do
|
52
|
+
let(:iteration) {double :iteration}
|
53
|
+
before(:each) do
|
54
|
+
Iteration.stub(:find).and_return [iteration, double]
|
55
|
+
PivotalToPdf::PdfWriter.stub(:new).and_return writer
|
56
|
+
end
|
57
|
+
|
58
|
+
it "fetches an Iteration, given the Iteration number (you have to minus to get the accurate iteration)" do
|
59
|
+
Iteration.should_receive(:find).with(:all, :params => {:offset => 12, :limit => 1}).and_return [iteration]
|
60
|
+
Main.iteration 13
|
61
|
+
end
|
62
|
+
|
63
|
+
it "build a pdf writer" do
|
64
|
+
PivotalToPdf::PdfWriter.should_receive(:new).with(iteration).and_return writer
|
65
|
+
Main.iteration 13
|
66
|
+
end
|
67
|
+
|
68
|
+
it "asks the pdf writer to print it" do
|
69
|
+
writer.should_receive :write_to
|
70
|
+
Main.iteration 13
|
71
|
+
end
|
72
|
+
|
73
|
+
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
metadata
CHANGED
@@ -1,101 +1,75 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: pivotal_to_pdf
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 9
|
9
|
-
- 1
|
10
|
-
version: 0.9.1
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Yi Wen
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-01-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
22
15
|
name: activeresource
|
23
|
-
|
24
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &70145969460320 !ruby/object:Gem::Requirement
|
25
17
|
none: false
|
26
|
-
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
hash: 21
|
30
|
-
segments:
|
31
|
-
- 3
|
32
|
-
- 0
|
33
|
-
- 9
|
18
|
+
requirements:
|
19
|
+
- - =
|
20
|
+
- !ruby/object:Gem::Version
|
34
21
|
version: 3.0.9
|
35
22
|
type: :runtime
|
36
|
-
version_requirements: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: prawn
|
39
23
|
prerelease: false
|
40
|
-
|
24
|
+
version_requirements: *70145969460320
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: prawn
|
27
|
+
requirement: &70145969459740 !ruby/object:Gem::Requirement
|
41
28
|
none: false
|
42
|
-
requirements:
|
43
|
-
- -
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
46
|
-
segments:
|
47
|
-
- 0
|
48
|
-
- 11
|
49
|
-
- 1
|
50
|
-
version: 0.11.1
|
29
|
+
requirements:
|
30
|
+
- - =
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 0.12.0
|
51
33
|
type: :runtime
|
52
|
-
version_requirements: *id002
|
53
|
-
- !ruby/object:Gem::Dependency
|
54
|
-
name: rainbow
|
55
34
|
prerelease: false
|
56
|
-
|
35
|
+
version_requirements: *70145969459740
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: rainbow
|
38
|
+
requirement: &70145969459240 !ruby/object:Gem::Requirement
|
57
39
|
none: false
|
58
|
-
requirements:
|
59
|
-
- -
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
|
62
|
-
segments:
|
63
|
-
- 0
|
64
|
-
version: "0"
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
65
44
|
type: :runtime
|
66
|
-
version_requirements: *id003
|
67
|
-
- !ruby/object:Gem::Dependency
|
68
|
-
name: thor
|
69
45
|
prerelease: false
|
70
|
-
|
46
|
+
version_requirements: *70145969459240
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: thor
|
49
|
+
requirement: &70145969458700 !ruby/object:Gem::Requirement
|
71
50
|
none: false
|
72
|
-
requirements:
|
73
|
-
- -
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
|
76
|
-
segments:
|
77
|
-
- 0
|
78
|
-
version: "0"
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
79
55
|
type: :runtime
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: *70145969458700
|
58
|
+
description: Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can
|
59
|
+
stick the card to your story board
|
60
|
+
email:
|
61
|
+
- hayafirst@gmail.com
|
62
|
+
executables:
|
84
63
|
- pivotal_to_pdf
|
85
64
|
extensions: []
|
86
|
-
|
87
|
-
|
88
|
-
-
|
89
|
-
-
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
- lib/pivotal_to_pdf/pivotal.rb
|
95
|
-
- lib/pivotal_to_pdf/simple_text_formatter.rb
|
96
|
-
- lib/pivotal_to_pdf/story.rb
|
97
|
-
- tasks/spec.rb
|
98
|
-
files:
|
65
|
+
extra_rdoc_files: []
|
66
|
+
files:
|
67
|
+
- .bundle/config
|
68
|
+
- .gitignore
|
69
|
+
- .pivotal.yml.sample
|
70
|
+
- .rspec
|
71
|
+
- .rvmrc
|
72
|
+
- .travis.yml
|
99
73
|
- CHANGELOG
|
100
74
|
- Gemfile
|
101
75
|
- Gemfile.lock
|
@@ -109,51 +83,44 @@ files:
|
|
109
83
|
- lib/pivotal_to_pdf/pivotal.rb
|
110
84
|
- lib/pivotal_to_pdf/simple_text_formatter.rb
|
111
85
|
- lib/pivotal_to_pdf/story.rb
|
86
|
+
- lib/pivotal_to_pdf/version.rb
|
87
|
+
- pivotal_to_pdf.gemspec
|
112
88
|
- spec/pivotal_to_pdf/simple_text_formatter_spec.rb
|
113
89
|
- spec/pivotal_to_pdf/story_spec.rb
|
114
90
|
- spec/pivotal_to_pdf_bin_spec.rb
|
91
|
+
- spec/pivotal_to_pdf_spec.rb
|
115
92
|
- spec/spec_helper.rb
|
116
93
|
- tasks/spec.rb
|
117
|
-
- pivotal_to_pdf.gemspec
|
118
|
-
has_rdoc: true
|
119
94
|
homepage: https://github.com/ywen/pivotal_to_pdf
|
120
95
|
licenses: []
|
121
|
-
|
122
96
|
post_install_message:
|
123
|
-
rdoc_options:
|
124
|
-
|
125
|
-
- --inline-source
|
126
|
-
- --title
|
127
|
-
- Pivotal_to_pdf
|
128
|
-
- --main
|
129
|
-
- README.md
|
130
|
-
require_paths:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
131
99
|
- lib
|
132
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
133
101
|
none: false
|
134
|
-
requirements:
|
135
|
-
- -
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
|
138
|
-
segments:
|
102
|
+
requirements:
|
103
|
+
- - ! '>='
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
segments:
|
139
107
|
- 0
|
140
|
-
|
141
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
hash: 1893678772007316533
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
110
|
none: false
|
143
|
-
requirements:
|
144
|
-
- -
|
145
|
-
- !ruby/object:Gem::Version
|
146
|
-
|
147
|
-
segments:
|
148
|
-
- 1
|
149
|
-
- 2
|
150
|
-
version: "1.2"
|
111
|
+
requirements:
|
112
|
+
- - ! '>='
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0'
|
151
115
|
requirements: []
|
152
|
-
|
153
|
-
|
154
|
-
rubygems_version: 1.4.2
|
116
|
+
rubyforge_project:
|
117
|
+
rubygems_version: 1.8.10
|
155
118
|
signing_key:
|
156
119
|
specification_version: 3
|
157
|
-
summary: Convert Pivotal Tracker Stories to 4x6 PDF
|
158
|
-
test_files:
|
159
|
-
|
120
|
+
summary: Convert Pivotal Tracker Stories to 4x6 PDF cards
|
121
|
+
test_files:
|
122
|
+
- spec/pivotal_to_pdf/simple_text_formatter_spec.rb
|
123
|
+
- spec/pivotal_to_pdf/story_spec.rb
|
124
|
+
- spec/pivotal_to_pdf_bin_spec.rb
|
125
|
+
- spec/pivotal_to_pdf_spec.rb
|
126
|
+
- spec/spec_helper.rb
|