Class: SQA::Commands::Web
- Defined in:
- lib/sqa/commands/web.rb
Overview
sqa/lib/sqa/commands/web.rb
Constant Summary collapse
- VERSION =
"0.0.1-web"
Constants inherited from Base
Instance Method Summary collapse
-
#call(params) ⇒ Object
params is Object from the ARGV parser.
-
#initialize ⇒ Web
constructor
A new instance of Web.
Constructor Details
#initialize ⇒ Web
Returns a new instance of Web.
41 42 43 |
# File 'lib/sqa/commands/web.rb', line 41 def initialize # TODO: make it happen end |
Instance Method Details
#call(params) ⇒ Object
params is Object from the ARGV parser
47 48 49 50 51 52 53 54 55 |
# File 'lib/sqa/commands/web.rb', line 47 def call(params) config = super puts <<~EOS ############################### ## Running the Web Interface ## ############################### EOS end |