Module: Aruba::Console::Help
- Defined in:
- lib/aruba/console/help.rb
Overview
Helpers for Aruba::Console
Instance Method Summary collapse
-
#aruba_help ⇒ Object
Output help information.
-
#aruba_methods ⇒ Object
List available methods in aruba.
Instance Method Details
#aruba_help ⇒ Object
Output help information
10 11 12 13 14 15 16 17 |
# File 'lib/aruba/console/help.rb', line 10 def aruba_help puts 'Aruba Version: ' + Aruba::VERSION puts 'Issue Tracker: ' + 'https://github.com/cucumber/aruba/issues' puts "Documentation:\n" + %w(http://www.rubydoc.info/gems/aruba).map { |d| format('* %s', d) }.join("\n") puts nil end |
#aruba_methods ⇒ Object
List available methods in aruba
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/aruba/console/help.rb', line 20 def aruba_methods ms = if RUBY_VERSION < '1.9' # rubocop:disable Style/EachWithObject (Aruba::Api.instance_methods - Module.instance_methods).inject([]) { |a, e| a << format("* %s", e); a }.sort # rubocop:enable Style/EachWithObject else (Aruba::Api.instance_methods - Module.instance_methods).each_with_object([]) { |e, a| a << format("* %s", e) }.sort end puts "Available Methods:\n" + ms.join("\n") nil end |