--- !ruby/object:Gem::Specification name: loquacious version: !ruby/object:Gem::Version hash: 11 prerelease: false segments: - 1 - 7 - 0 version: 1.7.0 platform: ruby authors: - Tim Pease autorequire: bindir: bin cert_chain: [] date: 2010-08-16 00:00:00 -06:00 default_executable: dependencies: - !ruby/object:Gem::Dependency name: rspec prerelease: false requirement: &id001 !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 27 segments: - 1 - 3 - 0 version: 1.3.0 type: :development version_requirements: *id001 description: |- Descriptive configuration files for Ruby written in Ruby. Loquacious provides a very open configuration system written in ruby and descriptions for each configuration attribute. The attributes and descriptions can be iterated over allowing for helpful information about those attributes to be displayed to the user. In the simple case we have a file something like Loquacious.configuration_for('app') { name 'value', :desc => "Defines the name" foo 'bar', :desc => "FooBar" id 42, :desc => "Ara T. Howard" } Which can be loaded via the standard Ruby loading mechanisms Kernel.load 'config/app.rb' The attributes and their descriptions can be printed by using a Help object help = Loquacious.help_for('app') help.show :values => true # show the values for the attributes, too Descriptions are optional, and configurations can be nested arbitrarily deep. Loquacious.configuration_for('nested') { desc "The outermost level" a { desc "One more level in" b { desc "Finally, a real value" c 'value' } } } config = Loquacious.configuration_for('nested') p config.a.b.c #=> "value" And as you can see, descriptions can either be given inline after the value or they can appear above the attribute and value on their own line. email: tim.pease@gmail.com executables: [] extensions: [] extra_rdoc_files: - History.txt - README.rdoc - version.txt files: - History.txt - README.rdoc - Rakefile - examples/gutters.rb - examples/nested.rb - examples/simple.rb - lib/loquacious.rb - lib/loquacious/configuration.rb - lib/loquacious/configuration/help.rb - lib/loquacious/configuration/iterator.rb - lib/loquacious/core_ext/string.rb - lib/loquacious/undefined.rb - spec/configuration_spec.rb - spec/help_spec.rb - spec/iterator_spec.rb - spec/loquacious_spec.rb - spec/spec.opts - spec/spec_helper.rb - spec/string_spec.rb - version.txt has_rdoc: true homepage: http://gemcutter.org/gems/loquacious licenses: [] post_install_message: rdoc_options: - --main - README.rdoc require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 3 segments: - 0 version: "0" required_rubygems_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 3 segments: - 0 version: "0" requirements: [] rubyforge_project: codeforpeople rubygems_version: 1.3.7 signing_key: specification_version: 3 summary: Descriptive configuration files for Ruby written in Ruby test_files: []