Skip to content

Commit

Permalink
[Misc] Require engine file instead of autoload, Fixes #546
Browse files Browse the repository at this point in the history
  • Loading branch information
seuros committed May 25, 2014
1 parent d9d6025 commit 09828c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/acts-as-taggable-on.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,21 @@
require 'active_support/core_ext/module'
require 'action_view'

require_relative 'acts_as_taggable_on/engine'

require 'digest/sha1'

module ActsAsTaggableOn
extend ActiveSupport::Autoload

autoload :Engine
autoload :Tag
autoload :TagList
autoload :TagListParser
autoload :Taggable
autoload :Tagger
autoload :Tagging
autoload :TagsHelper
autoload :VERSION

autoload_under 'taggable' do
autoload :Cache
Expand Down
2 changes: 1 addition & 1 deletion lib/acts_as_taggable_on/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ActsAsTaggableOn
VERSION = '3.2.4'
VERSION = '3.2.5'
end

0 comments on commit 09828c0

Please sign in to comment.