pivotal-tracker-speedchart 0.0.2

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: f24635b90c33bbc1bd43540c4270bcc917b95313
4
+ data.tar.gz: c913fbaa33d5435f02132049b0325a080a8a6735
5
+ SHA512:
6
+ metadata.gz: dc12a43059d7aa56808cbffd324c69ec65168fb82a0939af92bbca89d87bf300ff2cdc6676c2fbd102a2cd12b7373fe7bf1aa6785410bdcbd12617e608e1dec8
7
+ data.tar.gz: e85e74ed82ea77d8f0b07a591c8188f958991c859e0d9b138f507202464c0a15499ce0b0a635fe9e18a003d5e0d80330fd370646458e77cc12e9ad1bff69ce88
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
+ </project>
5
+
data/.idea/misc.xml ADDED
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.0.0-p247" project-jdk-type="RUBY_SDK" />
4
+ <component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false" SSL_PROTOCOLS="sslv3">
5
+ <option name="USER" value="" />
6
+ <option name="PASSWORD" value="" />
7
+ <option name="mySSHConnectionTimeout" value="30000" />
8
+ <option name="mySSHReadTimeout" value="30000" />
9
+ <option name="LAST_MERGED_REVISION" />
10
+ <option name="MERGE_DRY_RUN" value="false" />
11
+ <option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
12
+ <option name="UPDATE_LOCK_ON_DEMAND" value="false" />
13
+ <option name="IGNORE_SPACES_IN_MERGE" value="false" />
14
+ <option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
15
+ <option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
16
+ <option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
17
+ <option name="FORCE_UPDATE" value="false" />
18
+ <option name="IGNORE_EXTERNALS" value="false" />
19
+ <myIsUseDefaultProxy>false</myIsUseDefaultProxy>
20
+ </component>
21
+ </project>
22
+
data/.idea/modules.xml ADDED
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/pivotal-tracker-speedchart.iml" filepath="$PROJECT_DIR$/.idea/pivotal-tracker-speedchart.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
9
+
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="FacetManager">
4
+ <facet type="gem" name="Gem">
5
+ <configuration>
6
+ <option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
7
+ <option name="GEM_APP_TEST_PATH" value="" />
8
+ <option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
9
+ </configuration>
10
+ </facet>
11
+ </component>
12
+ <component name="NewModuleRootManager">
13
+ <content url="file://$MODULE_DIR$" />
14
+ <orderEntry type="inheritedJdk" />
15
+ <orderEntry type="sourceFolder" forTests="false" />
16
+ </component>
17
+ </module>
18
+
@@ -0,0 +1,5 @@
1
+ <component name="DependencyValidationManager">
2
+ <state>
3
+ <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
+ </state>
5
+ </component>
data/.idea/vcs.xml ADDED
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
7
+
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in pivotal-tracker-speedchart.gemspec
4
+ gemspec
5
+
6
+
7
+ group :test do
8
+ gem 'rspec'
9
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Tsuyoshi Ushio
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # Pivotal::Tracker::Speedchart
2
+
3
+ TODO: Now under construction
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'pivotal-tracker-speedchart'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install pivotal-tracker-speedchart
18
+
19
+ ## Usage
20
+
21
+ create .speedchart file
22
+
23
+ token : 'pivotal tracker api-token of you'
24
+ project_id : project_id of your project in pivotal tracker
25
+ started_at : when project was stated (It is used for started date of speed chart data)
26
+
27
+ example
28
+
29
+ token : '51423c566101d5....'
30
+ project_id : 871...
31
+ started_at : 2013-06-01
32
+
33
+ then type this
34
+
35
+ $ speedchart
36
+
37
+ or If you want to specify the started date, use this.
38
+
39
+ $ speedchart 20130610
40
+
41
+
42
+ You can get speed_chart.xls. Please create speed chart using excel graph functions!
43
+
44
+
45
+ ## Contributing
46
+
47
+ 1. Fork it
48
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
49
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
50
+ 4. Push to the branch (`git push origin my-new-feature`)
51
+ 5. Create new Pull Request
52
+
53
+
54
+ ## Reference
55
+
56
+ I use this guy's code about spreadsheet(exce_base.rb). Thank you!
57
+
58
+ http://blog.livedoor.jp/sasata299/archives/51351663.html
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ Dir.glob(File.expand_path('../lib/tasks/*.rake', __FILE__)).each { |f| load f }
data/bin/speedchart ADDED
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "pivotal/tracker/speedchart"
4
+ require "date"
5
+
6
+ include Pivotal::Tracker::Speedchart
7
+ begin
8
+ if ARGV[0].nil?
9
+ create_speed_chart
10
+ else
11
+ date = DateTime.parse(ARGV[0])
12
+ create_speed_chart_with_date(date.year, date.month, date.day)
13
+ end
14
+ rescue ArgumentError
15
+ puts "Aborted! Please specify date format"
16
+ puts "ex. $ speedchart 20130610"
17
+ exit -1
18
+ end
19
+
20
+ create_message_of_speed_chart
21
+ story_state_of_today
22
+
23
+
@@ -0,0 +1,52 @@
1
+ # Excel Base Module
2
+ #
3
+
4
+ require 'rubygems'
5
+ require 'spreadsheet'
6
+
7
+
8
+ module ExcelBase
9
+
10
+ Spreadsheet.client_encoding = 'UTF-8'
11
+
12
+ class NormalFormat < Spreadsheet::Format
13
+ def initialize(opts={})
14
+ super opts.merge(:size => 11)
15
+ end
16
+ end
17
+
18
+ class TitleFormat < NormalFormat
19
+ def initialize
20
+ super :color => :red, :weight => :bold, :horizontal_align => :center
21
+ end
22
+ end
23
+
24
+ class ColorFormat < NormalFormat
25
+ def initialize(color)
26
+ super :pattern => 1, :pattern_fg_color => color
27
+ end
28
+ end
29
+ end
30
+
31
+ module Spreadsheet
32
+ class Workbook
33
+ def create_worksheet_with_name(name)
34
+ sheet = create_worksheet(:name => name)
35
+ sheet.default_format = ExcelBase::NormalFormat.new
36
+ return sheet
37
+ end
38
+ end
39
+
40
+ class Row
41
+ def make_title(title_array)
42
+ concat title_array
43
+ self.default_format = ExcelBase::TitleFormat.new
44
+ self.height = 14
45
+ end
46
+
47
+ def add_data(data_array)
48
+ concat data_array
49
+ self.height = 14
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,103 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ require 'pivotal-tracker'
4
+ require 'yaml'
5
+
6
+ module Pivotal
7
+ module Tracker
8
+ # Mapper of outer resource
9
+ # This version only for Pivotal Tracker
10
+ # @author Tsuyoshi Ushio
11
+ module Mapper
12
+ def self.append_features(base)
13
+ begin
14
+ config = YAML.load_file('.speedchart')
15
+ rescue
16
+ puts "Please create config file '.speedchart'"
17
+ exit -1
18
+ end
19
+
20
+ begin
21
+ PivotalTracker::Client.token = config['token']
22
+ @@project = PivotalTracker::Project.find(config['project_id'])
23
+ rescue RestClient::Unauthorized
24
+ puts "Wrong token. please check out .speedchart"
25
+ exit -1
26
+ rescue RestClient::ResourceNotFound
27
+ puts "Wrong project_id. please check out .speedchart"
28
+ exit -1
29
+ end
30
+
31
+ @@project_started_at = config['started_at']
32
+
33
+ unless @@project_started_at.class == Date
34
+ puts "Wrong started_at. please check out .speedchart"
35
+ exit -1
36
+ end
37
+
38
+ super
39
+ end
40
+
41
+ def project_started_at
42
+ @@project_started_at
43
+ end
44
+
45
+ # Returns stories on the BackLog
46
+ # @return [Array<PivotalTracker::Story>] stories on the backlog
47
+ def current_stories
48
+ # type = feature and not unscheduled
49
+ @@project.stories.all.select{|x| (x.story_type == "feature") && (x.current_state != "unscheduled")}
50
+ end
51
+
52
+ # Return stories match the state
53
+ # @param [String] state of story (unstarted/finished/delivered/accepted)
54
+ # @return [Array<PivotalTracker::Story>] stories on the backlog selected by state
55
+ def find_by_state_stories(state)
56
+ current_stories.select{|x| x.current_state == state}
57
+ end
58
+
59
+ # Returns all stories created before the date
60
+ # @param date [Date] the date
61
+ # @param stories [PivotalTracker::Story] Stories
62
+ # @return [Array<PivotalTracker::Story>] stories created befor the date
63
+ def total_stories(date, stories)
64
+ stories.select{|story| story.created_at.to_date <= date}
65
+ end
66
+
67
+ # Returns all stories accepted and created before the date
68
+ # @param date [Date] the date
69
+ # @param stories [PivotalTracker::Story] Stories
70
+ # @return [Array<PivotalTracker::Story>] stories accepted and created before the date
71
+ def accepted_stories(date, stories)
72
+ stories.select{|story| (!story.accepted_at.nil? && story.accepted_at.to_date <= date)}
73
+ end
74
+
75
+ # Returns the report of the story sizes.
76
+ # @param date [Date] the date
77
+ # @param stories [PivotalTracker::Story] Stories
78
+ # @return [Array<Integer,Integer,Integer,Integer>] [Total, Accepted, Todo]
79
+ def aggrigate_story_size_by_date(date, stories)
80
+ total_size = total_stories(date, stories).size
81
+ accepted_size = accepted_stories(date, stories).size
82
+ [total_size, accepted_size, total_size - accepted_size]
83
+ end
84
+
85
+ # Returns All Story Num, Accepted Num and Todo Num
86
+ # @param year [Integer] start year
87
+ # @param month [Integer] start month
88
+ # @param day [Integer] start day
89
+ # @return [Array<Date, Integer, Integer,Integer>] [Date, Total, Accepted, Todo]
90
+ def summrize_stories(year, month, day)
91
+ stories = current_stories
92
+ story_summaries = Array.new
93
+ (Date.new(year, month, day).. Date.today).each{|current_date|
94
+ story_summaries << [current_date , aggrigate_story_size_by_date(current_date, stories)].flatten
95
+ }
96
+ story_summaries
97
+ end
98
+ module_function :project_started_at
99
+ module_function :summrize_stories
100
+ module_function :current_stories
101
+ end
102
+ end
103
+ end
@@ -0,0 +1,86 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ require "pivotal/tracker/speedchart/version"
4
+ require "pivotal/tracker/excel_base"
5
+ require "pivotal/tracker/mapper"
6
+ require 'date'
7
+
8
+ module Pivotal
9
+ module Tracker
10
+ # Speed Chart Generator using Pivotal-Tracker
11
+ # @author Tsuyoshi Ushio
12
+ module Speedchart
13
+ include Pivotal::Tracker::Mapper
14
+ include ExcelBase
15
+ include Spreadsheet
16
+
17
+ # Creates project summary for speed chart
18
+ # generates speed_chart.xls on current directory
19
+ # @param year [Integer] started year
20
+ # @param month [Integer] stared month
21
+ # @param day [Integer] stared day
22
+ def create_excel_by_story_summary(year, month, day)
23
+
24
+ xls_file_name = 'speed_chart.xls'
25
+
26
+ File.delete(xls_file_name) if File.exists?(xls_file_name)
27
+ book = Spreadsheet::Workbook.new
28
+ sheet = book.create_worksheet_with_name Date.today.to_s
29
+ sheet.row(0).make_title ["Date", "total", "accepted", "todo"]
30
+ summrize_stories(year, month, day).each_with_index do |story_summary, i|
31
+ sheet.row(i+1).add_data story_summary
32
+ end
33
+ book.write xls_file_name
34
+ end
35
+
36
+ # Generates speed_chart.xls on current directory
37
+ # From the first date of the project to today.
38
+ def create_speed_chart
39
+ create_excel_by_story_summary(project_started_at.year, project_started_at.month, project_started_at.day)
40
+ end
41
+
42
+ # Generates speed_chart.xls on current directory
43
+ # Compare with create_speed_chart, you can specify stated date
44
+ # @param year [Integer] started year
45
+ # @param month [Integer] started month
46
+ # @param day [Integer] started day
47
+ def create_speed_chart_with_date(year, month, day)
48
+ create_excel_by_story_summary(year, month, day)
49
+ end
50
+
51
+
52
+ # Shows all story detail on the backlog
53
+ #
54
+ def current_story_dump
55
+ current_stories.each{|story|
56
+ puts story.story_type + ":" + story.name + ":" + story.current_state + ":" + story.created_at.to_s + ":" + story.created_at.class.to_s + ":" + story.accepted_at.to_s + ":" + story.url
57
+ }
58
+ end
59
+
60
+ # Current project status of today.
61
+ def story_state_of_today
62
+ puts "-------------------------"
63
+ puts "Project Status"
64
+ puts Time.now.to_s
65
+ puts "-------------------------"
66
+ puts "total :"+current_stories.size.to_s
67
+ puts "unstareted :"+find_by_state_stories("unstarted").size.to_s
68
+ puts "started :"+find_by_state_stories("started").size.to_s
69
+ puts "finished :"+find_by_state_stories("finished").size.to_s
70
+ puts "delivered :"+find_by_state_stories("delivered").size.to_s
71
+ puts "accepted :"+find_by_state_stories("accepted").size.to_s
72
+ puts "-------------------------"
73
+ end
74
+
75
+ # Message of generation
76
+ def create_message_of_speed_chart
77
+ puts "-------------------------"
78
+ puts "Speed Chart Generator ver1.0 "
79
+ puts "'speed_chart.xls' was successfully generated."
80
+ puts "Lets create speedchart using line graph!"
81
+ puts ""
82
+ end
83
+
84
+ end
85
+ end
86
+ end
@@ -0,0 +1,7 @@
1
+ module Pivotal
2
+ module Tracker
3
+ module Speedchart
4
+ VERSION = "0.0.2"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ require 'yard'
2
+ require 'yard/rake/yardoc_task'
3
+
4
+
5
+ YARD::Rake::YardocTask.new do |t|
6
+ t.files = ['lib/**/*.rb']
7
+ t.options = ['--no-private']
8
+ t.options << '--debug' << '--verbose' if $trace
9
+ end
@@ -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 'pivotal/tracker/speedchart/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "pivotal-tracker-speedchart"
8
+ spec.version = Pivotal::Tracker::Speedchart::VERSION
9
+ spec.authors = ["Tsuyoshi Ushio"]
10
+ spec.email = ["ushio@simplearchitect.com"]
11
+ spec.description = %q{Create speedchart from pivotal tracker}
12
+ spec.summary = %q{speed chart creator}
13
+ spec.homepage = "http://rubygems.org/gems/pivotal-tracker-speedchart"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_runtime_dependency "pivotal-tracker"
24
+ spec.add_runtime_dependency "spreadsheet"
25
+ spec.add_runtime_dependency "yard"
26
+ spec.add_runtime_dependency "redcarpet"
27
+
28
+ end
metadata ADDED
@@ -0,0 +1,148 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pivotal-tracker-speedchart
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Tsuyoshi Ushio
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-12 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pivotal-tracker
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: spreadsheet
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: redcarpet
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Create speedchart from pivotal tracker
98
+ email:
99
+ - ushio@simplearchitect.com
100
+ executables:
101
+ - speedchart
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - .gitignore
106
+ - .idea/encodings.xml
107
+ - .idea/misc.xml
108
+ - .idea/modules.xml
109
+ - .idea/pivotal-tracker-speedchart.iml
110
+ - .idea/scopes/scope_settings.xml
111
+ - .idea/vcs.xml
112
+ - Gemfile
113
+ - LICENSE.txt
114
+ - README.md
115
+ - Rakefile
116
+ - bin/speedchart
117
+ - lib/pivotal/tracker/excel_base.rb
118
+ - lib/pivotal/tracker/mapper.rb
119
+ - lib/pivotal/tracker/speedchart.rb
120
+ - lib/pivotal/tracker/speedchart/version.rb
121
+ - lib/tasks/yard.rake
122
+ - pivotal-tracker-speedchart.gemspec
123
+ homepage: http://rubygems.org/gems/pivotal-tracker-speedchart
124
+ licenses:
125
+ - MIT
126
+ metadata: {}
127
+ post_install_message:
128
+ rdoc_options: []
129
+ require_paths:
130
+ - lib
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - '>='
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - '>='
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ requirements: []
142
+ rubyforge_project:
143
+ rubygems_version: 2.0.6
144
+ signing_key:
145
+ specification_version: 4
146
+ summary: speed chart creator
147
+ test_files: []
148
+ has_rdoc: