class HaveAPI::Fs::Components::CreateActionDir

Public Instance Methods

exec() click to toggle source
Calls superclass method HaveAPI::Fs::Components::ActionDir#exec
# File lib/haveapi/fs/components/create_action_dir.rb, line 5
def exec
  ret = super
  
  if ret.is_a?(HaveAPI::Client::Response) && ret.ok?
    context[:resource_dir].refresh
  end

  ret
end