Method: SOCMaker::SParameter#initialize
- Defined in:
- lib/soc_maker/sparameter.rb
#initialize(path, file_dst, optional = {}) ⇒ SParameter
This constructor expects the source file path, the destination file path. The paremters can be passed as optional arguments.
path
-
source file path
file_dst
-
destination file path
79 80 81 82 |
# File 'lib/soc_maker/sparameter.rb', line 79 def initialize( path, file_dst, optional = {} ) init_with( { 'path' => path, 'file_dst' => file_dst }.merge( optional ) ) end |