aboutsummaryrefslogblamecommitdiffstats
path: root/lib/refinery/blog.rb
blob: c62106c4642623a3cb21cfded42da07d5b403201 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
                              
                        
                     
                         


                                                                    
 
             
                                  
                                         
 



                                              


                       
              
                                                                       
         
 


                    



                                      
 
                       
                                                               



         
require 'refinerycms-core'
require 'refinerycms-settings'
require 'rails_autolink'
require 'friendly_id'
require 'jquery-ui-rails'

module Refinery
  autoload :BlogGenerator, 'generators/refinery/blog/blog_generator'

  module Blog
    require 'refinery/blog/engine'
    require 'refinery/blog/configuration'

    autoload :Version, 'refinery/blog/version'
    autoload :Tab, 'refinery/blog/tabs'

    class << self
      attr_writer :root
      attr_writer :tabs

      def root
        @root ||= Pathname.new(File.expand_path('../../../', __FILE__))
      end

      def tabs
        @tabs ||= []
      end

      def version
        ::Refinery::Blog::Version.to_s
      end

      def factory_paths
        @factory_paths ||= [ root.join("spec/factories").to_s ]
      end
    end
  end
end