# -*- encoding: utf-8 -*- # stub: loquacious 1.4.1 ruby lib Gem::Specification.new do |s| s.name = "loquacious".freeze s.version = "1.4.1".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Tim Pease".freeze] s.date = "2009-11-29" s.description = "Descriptive configuration files for Ruby written in Ruby.\n\nLoquacious provides a very open configuration system written in ruby and\ndescriptions for each configuration attribute. The attributes and descriptions\ncan be iterated over allowing for helpful information about those attributes to\nbe displayed to the user.\n\nIn the simple case we have a file something like\n\n Loquacious.configuration_for('app') {\n name 'value', :desc => \"Defines the name\"\n foo 'bar', :desc => \"FooBar\"\n id 42, :desc => \"Ara T. Howard\"\n }\n\nWhich can be loaded via the standard Ruby loading mechanisms\n\n Kernel.load 'config/app.rb'\n\nThe attributes and their descriptions can be printed by using a Help object\n\n help = Loquacious.help_for('app')\n help.show :values => true # show the values for the attributes, too\n\nDescriptions are optional, and configurations can be nested arbitrarily deep.\n\n Loquacious.configuration_for('nested') {\n desc \"The outermost level\"\n a {\n desc \"One more level in\"\n b {\n desc \"Finally, a real value\"\n c 'value'\n }\n }\n }\n\n config = Loquacious.configuration_for('nested')\n\n p config.a.b.c #=> \"value\"\n\nAnd as you can see, descriptions can either be given inline after the value or\nthey can appear above the attribute and value on their own line.".freeze s.email = "tim.pease@gmail.com".freeze s.extra_rdoc_files = ["History.txt".freeze, "README.rdoc".freeze] s.files = ["History.txt".freeze, "README.rdoc".freeze, "Rakefile".freeze, "examples/gutters.rb".freeze, "examples/nested.rb".freeze, "examples/simple.rb".freeze, "lib/loquacious.rb".freeze, "lib/loquacious/configuration.rb".freeze, "lib/loquacious/configuration/help.rb".freeze, "lib/loquacious/configuration/iterator.rb".freeze, "lib/loquacious/core_ext/string.rb".freeze, "spec/configuration_spec.rb".freeze, "spec/help_spec.rb".freeze, "spec/iterator_spec.rb".freeze, "spec/loquacious_spec.rb".freeze, "spec/spec.opts".freeze, "spec/spec_helper.rb".freeze, "spec/string_spec.rb".freeze] s.homepage = "http://gemcutter.org/gems/loquacious".freeze s.rdoc_options = ["--main".freeze, "README.rdoc".freeze] s.rubygems_version = "3.5.10".freeze s.summary = "Descriptive configuration files for Ruby written in Ruby".freeze s.specification_version = 3 s.add_development_dependency(%q.freeze, [">= 1.2.9".freeze]) s.add_development_dependency(%q.freeze, [">= 1.1.1".freeze]) s.add_development_dependency(%q.freeze, [">= 1.2.0".freeze]) s.add_development_dependency(%q.freeze, [">= 3.1.0".freeze]) end