-
Notifications
You must be signed in to change notification settings - Fork 19
/
pivotal_to_pdf.gemspec
25 lines (23 loc) · 1.04 KB
/
pivotal_to_pdf.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pivotal_to_pdf/version"
Gem::Specification.new do |s|
s.name = "pivotal_to_pdf"
s.version = PivotalToPdf::VERSION
s.authors = ["Yi Wen"]
s.email = ["[email protected]"]
s.summary = %q{Convert Pivotal Tracker Stories to 4x6 PDF cards}
s.description = "Convert Pivotal Tracker Stories to 4x6 PDF for printing so that you can stick the card to your story board"
s.files = `git ls-files`.split("\n")
s.license = "MIT"
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.author = "Yi Wen"
s.add_runtime_dependency(%q<pivotal_to_pdf-formatters>, ">= 0.0.4")
s.add_runtime_dependency(%q<activeresource>, "3.0.9")
s.add_runtime_dependency(%q<prawn>, "0.12.0")
s.add_runtime_dependency(%q<thor>, ">= 0")
s.add_development_dependency(%q<rspec>)
s.homepage = "https://github.com/ywen/pivotal_to_pdf"
end