Class: RakeVersion::Config
- Inherits:
-
Object
- Object
- RakeVersion::Config
- Defined in:
- lib/rake-version/config.rb
Instance Attribute Summary collapse
-
#extension ⇒ Object
Returns the value of attribute extension.
Instance Method Summary collapse
- #copiers ⇒ Object
- #copy(*args) ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
8 9 10 11 12 |
# File 'lib/rake-version/config.rb', line 8 def initialize super @copiers = [] @extension = 'rb' end |
Instance Attribute Details
#extension ⇒ Object
Returns the value of attribute extension.
6 7 8 |
# File 'lib/rake-version/config.rb', line 6 def extension @extension end |
Instance Method Details
#copiers ⇒ Object
20 21 22 |
# File 'lib/rake-version/config.rb', line 20 def copiers Array.new @copiers end |