aboutsummaryrefslogtreecommitdiffstats
path: root/lib/refinery/blog/tab.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/refinery/blog/tab.rb')
-rw-r--r--lib/refinery/blog/tab.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/refinery/blog/tab.rb b/lib/refinery/blog/tab.rb
new file mode 100644
index 0000000..083d50b
--- /dev/null
+++ b/lib/refinery/blog/tab.rb
@@ -0,0 +1,28 @@
+module Refinery
+ module Blog
+ attr_accessor :tabs
+
+ def self.tabs
+ @tabs ||= []
+ end
+
+ class Tab
+ attr_accessor :name, :partial
+
+ def self.register(&block)
+ tab = self.new
+
+ yield tab
+
+ raise "A tab MUST have a name!: #{tab.inspect}" if tab.name.blank?
+ raise "A tab MUST have a partial!: #{tab.inspect}" if tab.partial.blank?
+ end
+
+ protected
+
+ def initialize
+ ::Refinery::Blog.tabs << self # add me to the collection of registered page tabs
+ end
+ end
+ end
+end \ No newline at end of file