From 082b3c98e848ee5f65b1b78f04f1893b1c795929 Mon Sep 17 00:00:00 2001 From: Brandon Robins Date: Sat, 28 Oct 2017 11:41:29 -0500 Subject: [PATCH] Add :updated_at attr_accessor to Resource --- lib/calligraphy/resource.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/calligraphy/resource.rb b/lib/calligraphy/resource.rb index 4b1e8e8..92d2f25 100644 --- a/lib/calligraphy/resource.rb +++ b/lib/calligraphy/resource.rb @@ -1,6 +1,6 @@ module Calligraphy class Resource - attr_accessor :contents + attr_accessor :contents, :updated_at attr_reader :full_request_path, :mount_point, :request_body, :request_path def initialize(resource: nil, req: nil, mount: nil)