Class: RoadRunner

Inherits:
Object
  • Object
show all
Defined in:
lib/roadrunner.rb

Overview

Runs around your computer. Does things. Tries to escape the coyote.

Instance Method Summary collapse

Constructor Details

#initialize(github_repos) ⇒ RoadRunner

Returns a new instance of RoadRunner.

Parameters:

  • github_repos

    An array of URLs pointing to GitHub repositories



8
9
10
# File 'lib/roadrunner.rb', line 8

def initialize(github_repos)
  @github_repos = github_repos
end

Instance Method Details

#runObject



12
13
14
# File 'lib/roadrunner.rb', line 12

def run
  GitCloner.new.clone_repos(@github_repos)
end