agilecreativity/github_exporter

View on GitHub
bin/github_exporter

Summary

Maintainability
Test Coverage
#!/usr/bin/env ruby
require_relative "../lib/github_exporter"
include GithubExporter
if ARGV.empty?
  GithubExporter::CLI.start(%w[usage])
else
  GithubExporter::CLI.start(%w[export].concat(ARGV))
end