Skip to content

Instantly share code, notes, and snippets.

@mrico
Last active December 12, 2015 00:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrico/4684095 to your computer and use it in GitHub Desktop.
Save mrico/4684095 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems'
require 'set'
require 'net/http'
require "net/https"
require 'json'
require 'pathname'
config_file = "#{ENV['HOME']}/.changelog"
if Pathname.new(config_file).file?
load config_file
end
if not $assembla_api_key or not $assmebla_api_secret
puts "Put a file '.changelog' with the following content in your home folder:"
puts "------"
puts "$assembla_api_key = 'your_api_key'"
puts "$assmebla_api_secret = 'your_api_secret'"
puts "------"
puts
puts "You can find your Assembla API Key on your Profile page."
exit 1
end
if ARGV.length < 2
puts "usage: changelog [space_id] [git-options]+"
exit 1
end
$assembla_space = ARGV[0]
$git_log_options = ARGV[1..-1].join(" ")
def get_assembla_ticket_info(ticket_no)
uri = URI("https://api.assembla.com/v1/spaces/#{$assembla_space}/tickets/#{ticket_no}.json")
req = Net::HTTP::Get.new(uri.request_uri)
req['X-Api-Key'] = $assembla_api_key
req['X-Api-Secret'] = $assmebla_api_secret
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
res = http.start { |h| h.request(req) }
json = JSON.parse(res.body)
if json['error'] == 'invalid_auth'
puts "ERROR: #{json['error_description']}"
exit 2
end
json
end
tickets = Set.new
IO.popen("git log --oneline --no-merges #{$git_log_options}") { |f|
commits = f.readlines
commits.each { |commit|
commit_tickets = commit.scan(/#(\d+)/)
commit_tickets.each { |match|
tickets.add(match[0].to_i)
}
}
}
tickets.sort.each { |x|
ticket = get_assembla_ticket_info(x)
puts "##{x} - #{ticket['summary']} (#{ticket['status']})"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment