aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/refinery/blog.rb1
-rw-r--r--lib/refinery/blog/version.rb11
2 files changed, 7 insertions, 5 deletions
diff --git a/lib/refinery/blog.rb b/lib/refinery/blog.rb
index 72ca4a6..52f73e0 100644
--- a/lib/refinery/blog.rb
+++ b/lib/refinery/blog.rb
@@ -2,6 +2,7 @@ require 'refinerycms-core'
require 'refinerycms-settings'
require 'filters_spam'
require 'rails_autolink'
+require 'acts_as_indexed'
module Refinery
autoload :BlogGenerator, 'generators/refinery/blog/blog_generator'
diff --git a/lib/refinery/blog/version.rb b/lib/refinery/blog/version.rb
index 45511ad..25ffc26 100644
--- a/lib/refinery/blog/version.rb
+++ b/lib/refinery/blog/version.rb
@@ -2,16 +2,17 @@ module Refinery
module Blog
class Version
@major = 2
- @minor = 0
- @tiny = 2
+ @minor = 1
+ @tiny = 0
+ @build = 'dev'
class << self
- attr_reader :major, :minor, :tiny
+ attr_reader :major, :minor, :tiny, :build
def to_s
- [@major, @minor, @tiny].compact.join('.')
+ [@major, @minor, @tiny, @build].compact.join('.')
end
end
end
end
-end \ No newline at end of file
+end