diff --git a/lib/api_spec/specs/automation.rb b/lib/api_spec/specs/automation.rb new file mode 100644 index 0000000..3d53a77 --- /dev/null +++ b/lib/api_spec/specs/automation.rb @@ -0,0 +1,9 @@ +class ApiSpec::Spec + endpoint 'Automations' do |automation| + automation.method('Index') do |method| + method.synopsis = 'Shows the list of on-demand automations' + method.http_method = 'GET' + method.uri = '/v1/automations' + end + end +end