Class: RoadRunner
- Inherits:
-
Object
- Object
- RoadRunner
- Defined in:
- lib/roadrunner.rb
Overview
Runs around your computer. Does things. Tries to escape the coyote.
Instance Method Summary collapse
-
#initialize(github_repos) ⇒ RoadRunner
constructor
A new instance of RoadRunner.
- #run ⇒ Object
Constructor Details
#initialize(github_repos) ⇒ RoadRunner
Returns a new instance of RoadRunner.
8 9 10 |
# File 'lib/roadrunner.rb', line 8 def initialize(github_repos) @github_repos = github_repos end |
Instance Method Details
#run ⇒ Object
12 13 14 |
# File 'lib/roadrunner.rb', line 12 def run GitCloner.new.clone_repos(@github_repos) end |