fluke/devops-service/app/api3/parsers/chef.rb

17 lines
315 B
Ruby
Raw Normal View History

2015-07-30 15:37:43 +03:00
require_relative "request_parser"
module Devops
2018-04-04 22:44:39 +03:00
module API3
2015-07-30 15:37:43 +03:00
module Parser
2018-04-04 22:44:39 +03:00
class ChefParser < RequestParser
2015-07-30 15:37:43 +03:00
def tags
tags = create_object_from_json_body(Array)
check_array(tags, "Request body should be a not empty array of strings")
end
end
end
end
end