Skip to content

Instantly share code, notes, and snippets.

View jmgarnier's full-sized avatar
💭
❤️🚲

Jean-Michel Garnier jmgarnier

💭
❤️🚲
View GitHub Profile
@jmgarnier
jmgarnier / transform_zenhub_csv.rb
Last active March 16, 2021 16:25
Generate scattered plot diagram with Cycle Time (Y axis) and Story Point (X axis) from Zenhub Cycle time report
# Generate scattered plot diagram with Cycle Time (Y axis) and Story Point (X axis) from Zenhub Cycle time report
require 'bundler/inline'
gemfile(true) do # true => gems that aren't already installed on the user's system should be installed.
source 'https://rubygems.org'
gem 'csv'
gem 'activesupport'
gem 'google_drive'