CodeInventory GitHub
This is an experimental gem that is currently in an alpha stage. The features and interface are unstable and may change at any time.
The codeinventory-github gem is a CodeInventory plugin. This plugin allows CodeInventory to gather metadata from GitHub repositories. It builds a list of projects based on a combination of:
.codeinventory.ymland.codeinventory.jsonfiles in GitHub repositories- GitHub metadata
- Manually specified overrides
This tool currently supports the following code.json fields:
- name
- description
- license
- openSourceProject
- governmentWideReuseProject
- tags
- contact > email
- repository
- organization
Most of these are fields required by Code.gov. The plan is to gradually add in the rest of the optional fields.
Installation
Add this line to your application's Gemfile:
gem 'codeinventory-github'
And then execute:
$ bundle
Or install it yourself as:
$ gem install codeinventory-github
Usage
Basically:
require "codeinventory"
require "codeinventory/github"
auth = { access_token: "GITHUB_ACCESS_TOKEN" }
github_source = CodeInventory::GitHub.new(auth, "GITHUB_ORG_NAME")
inventory = CodeInventory::Inventory.new(github_source)
inventory.projects # Returns an array of projects in the GitHub org
The codeinventory-github plugin will then automatically harvest the given organization's repository metadata from GitHub metadata.
Authentication
This gem uses the Octokit GitHub client to interface with the GitHub API.
For the auth parameter when instantiating CodeInventory::GitHub, provide any type of authentication information that Octokit supports. Examples: a basic login/password, OAuth access token, or application authentication.
Using inventory files
If you want more fine-grained control over project metadata beyond what is in the GitHub metadata, you can optionally include a .codeinventory.yml or .codeinventory.json file in the root directories of your GitHub project repositories. For each repository that has such a file, codeinventory-github will automatically use the metadata from it.
YAML Format (.codeinventory.yml)
name: Product One
description: An awesome product.
license: http://www.usa.gov/publicdomain/label/1.0/
openSourceProject: 1
governmentWideReuseProject: 1
tags:
- usa
contact:
email: [email protected]
repository: https://github.com/octocat/Spoon-Knife
organization: ABC Bureau
JSON Format (.codeinventory.json)
{
"name": "Product One",
"description": "An awesome product.",
"license": "http://www.usa.gov/publicdomain/label/1.0/",
"openSourceProject": 1,
"governmentWideReuseProject": 1,
"tags": [
"usa"
],
"contact": {
"email": "[email protected]"
},
"repository": "https://github.com/octocat/Spoon-Knife",
"organization": "ABC Bureau"
}
Excluding a repo via the metadata file
The .codeinventory.yml or .codeinventory.json file can instruct the CodeInventory tool to exclude a repository from the inventory. Use this when you have a repository that should not be included in the inventory for any reason, such as repositories that do not contain source code or contain only experimental code.
YAML (.codeinventory.yml):
codeinventory:
exclude: true
JSON (.codeinventory.json):
{
"codeinventory": {
"exclude": true
}
}
Using overrides
You can override any of the inventory fields by passing an override hash.
overrides = {
tags: ["my-tag-1", "my-tag-2"],
contact: {
email: "[email protected]"
}
}
github_source = CodeInventory::GitHub.new({ access_token: "GITHUB_ACCESS_TOKEN" }, "GITHUB_ORG_NAME", overrides: overrides)
In this example, codeinventory-github will set the tags on all your projects to my-tag-1 and my-tag-2 also use the contact email you specified on all projects.
Excluding repositories
You can exclude any repository from scanning.
exclusions = ["not-a-real-product", "DontScanMe"]
github_source = CodeInventory::GitHub.new({ access_token: "GITHUB_ACCESS_TOKEN" }, "GITHUB_ORG_NAME", exclude: exclusions)
In this example, codeinventory-github will ignore the repositories named not-a-real-product or DontScanMe.
Development
After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in github.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/GSA/codeinventory-github.