# File lib/jira/resource/webhook.rb, line 23 def self.all(client, options = {}) response = client.get(collection_path(client)) json = parse_json(response.body) json.map do |attrs| self.new(client, {:attrs => attrs}.merge(options)) end end