lib/gravatarify.rb in gravatarify-1.2.1 vs lib/gravatarify.rb in gravatarify-2.0.3

- old
+ new

@@ -1,15 +1,10 @@ # Loads all required submodules # Base -> provides the basic gravatar_url method, can also be used for # custom implementations, just include Gravatarify::Base. require 'gravatarify/base' -require 'gravatarify/object_support' +require 'gravatarify/utils' require 'gravatarify/helper' - -# setup for AR und DataMapper, note: DataMapper yet untested :) but I suppose it works, because -# it works as expected on plain old ruby objects! -ActiveRecord::Base.send(:include, Gravatarify::ObjectSupport) if defined?(ActiveRecord) -DataMapper::Model.append_inclusions(Gravatarify::ObjectSupport) if defined?(DataMapper) # and HAML support (if defined) Haml::Helpers.send(:include, Gravatarify::Helper) if defined?(Haml)