fixes #11773 - allow false values for :include_repos
Fixes #11027 - Remove copyright notices
fixing runcible errors caused by rubocop changes
when we turned on rubocop, we converted unused method argumentsto start with underscores. This broke any method that relied onbinding.send(:local_variables). This disables that cop and fixesall of those instances....
Ref #7880: Rubocop fixes update
Added some mods to get copy call accept filters
Merge pull request #83 from jlsherrill/multi
Changing runcible to support multiple pulp servers.
Added code make unit copy accept custom filters
Now, classes need to be instantiated. For example:
Instead of Runcible::Resources::Repository.find()
you would need to use:
Runcible::Resources::Repository.new(config).find()
You can all instantiate Runcible::Instance to get access to all modules:...
unit copy - updates for pulp improvements in unit associate/copy
This commit contains minor changes to allow a user to takeadvantage of pulp improvements for copying large repos.
Refer to https://bugzilla.redhat.com/show_bug.cgi?id=953665for more details.
Added some cosmetic changes for clarity
Updated content unassociate calls to be based of unit_id or content_id
Moved the copy and unassociate logic to a more centralized location
fixes #35 - correctly default to include repos info in unit finds
Updates to how the content type is declared for extensions.Test updates.
Series of documentation updates for extensions that includethe addition of a base Unit extension that all content typesinherit from.