aboutsummaryrefslogtreecommitdiffstats
path: root/lib/refinery/blog.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/refinery/blog.rb')
-rw-r--r--lib/refinery/blog.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/refinery/blog.rb b/lib/refinery/blog.rb
index af39967..326e36a 100644
--- a/lib/refinery/blog.rb
+++ b/lib/refinery/blog.rb
@@ -12,10 +12,16 @@ module Refinery
autoload :Tab, 'refinery/blog/tabs'
class << self
- attr_accessor :root
+ attr_writer :root
+ attr_writer :tabs
+
def root
@root ||= Pathname.new(File.expand_path('../../', __FILE__))
end
+
+ def tabs
+ @tabs ||= []
+ end
def version
::Refinery::Blog::Version.to_s