From 95cf7696bfdaff973a448d4ee350a84abe7f7da4 Mon Sep 17 00:00:00 2001 From: Igor Alexandrov Date: Sun, 17 Nov 2013 20:43:12 +0400 Subject: [PATCH] Issue #9 --- lib/attrio/attribute.rb | 2 +- lib/attrio/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/attrio/attribute.rb b/lib/attrio/attribute.rb index 39d9ccf..9d93fd7 100644 --- a/lib/attrio/attribute.rb +++ b/lib/attrio/attribute.rb @@ -21,7 +21,7 @@ def reader_visibility end def writer_visibility - @writer_visibility ||= self.accessor_name_from_options(:writer) || :public + @writer_visibility ||= self.accessor_visibility_from_options(:writer) || :public end def instance_variable_name diff --git a/lib/attrio/version.rb b/lib/attrio/version.rb index 452c87e..137dc65 100644 --- a/lib/attrio/version.rb +++ b/lib/attrio/version.rb @@ -4,7 +4,7 @@ module Attrio module Version MAJOR = 0 MINOR = 7 - PATCH = 0 + PATCH = 1 BUILD = nil STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')