Method: LibGems::Specification.required_attribute
- Defined in:
- lib/libgems/specification.rb
.required_attribute(*args) ⇒ Object
Same as attribute above, but also records this attribute as mandatory.
196 197 198 199 |
# File 'lib/libgems/specification.rb', line 196 def self.required_attribute(*args) @@required_attributes << args.first attribute(*args) end |