module FileSv

Create Service Virtualization from a simple file system

Constants

VERSION

Public Class Methods

rest_methods() click to toggle source

@return [Hash] Mapping of REST method names to setting classes

# File lib/file_sv.rb, line 20
def rest_methods
  {
    get: GetSettings, post: PostSettings, patch: PatchSettings, options: OptionsSettings,
    delete: DeleteSettings, put: PutSettings
  }
end