2012-12-16 07:36:47 -05:00
|
|
|
def profile
|
|
|
|
@profile ||= reset_profile
|
2012-02-14 11:21:07 -05:00
|
|
|
end
|
|
|
|
|
2012-12-16 07:36:47 -05:00
|
|
|
def reset_profile
|
|
|
|
@profile = nil
|
|
|
|
set_profile DEFAULT_SPEEDPROFILE
|
2012-02-14 11:21:07 -05:00
|
|
|
end
|
|
|
|
|
2012-12-16 07:36:47 -05:00
|
|
|
def set_profile profile
|
|
|
|
@profile = profile
|
2012-02-14 11:21:07 -05:00
|
|
|
end
|
2015-12-01 20:46:29 -05:00
|
|
|
|
|
|
|
def set_extract_args args
|
|
|
|
@extract_args = args
|
|
|
|
end
|
2016-01-29 20:52:20 -05:00
|
|
|
|
2016-03-03 16:25:01 -05:00
|
|
|
def set_contract_args args
|
|
|
|
@contract_args = args
|
2016-01-29 20:52:20 -05:00
|
|
|
end
|