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
|