lib/kitsune.rb in kitsune-0.1.0 vs lib/kitsune.rb in kitsune-0.1.1

- old
+ new

@@ -6,10 +6,18 @@ autoload :FauxColumn, 'kitsune/faux_column' autoload :Inspector, 'kitsune/inspector' autoload :Page, 'kitsune/page' class << self def version - '0.1.0' + '0.1.1' + end + + def authenticate + @authenticate ||= false + end + + def authenticate=(do_authenticate) + @authenticate = do_authenticate end def model_paths # abstract this to something else @models_paths ||= ["#{RAILS_ROOT}/app/models"] end