kancmd 0.1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e706c223a6383f6db34447fd0b78df48bb59122f
4
+ data.tar.gz: 3353bb17df56fd8795eab79116ba863f8ba1fb23
5
+ SHA512:
6
+ metadata.gz: c96970d3cff73d031f17f9713d6cbe497703d9a02e715aa85840f641b2e315cc03543ed5a47b561524363d3b9f1ce4488c12eb3cc08d38075b69981449a951d3
7
+ data.tar.gz: d8546d1bd4f6a3597ae83573da2da26f526ffb9fab8f1e2796930968e28ce21427eb04f3f205f8d6adb8a40fccf5b70f8a337c926f2b84ae6d3652c82343fe88
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.0
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in kancmd.gemspec
4
+ gemspec
5
+
6
+ # gem "rails"
7
+ gem 'activesupport'
8
+ gem 'terminal-table'
9
+ gem 'paint'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Tobin Harris
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Kancmd
2
+
3
+ Simple Kanbanery reporting tool. Currently just lists WIP. Developed by Pocketworks.
4
+
5
+ ## Installation
6
+
7
+ Install:
8
+
9
+ $ gem install kancmd
10
+
11
+ ## Usage
12
+
13
+ kan
14
+
15
+ kan | grep Bob
16
+
17
+ kan | grep Bug
18
+
19
+ ## Development
20
+
21
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
22
+
23
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/kancmd/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "kancmd"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/kan ADDED
@@ -0,0 +1,347 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'active_support/core_ext/module/attribute_accessors'
4
+ require 'active_support/json'
5
+ require 'openssl'
6
+ require 'terminal-table'
7
+ require 'paint'
8
+ require 'net/http'
9
+
10
+ module BaneryStats
11
+ mattr_accessor :api_token
12
+
13
+ class JsonGet
14
+ def self.perform(url)
15
+ new(url).perform
16
+ end
17
+
18
+ attr_reader :url
19
+
20
+ def initialize(url)
21
+ @url = url
22
+ end
23
+
24
+ def perform
25
+ ActiveSupport::JSON.decode(response.body)
26
+ end
27
+
28
+ def response
29
+ http.request(request)
30
+ end
31
+
32
+ def http
33
+ Net::HTTP.new(uri.host, uri.port).tap do |h|
34
+ h.use_ssl = true
35
+ end
36
+ end
37
+
38
+ def uri
39
+ URI.parse(url)
40
+ end
41
+
42
+ def request
43
+ Net::HTTP::Get.new(uri.request_uri).tap do |r|
44
+ r['X-Kanbanery-ApiToken'] = BaneryStats.api_token or raise "You must set BaneryStats.api_token to your API token"
45
+ end
46
+ end
47
+ end
48
+
49
+ class OutputSummary
50
+ attr_accessor :tasks, :task_types, :users, :estimates
51
+
52
+ def self.run
53
+ new.run
54
+ end
55
+
56
+ def run
57
+ # workspaces.each do |workspace|
58
+ # log("WORKSPACE #{workspace.name} #projects: #{workspace.projects.size}")
59
+ # workspace.projects.each do |workspace_project|
60
+ # project_tasks = project_tasks(workspace.name, workspace_project.id)
61
+ # tasks_count = project_tasks.size
62
+ # log("#{tasks_count.to_s.rjust(5)} #{workspace_project.name}") if tasks_count > 0
63
+ # end
64
+ # end
65
+ self.estimates = project_estimates('pocketworks', 58789)
66
+ self.users = project_users('pocketworks', 58789)
67
+ self.task_types = project_task_types('pocketworks', 58789)
68
+ self.tasks = project_tasks('pocketworks', 58789)
69
+
70
+
71
+ #puts self.users.last
72
+ #puts self.task_types.last
73
+ #log("#{self.tasks.count}")
74
+ #puts self.stale
75
+ end
76
+
77
+ def non_epics
78
+ self.tasks.select{|t| t["task_type_name"] != "Deliverable" and not OutputSummary.is_with_jabba(t) }
79
+ end
80
+
81
+ def blocked_tasks
82
+ self.tasks.select{|t| t["blocked"]==true and not OutputSummary.is_with_jabba(t) }
83
+ end
84
+
85
+ def done_tasks
86
+ self.tasks.select{|t| ! is_open(t) and t["task_type_name"] != "Deliverable" }
87
+ end
88
+
89
+ def is_open(card)
90
+ card["column_id"] != 393331
91
+ end
92
+
93
+ def self.is_open(card)
94
+ card["column_id"] != 393331
95
+ end
96
+
97
+ def self.is_with_jabba(card)
98
+ card["username"] =~ /Jabba.+/
99
+ end
100
+
101
+ def bugs
102
+ self.tasks.select{|t| t["task_type_name"] == "Bug" and is_open(t)}
103
+ end
104
+
105
+ def stale
106
+ self.tasks.select{|t| t["is_stale"] == true and is_open(t) and not t["task_type_name"] == "Deliverable" and not OutputSummary.is_with_jabba(t) }
107
+ end
108
+
109
+ def with_deadline
110
+ self.tasks.select{|t| t["deadline"] and Time.parse(t["deadline"]) > (Time.new - (60*60*24*5)) and is_open(t) }
111
+ end
112
+
113
+ def without_estimate
114
+ self.tasks.select{|t| t["estimate"] == nil and not ["Deliverable","Bug", "Amend"].include?(t["task_type_name"])}
115
+ end
116
+
117
+ def with_jabba
118
+ self.tasks.select{ |t| is_open(t) and OutputSummary.is_with_jabba(t) }
119
+ end
120
+
121
+
122
+
123
+
124
+ def workspaces
125
+ data = JsonGet.perform(workspace_url)
126
+ data.collect do |workspace_data|
127
+ projects = workspace_data["projects"].collect { |workspace_project| OpenStruct.new(id: workspace_project["id"], name: workspace_project["name"]) }
128
+ OpenStruct.new(id: workspace_data["id"], name: workspace_data["name"], projects: projects)
129
+ end
130
+ end
131
+
132
+ def project_tasks(workspace_name, project_id)
133
+ data = JsonGet.perform(project_tasks_url(workspace_name, project_id))
134
+ #data.keep_if { |d| d.has_key?("owner_id") && d["owner_id"] == own_user_id }
135
+ data.each do |t|
136
+ tmp = self.task_types.select{|tt| t["task_type_id"] == tt["id"]}.first
137
+ if tmp
138
+ t["task_type_name"] = tmp["name"]
139
+ six_days_ago = Time.new - (60*60*24*6)
140
+ t["is_stale"] = ! (Time.parse(t["updated_at"]) > six_days_ago || Time.parse(t["moved_at"]) > six_days_ago)
141
+ end
142
+
143
+ estimate = self.estimates.select{|e|t["estimate_id"]==e["id"]}.first
144
+ if estimate
145
+ t["estimate"] = estimate["value"]
146
+ else
147
+ t["estimate"] = nil
148
+ end
149
+
150
+ username = user_by_id(t["owner_id"].to_i) ? user_by_id(t["owner_id"].to_i)["name"] : "None"
151
+ if username
152
+ t["username"] = username
153
+ else
154
+ t["username"] = nil
155
+ end
156
+
157
+ t["is_open"] = is_open(t)
158
+ end
159
+ data
160
+ end
161
+
162
+ def project_task_types(workspace_name, project_id)
163
+ data = JsonGet.perform(project_task_types_url(workspace_name, project_id))
164
+ #data.keep_if { |d| d.has_key?("owner_id") && d["owner_id"] == own_user_id }
165
+ data
166
+ end
167
+
168
+ def project_users(workspace_name, project_id)
169
+ data = JsonGet.perform(project_users_url(workspace_name, project_id))
170
+ #data.keep_if { |d| d.has_key?("owner_id") && d["owner_id"] == own_user_id }
171
+ data
172
+ end
173
+
174
+ def project_estimates(workspace_name, project_id)
175
+ data = JsonGet.perform(project_estimates_url(workspace_name, project_id))
176
+ #data.keep_if { |d| d.has_key?("owner_id") && d["owner_id"] == own_user_id }
177
+ data
178
+ end
179
+
180
+ def user_by_id(id)
181
+ self.users.select{|u|u["id"]==id}.first
182
+ end
183
+
184
+ def own_user_id
185
+ @own_user_id ||=
186
+ begin
187
+ data = JsonGet.perform(own_user_info_url)
188
+ data["id"]
189
+ end
190
+ end
191
+
192
+ def log(msg)
193
+ puts msg
194
+ end
195
+
196
+ def workspace_url
197
+ "https://kanbanery.com/api/v1/user/workspaces.json/"
198
+ end
199
+
200
+ def project_tasks_url(workspace_name, project_id)
201
+ "https://#{workspace_name}.kanbanery.com/api/v1/projects/#{project_id}/tasks.json"
202
+ end
203
+
204
+ def project_task_types_url(workspace_name, project_id)
205
+ "https://#{workspace_name}.kanbanery.com/api/v1/projects/#{project_id}/task_types.json"
206
+ end
207
+
208
+ def own_user_info_url
209
+ "https://avarteq.kanbanery.com/api/v1/user.json"
210
+ end
211
+
212
+ def project_users_url(workspace_name, project_id)
213
+ "https://#{workspace_name}.kanbanery.com/api/v1/projects/#{project_id}/users.json"
214
+ end
215
+
216
+ def project_estimates_url(workspace_name, project_id)
217
+ "https://#{workspace_name}.kanbanery.com/api/v1/projects/#{project_id}/estimates.json"
218
+ end
219
+ end
220
+ end
221
+
222
+
223
+ class CmdParser
224
+ attr_reader :args
225
+
226
+ def initialize(args)
227
+ self.args = args
228
+ end
229
+ end
230
+
231
+ config_file = ENV['HOME']+'/.kanbanery'
232
+ token = ENV['KANBANERY_API_TOKEN']
233
+ if ! token and File.exists?(config_file)
234
+ token = File.open(config_file).read.chomp
235
+ else
236
+ puts "What is your Kanbanery API token? (you can get this from your profile page)"
237
+ token = gets.chomp
238
+ f = File.open(config_file,'w')
239
+ f.write(token)
240
+ f.close
241
+ puts "Token written to ~/.kanbanery\nPlease wait...."
242
+ end
243
+
244
+ BaneryStats.api_token = token #"8fe454038afb877a1db4a5ad7049248b7b075fa4" # ENV['KANBANERY_API_TOKEN']
245
+ report = BaneryStats::OutputSummary.new
246
+ report.run #fetch data and make it nice
247
+ #puts report.tasks.first
248
+ tasks = report.tasks.select{|t| t["is_open"] && t['task_type_name'] != 'Deliverable'}
249
+ deliverables = report.tasks.select{|t| t["is_open"] && t['task_type_name'] == 'Deliverable'}
250
+
251
+ rows = []
252
+ total = 0
253
+ #cmd = CmdParser.new(ARGV)
254
+ tasks.each do |task|
255
+ fmt_estimate = task["estimate"] ? task["estimate"].to_i : (task['task_type_name'] == "Bug" ? "-" : Paint["MISSING",:red])
256
+ fmt_estimate = Paint[fmt_estimate,:bright,:red] if task["estimate"] && task["estimate"] > 8
257
+ parts = task['title'].split(':')
258
+ title = parts.length == 2 ? parts[1] : parts[0]
259
+ company = parts.length == 2 ? parts[0] : ""
260
+ rows << [task['task_type_name'], task['username'], company, title, fmt_estimate]
261
+ total += task["estimate"] ? task["estimate"].to_i : 0
262
+ #puts "#{task['task_type_name']}:#{task['username']}:#{task['title']} "
263
+ end
264
+ rows << [Paint["#{tasks.count} items",:yellow], "","", "", Paint["#{total} points",:yellow]]
265
+
266
+ table = Terminal::Table.new :headings => ['Type', 'Who', 'Company', 'Title', 'Points'], :rows => rows
267
+ puts table
268
+
269
+
270
+ puts "No open tasks" if tasks.count == 0
271
+
272
+
273
+
274
+ # OLD CRAP IGNORE
275
+ if false
276
+
277
+ # :first_in sets how long it takes before the job is first run. In this case, it is run immediately
278
+ SCHEDULER.every '1m', :first_in => 0 do |job|
279
+ BaneryStats.api_token = "8fe454038afb877a1db4a5ad7049248b7b075fa4" # ENV['KANBANERY_API_TOKEN']
280
+ report = BaneryStats::OutputSummary.new
281
+ report.run
282
+ #puts report.tasks.last
283
+ status = 'ok'
284
+ send_event('kanban_tasks', {current: report.tasks.count, last: 0, value: report.tasks.count, status: status})
285
+
286
+ #Blocked cards - percentage
287
+ status = case ((report.blocked_tasks.count.to_f / report.tasks.count.to_f)*100)
288
+ when 0 then 'ok'
289
+ when 1..10 then 'danger'
290
+ else 'warning'
291
+ end
292
+ send_event('kanban_blocked_tasks', {current: report.blocked_tasks.count, value: report.blocked_tasks.count, status: status})
293
+
294
+ # Percent done
295
+ val = ((report.done_tasks.count.to_f/report.tasks.count.to_f) * 100).to_i
296
+ status = case val
297
+ when 0..70 then 'danger'
298
+ else 'ok'
299
+ end
300
+ send_event('kanban_done_tasks', {current: val, last: nil, value: val, status: status})
301
+
302
+ # List of assigned cards to people
303
+ list = []
304
+ report.tasks.group_by{|t| t["owner_id"]}.each do |t,c|
305
+ username = report.user_by_id(t.to_i) ? report.user_by_id(t.to_i)["name"] : "None"
306
+ list.push({label: username, value: c.count})
307
+ end
308
+ send_event('kanban_done_list', items: list, status: 'ok')
309
+
310
+ # Count of bugs
311
+ val = report.bugs.count
312
+ status = case val
313
+ when val == 0 then 'ok'
314
+ when val < 3 then 'danger'
315
+ else 'warning'
316
+ end
317
+ send_event('kanban_bugs', {current: val, last: nil, value: val, status: status})
318
+
319
+ # Count of stale
320
+ val = report.stale.count
321
+ status = case val
322
+ when val == 0 then 'ok'
323
+ when val < 3 then 'danger'
324
+ else 'warning'
325
+ end
326
+ send_event('kanban_stale', {current: val, last: nil, value: val, status: status})
327
+
328
+ # List of stale
329
+ list = []
330
+ report.stale.each do |t|
331
+ label = t["title"]
332
+ who = report.user_by_id(t["owner_id"].to_i)
333
+ list.push({label: "#{label} - #{who ? who['name'] : 'Nobody'}", value: nil})
334
+ end
335
+ send_event('kanban_stale_list', items: list, status: 'ok')
336
+
337
+ # List of stale
338
+ list = []
339
+ report.with_deadline.each do |t|
340
+ label = t["title"]
341
+ time = Time.parse(t["deadline"]).strftime("%a %d %b")
342
+ list.push({label: "#{time}: #{label}", value: nil})
343
+ end
344
+ send_event('kanban_deadline_list', items: list, status: 'ok')
345
+
346
+ end
347
+ end
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/kancmd.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'kancmd/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "kancmd"
8
+ spec.version = Kancmd::VERSION
9
+ spec.authors = ["Tobin Harris"]
10
+ spec.email = ["tobin@tobinharris.com"]
11
+
12
+ # if spec.respond_to?(:metadata)
13
+ # spec.metadata['allowed_push_host'] = "http://rubygems.org"
14
+ # end
15
+
16
+ spec.summary = %q{Kanbanery reporting tool (very basic right now)}
17
+ spec.description = %q{For listing WIP on your Kanbanery board}
18
+ spec.homepage = "http://github.com/pocketworks/kancmd"
19
+ spec.license = "MIT"
20
+
21
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.8"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ end
@@ -0,0 +1,3 @@
1
+ module Kancmd
2
+ VERSION = "0.1.0"
3
+ end
data/lib/kancmd.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "kancmd/version"
2
+
3
+ module Kancmd
4
+ # Your code goes here...
5
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kancmd
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Tobin Harris
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.8'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: For listing WIP on your Kanbanery board
42
+ email:
43
+ - tobin@tobinharris.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".travis.yml"
50
+ - CODE_OF_CONDUCT.md
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - bin/console
56
+ - bin/kan
57
+ - bin/setup
58
+ - kancmd.gemspec
59
+ - lib/kancmd.rb
60
+ - lib/kancmd/version.rb
61
+ homepage: http://github.com/pocketworks/kancmd
62
+ licenses:
63
+ - MIT
64
+ metadata: {}
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubyforge_project:
81
+ rubygems_version: 2.4.6
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: Kanbanery reporting tool (very basic right now)
85
+ test_files: []