Sha256: 051f6b6f59fa3a97311a45393d01a555c311bcffd99760545b150d43ad778a89
Contents?: true
Size: 496 Bytes
Versions: 29
Compression:
Stored size: 496 Bytes
Contents
# A simple example that configures three options (a b c) along with # descriptions for each option. The descriptions along with the # values for the configuration options are printed to the terminal. require 'loquacious' include Loquacious Configuration.for(:simple) { desc 'Your first configuration option' a "value for 'a'" desc 'To be or not to be' b "William Shakespeare" desc 'The underpinings of Ruby' c 42 } help = Configuration.help_for :simple help.show :values => true
Version data entries
29 entries across 29 versions & 3 rubygems