diff options
author | Uģis Ozols <ugis.ozolss@gmail.com> | 2012-05-15 08:22:20 +0300 |
---|---|---|
committer | Uģis Ozols <ugis.ozolss@gmail.com> | 2012-05-15 08:22:20 +0300 |
commit | 538e6653f053a2eaf8da504617f881cea472f6d1 (patch) | |
tree | da750d31cfbd5cddfc99b902276aa862444ef3ce /lib | |
parent | 5577b8e701af3c8e05379a3f9baadae5389f2323 (diff) | |
download | refinerycms-blog-538e6653f053a2eaf8da504617f881cea472f6d1.tar.gz refinerycms-blog-538e6653f053a2eaf8da504617f881cea472f6d1.tar.bz2 refinerycms-blog-538e6653f053a2eaf8da504617f881cea472f6d1.zip |
Bump master to 2.1.0.dev.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/refinery/blog.rb | 1 | ||||
-rw-r--r-- | lib/refinery/blog/version.rb | 11 |
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 |