Updated to support Refinery CMS 2.0.1 and Rails 3.2.2
This commit is contained in:
parent
1a3e0d057c
commit
fccc86e63c
4 changed files with 6 additions and 10 deletions
4
.rspec
4
.rspec
|
@ -1,3 +1 @@
|
||||||
--color spec
|
--colour
|
||||||
--drb
|
|
||||||
--format Fuubar
|
|
||||||
|
|
|
@ -9,11 +9,9 @@ module Refinery
|
||||||
Refinery::Plugin.register do |plugin|
|
Refinery::Plugin.register do |plugin|
|
||||||
plugin.pathname = root
|
plugin.pathname = root
|
||||||
plugin.name = "refinerycms_blog"
|
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.menu_match = /refinery\/blog\/?(posts|comments|categories)?/
|
||||||
plugin.activity = {
|
plugin.activity = { :class_name => :'refinery/blog/post' }
|
||||||
:class_name => :'refinery/blog/post'
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ module Refinery
|
||||||
class Version
|
class Version
|
||||||
@major = 2
|
@major = 2
|
||||||
@minor = 0
|
@minor = 0
|
||||||
@tiny = 0
|
@tiny = 1
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
attr_reader :major, :minor, :tiny
|
attr_reader :major, :minor, :tiny
|
||||||
|
|
|
@ -18,8 +18,8 @@ Gem::Specification.new do |s|
|
||||||
s.test_files = `git ls-files -- spec/*`.split("\n")
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
||||||
|
|
||||||
# Runtime dependencies
|
# Runtime dependencies
|
||||||
s.add_dependency 'refinerycms-core', '~> 2.0.0'
|
s.add_dependency 'refinerycms-core', '~> 2.0.1'
|
||||||
s.add_dependency 'refinerycms-settings', '~> 2.0.0'
|
s.add_dependency 'refinerycms-settings', '~> 2.0.1'
|
||||||
s.add_dependency 'filters_spam', '~> 0.2'
|
s.add_dependency 'filters_spam', '~> 0.2'
|
||||||
s.add_dependency 'acts-as-taggable-on'
|
s.add_dependency 'acts-as-taggable-on'
|
||||||
s.add_dependency 'seo_meta', '~> 1.2.0'
|
s.add_dependency 'seo_meta', '~> 1.2.0'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue