Class: Macros4Cuke::Application
- Inherits:
-
Object
- Object
- Macros4Cuke::Application
- Defined in:
- lib/macros4cuke/application.rb
Overview
Runner for the Macros4Cuke application.
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize ⇒ Application
constructor
A new instance of Application.
-
#run!(theCmdLineArgs) ⇒ Object
Entry point for the application object.
Constructor Details
#initialize ⇒ Application
Returns a new instance of Application.
14 15 16 |
# File 'lib/macros4cuke/application.rb', line 14 def initialize() = {} end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
10 11 12 |
# File 'lib/macros4cuke/application.rb', line 10 def end |
Instance Method Details
#run!(theCmdLineArgs) ⇒ Object
Entry point for the application object.
19 20 21 22 23 24 25 26 |
# File 'lib/macros4cuke/application.rb', line 19 def run!(theCmdLineArgs) = (theCmdLineArgs) return unless [:setup] [:setup].each do |a_path| setup_project(a_path) end end |