Merge pull request #314 from jonabc/autoload-rugged

Autoload rugged
This commit is contained in:
Jon Ruskin 2018-07-11 09:17:52 -07:00 committed by GitHub
commit 9bc8916d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,6 @@
require_relative 'licensee/version'
require 'forwardable'
require 'pathname'
require 'rugged'
require 'yaml'
module Licensee

View File

@ -5,6 +5,9 @@
# Project files for this project type will contain the following keys:
# :name - the file's path relative to the repo root
# :oid - the file's OID
autoload :Rugged, 'rugged'
module Licensee
module Projects
class GitProject < Licensee::Projects::Project