lib/fume.rb in fume-0.10.0a vs lib/fume.rb in fume-0.10.0
- old
+ new
@@ -1,17 +1,19 @@
require "active_support"
require "rails-i18n"
+require "fume/version"
module Fume
- VERSION = File.read(File.expand_path("../../VERSION", __FILE__)).chomp
-
extend ActiveSupport::Autoload
- autoload :RailsExt
- autoload :AppSettingLoader
+ autoload :HelperExts
+ autoload :ActiveRecordExts
+ autoload :ControllerExts
+
autoload :RenderCache
+ autoload :RequireAccessor
def self.load_tasks
Dir[File.expand_path("../tasks/*.rake", __FILE__)].each { |ext| load ext }
end
end
-require File.expand_path("../fume/railtie", __FILE__)
+require File.expand_path("../fume/railtie", __FILE__)
\ No newline at end of file