aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--features/authors.feature2
-rw-r--r--features/tags.feature2
-rw-r--r--lib/refinery/blog/tabs.rb (renamed from lib/refinery/blog/tab.rb)0
-rw-r--r--lib/refinerycms-blog.rb8
4 files changed, 8 insertions, 4 deletions
diff --git a/features/authors.feature b/features/authors.feature
index 0e17e32..f3fd3ec 100644
--- a/features/authors.feature
+++ b/features/authors.feature
@@ -8,7 +8,7 @@ Feature: Blog Post Authors
When I am on the new blog post form
And I fill in "Title" with "This is my blog post"
- And I fill in "Body" with "And I love it"
+ And I fill in "blog_post_body" with "And I love it"
And I press "Save"
Then there should be 1 blog post
diff --git a/features/tags.feature b/features/tags.feature
index 05d6028..24dff2a 100644
--- a/features/tags.feature
+++ b/features/tags.feature
@@ -12,7 +12,7 @@ Feature: Blog Post Tags
Scenario: The blog post new/edit form saves tag_list
When I am on the new blog post form
And I fill in "Title" with "This is my blog post"
- And I fill in "Body" with "And I love it"
+ And I fill in "blog_post_body" with "And I love it"
And I fill in "Tags" with "chicago, bikes, beers, babes"
And I press "Save"
diff --git a/lib/refinery/blog/tab.rb b/lib/refinery/blog/tabs.rb
index 083d50b..083d50b 100644
--- a/lib/refinery/blog/tab.rb
+++ b/lib/refinery/blog/tabs.rb
diff --git a/lib/refinerycms-blog.rb b/lib/refinerycms-blog.rb
index db9beda..407b840 100644
--- a/lib/refinerycms-blog.rb
+++ b/lib/refinerycms-blog.rb
@@ -3,8 +3,8 @@ require 'filters_spam'
module Refinery
module Blog
autoload :Version, File.expand_path('../refinery/blog/version', __FILE__)
- autoload :Tab, File.expand_path("../refinery/blog/tab", __FILE__)
-
+ autoload :Tab, File.expand_path("../refinery/blog/tabs", __FILE__)
+
class << self
def version
::Refinery::Blog::Version.to_s
@@ -16,6 +16,10 @@ module Refinery
app.middleware.insert_after ::ActionDispatch::Static, ::ActionDispatch::Static, "#{root}/public"
end
+ config.to_prepare do
+ require File.expand_path('../refinery/blog/tabs', __FILE__)
+ end
+
config.after_initialize do
Refinery::Plugin.register do |plugin|
plugin.name = "refinerycms_blog"