Sha256: 3615bf1234fdf0b3dd41452763722059a531191b8cae9a0d2ae6f97884799af1
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
Contents
require 'parameters/param' module Parameters class ClassParam < Param # Default value of the class parameter attr_reader :value # # Creates a new ClassParam object. # # @param [Symbol, String] name # The name of the class parameter. # # @param [Class, Array[Class]] type # The enforced type of the class parameter. # # @param [String, nil] description # The description of the class parameter. # # @param [Object, nil] value # The default value of the class parameter. # def initialize(name,type=nil,description=nil,value=nil) super(name,type,description) @value = value end # # Sets the value of the class param. # # @param [Object] value # The new value of the class param. # # @return [Object] # The new value of the class param. # # @since 0.2.0 # def value=(new_value) @value = coerce(new_value) end # # @return [String] # The representation of the class param. # def to_s text = @name.to_s text << " [#{@value.inspect}]" if @value text << "\t#{@description}" if @description return text end # # @return [String] # Inspection of the class params value. # def inspect @value.inspect end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
parameters-0.2.1 | lib/parameters/class_param.rb |
parameters-0.2.0 | lib/parameters/class_param.rb |