Skip to content

Commit

Permalink
Updated to support Refinery CMS 2.0.1 and Rails 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Mar 6, 2012
1 parent 1a3e0d0 commit fccc86e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .rspec
@@ -1,3 +1 @@
--color spec
--drb
--format Fuubar
--colour
6 changes: 2 additions & 4 deletions lib/refinery/blog/engine.rb
Expand Up @@ -9,11 +9,9 @@ class Engine < Rails::Engine
Refinery::Plugin.register do |plugin|
plugin.pathname = root
plugin.name = "refinerycms_blog"
plugin.url = {:controller => 'refinery/blog/admin/posts'}
plugin.url = proc { Refinery::Core::Engine.routes.url_helpers.blog_admin_posts_path }
plugin.menu_match = /refinery\/blog\/?(posts|comments|categories)?/
plugin.activity = {
:class_name => :'refinery/blog/post'
}
plugin.activity = { :class_name => :'refinery/blog/post' }
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/refinery/blog/version.rb
Expand Up @@ -3,7 +3,7 @@ module Blog
class Version
@major = 2
@minor = 0
@tiny = 0
@tiny = 1

class << self
attr_reader :major, :minor, :tiny
Expand Down
4 changes: 2 additions & 2 deletions refinerycms-blog.gemspec
Expand Up @@ -18,8 +18,8 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- spec/*`.split("\n")

# Runtime dependencies
s.add_dependency 'refinerycms-core', '~> 2.0.0'
s.add_dependency 'refinerycms-settings', '~> 2.0.0'
s.add_dependency 'refinerycms-core', '~> 2.0.1'
s.add_dependency 'refinerycms-settings', '~> 2.0.1'
s.add_dependency 'filters_spam', '~> 0.2'
s.add_dependency 'acts-as-taggable-on'
s.add_dependency 'seo_meta', '~> 1.2.0'
Expand Down

0 comments on commit fccc86e

Please sign in to comment.