From 635d099419225110a91fb46b75a9d7de606ab897 Mon Sep 17 00:00:00 2001 From: Sean Arnold Date: Fri, 16 Dec 2011 10:14:21 +1300 Subject: [PATCH] Fixed 'class_inheritable_attribute is deprecated' error for Rails 3.1 --- lib/comma/object.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/comma/object.rb b/lib/comma/object.rb index 83cad11..93a06ee 100644 --- a/lib/comma/object.rb +++ b/lib/comma/object.rb @@ -1,5 +1,5 @@ class Object - class_inheritable_accessor :comma_formats + class_attribute :comma_formats def self.comma(style = :default, &block) (self.comma_formats ||= {})[style] = block