Revision 661ca339
Added by Justin Sherrill over 9 years ago
Files
- added
- modified
- copied
- renamed
- deleted
- README.md (diff)
- lib
- runcible
- base.rb (diff)
- extensions
- consumer.rb (diff)
- consumer_group.rb (diff)
- distributor.rb
- export_distributor.rb
- importer.rb
- iso_distributor.rb
- iso_importer.rb
- repository.rb (diff)
- rpm.rb (diff)
- unit.rb (diff)
- yum_clone_distributor.rb
- yum_distributor.rb
- yum_importer.rb
- instance.rb
- models
- resources
- runcible.rb (diff)
- runcible
- test
Changing runcible to support multiple pulp servers.
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:
runc = Runcible::Instance.new(config)
runc.resources.repository.find()