Sha256: ea10aed26e9e1c0e6b5a2c3db022eb27b34caf294012afaeb172d4bbe1c1013e

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 KB

Contents

= Parameters

* http://parameters.rubyforge.org/
* https://github.com/postmodern/parameters
* Postmodern (postmodern.mod3 at gmail.com)

== DESCRIPTION:

Parameters allows you to add annoted variables to your classes which may
have configurable default values.

== FEATURES:

* Give parameters default values.
* Change default values of parameters.
* Give descriptions to parameters.

== EXAMPLES:

  class Octagon
  
    include Parameters
  
    parameter :x, :value => 0
  
    parameter :y, :value => 0.5
  
    parameter :radius, :description => 'The radius of the Octagon'
  
  end
  
  oct = Octagon.new
  oct.x # => 0
  oct.y # => 0.5
  
  oct = Octagon.new(:radius => 10)
  oct.radius # => 10
  
  Octagon.radius = 33
  oct = Octagon.new
  oct.radius # => 33

== INSTALL:

  $ sudo gem install parameters

== LICENSE:

The MIT License

Copyright (c) 2008 Hal Brodigan

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
parameters-0.1.1 README.txt