-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrelloscrum.gemspec
36 lines (29 loc) · 1.23 KB
/
trelloscrum.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
26
27
28
29
30
31
32
33
34
35
36
basedir = File.expand_path(File.dirname(__FILE__))
require "#{basedir}/lib/version"
Gem::Specification.new do |spec|
spec.name = "trelloscrum"
spec.version = TrelloScrum::VERSION
spec.platform = Gem::Platform::RUBY
spec.summary = "Creates product backlog cards from trello cards"
spec.files = Dir.glob("{bin,lib,resources}/**/**/*") +
["trelloscrum.gemspec", "Gemfile", "readme.md"]
spec.require_path = "lib"
spec.executables = ["trelloscrum"]
spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = ">= 1.3.6"
spec.authors = ["Flurin Egger"]
spec.email = ["flurin@digitpaint.nl"]
spec.licenses = ['MIT', 'SIL OFL']
spec.add_dependency "json", "~> 1.8.1"
spec.add_dependency "prawn", "~> 2.0.1"
spec.add_dependency "prawn-table", "~> 0.2.1"
spec.add_dependency "chronic", "~> 0.10.2"
spec.add_dependency "ruby-trello", "~> 1.1.2"
spec.add_dependency "thor", "~> 0.19.1"
spec.add_dependency "launchy", "~> 2.4.3"
spec.add_dependency "axlsx", "~> 2.0.1"
spec.homepage = "https://github.com/flurin/trelloscrum"
spec.description = <<END_DESC
Generates PDF's with (+/-) one page per card with title, body and checklists. Print 4 of them on an A4 for the best action.
END_DESC
end