lib/mystique.rb in mystique-0.10.0 vs lib/mystique.rb in mystique-0.10.1

- old
+ new

@@ -1,9 +1,8 @@ require "mystique/version" require "callable" -require "string_plus" require "mystique/undefined" require "mystique/presenter" module Mystique @@ -30,9 +29,9 @@ end end end def presenter_class_for(object, with) - with || StringPlus.constantize("#{object.class}Presenter") + with || Object.send(:const_get, "#{object.class}Presenter") end private :presenter_class_for end