class Silo::CLI
This class is a Rubikon application that implements the command-line interface for Silo
@author Sebastian Staudt @since 0.1.0
Attributes
repo[W]
Changes the current repository
@see repo
Public Instance Methods
repo()
click to toggle source
Returns the current repository
@return [Repository] The currently configured Silo
repository @raise [RuntimeError] if no repository is configured
# File lib/silo/cli.rb, line 167 def repo raise 'No repository configured.' if @repo.nil? @repo end