pivotal_to_pdf 0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/CHANGELOG +1 -0
  2. data/Manifest +1 -0
  3. data/README +15 -0
  4. data/Rakefile +3 -1
  5. data/pivotal_to_pdf.gemspec +5 -5
  6. metadata +7 -4
data/CHANGELOG CHANGED
@@ -1 +1,2 @@
1
+ v0.1.1 added a homepage
1
2
  v0.1 initial setup
data/Manifest CHANGED
@@ -1,5 +1,6 @@
1
1
  CHANGELOG
2
2
  Manifest
3
+ README
3
4
  Rakefile
4
5
  bin/pivol_to_pdf
5
6
  lib/pivotal_to_pdf.rb
data/README ADDED
@@ -0,0 +1,15 @@
1
+ This is a gem that can read a story from pivotal tracker and print into a 4x6 card so that you can print the card and stick to your physical story board.
2
+
3
+ ==USAGE
4
+ First you need to create a .pivotal.yml under your home directory. No idea how you do this under Windows so no support to Windows yet
5
+
6
+ a sample .pivotal.yml:
7
+
8
+ token: your-api-token-of-pivotal-tracker
9
+ project_id: your-ptroject-id
10
+
11
+ After install the gem, type pivotal_to_pdf your-story-id
12
+
13
+ The gem will then read the story and print it into a PDF
14
+
15
+ The gem assumes that you have https access to the pivotal tracker
data/Rakefile CHANGED
@@ -1,10 +1,12 @@
1
1
  require 'echoe'
2
2
  Echoe.new('pivotal_to_pdf') do |p|
3
- p.description = "Convert Pivotal Tracker Stories to 4x6 PDF for printing"
3
+ p.description = "Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can stick the card to your story board"
4
+ p.summary = "Convert Pivotal Tracker Stories to 4x6 PDF for printing"
4
5
  p.author = "Yi Wen"
5
6
  p.email = "hayafirst@gmail.com"
6
7
  p.runtime_dependencies = %w(activeresource prawn rainbow)
7
8
  p.bin_files = [ "bin/pivotal_to_pdf" ]
9
+ p.url = "https://github.com/ywen/pivotal_to_pdf"
8
10
  # p.ignore_pattern = ["bin/*"]
9
11
  # p.development_dependencies = []
10
12
  end
@@ -2,18 +2,18 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{pivotal_to_pdf}
5
- s.version = "0.1"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Yi Wen"]
9
9
  s.date = %q{2010-11-24}
10
10
  s.default_executable = %q{pivol_to_pdf}
11
- s.description = %q{Convert Pivotal Tracker Stories to 4x6 PDF for printing}
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
12
  s.email = %q{hayafirst@gmail.com}
13
13
  s.executables = ["pivol_to_pdf"]
14
- s.extra_rdoc_files = ["CHANGELOG", "bin/pivol_to_pdf", "lib/pivotal_to_pdf.rb", "lib/pivotal_to_pdf/pdf_writer.rb", "lib/pivotal_to_pdf/story.rb"]
15
- s.files = ["CHANGELOG", "Manifest", "Rakefile", "bin/pivol_to_pdf", "lib/pivotal_to_pdf.rb", "lib/pivotal_to_pdf/pdf_writer.rb", "lib/pivotal_to_pdf/story.rb", "pivotal_to_pdf.gemspec"]
16
- s.homepage = %q{}
14
+ s.extra_rdoc_files = ["CHANGELOG", "README", "bin/pivol_to_pdf", "lib/pivotal_to_pdf.rb", "lib/pivotal_to_pdf/pdf_writer.rb", "lib/pivotal_to_pdf/story.rb"]
15
+ s.files = ["CHANGELOG", "Manifest", "README", "Rakefile", "bin/pivol_to_pdf", "lib/pivotal_to_pdf.rb", "lib/pivotal_to_pdf/pdf_writer.rb", "lib/pivotal_to_pdf/story.rb", "pivotal_to_pdf.gemspec"]
16
+ s.homepage = %q{https://github.com/ywen/pivotal_to_pdf}
17
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Pivotal_to_pdf", "--main", "README"]
18
18
  s.require_paths = ["lib"]
19
19
  s.rubyforge_project = %q{pivotal_to_pdf}
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pivotal_to_pdf
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- version: "0.1"
9
+ - 1
10
+ version: 0.1.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Yi Wen
@@ -59,7 +60,7 @@ dependencies:
59
60
  version: "0"
60
61
  type: :runtime
61
62
  version_requirements: *id003
62
- description: Convert Pivotal Tracker Stories to 4x6 PDF for printing
63
+ description: Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can stick the card to your story board
63
64
  email: hayafirst@gmail.com
64
65
  executables:
65
66
  - pivol_to_pdf
@@ -67,6 +68,7 @@ extensions: []
67
68
 
68
69
  extra_rdoc_files:
69
70
  - CHANGELOG
71
+ - README
70
72
  - bin/pivol_to_pdf
71
73
  - lib/pivotal_to_pdf.rb
72
74
  - lib/pivotal_to_pdf/pdf_writer.rb
@@ -74,6 +76,7 @@ extra_rdoc_files:
74
76
  files:
75
77
  - CHANGELOG
76
78
  - Manifest
79
+ - README
77
80
  - Rakefile
78
81
  - bin/pivol_to_pdf
79
82
  - lib/pivotal_to_pdf.rb
@@ -81,7 +84,7 @@ files:
81
84
  - lib/pivotal_to_pdf/story.rb
82
85
  - pivotal_to_pdf.gemspec
83
86
  has_rdoc: true
84
- homepage: ""
87
+ homepage: https://github.com/ywen/pivotal_to_pdf
85
88
  licenses: []
86
89
 
87
90
  post_install_message: