-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing inventory builder, fixing inventory superclass
- Loading branch information
1 parent
ced861d
commit dab01b5
Showing
2 changed files
with
7 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
class ManageIQ::Providers::Google::Inventory < ManagerRefresh::Inventory | ||
class ManageIQ::Providers::Google::Inventory < ManageIQ::Providers::Inventory | ||
require_nested :Collector | ||
require_nested :Parser | ||
require_nested :Persister | ||
|
||
# Default manager for building collector/parser/persister classes | ||
# when failed to get class name from refresh target automatically | ||
def self.default_manager_name | ||
"CloudManager" | ||
end | ||
end |