Module: Speedflow::Plugin::Test
- Defined in:
- lib/speedflow/plugin/test.rb,
lib/speedflow/plugin/test/version.rb
Overview
Speedflow test plugin
Constant Summary collapse
- VERSION =
'0.1.5'.freeze
Class Method Summary collapse
-
.method_missing(*args) ⇒ Object
Public: Method missign.
Class Method Details
.method_missing(*args) ⇒ Object
Public: Method missign
Method used to catch others methods to test.
*args - Some arguments :)
Returns nothing.
16 17 18 19 20 21 |
# File 'lib/speedflow/plugin/test.rb', line 16 def method_missing(*args) action = args.first arguments = args.last puts "Load: #{action} with args: #{arguments}" end |