app/renderers/renderers.rb in curation_concerns-1.1.2 vs app/renderers/renderers.rb in curation_concerns-1.2.0

- old
+ new

@@ -1,11 +1,10 @@ module CurationConcerns - # Module that will containing Renderers + # Module that will contain Renderer classes # @since 0.14.0 - # Renderers are used to display Ruby objects to users. - # Renderers take the Ruby object supplied by a - # CurationConcerns::Presenter object Renderers are typically # used to respond to read requests from the controller. - # Renderers may apply some level of HTML or may just supply - # human readable values for object attributes. + # Renderers are used to display Ruby objects to users and take arguments from the CurationConcerns::Presenter + # supplied by the controller. + # They are typically used to respond to read requests from the controller, and may apply some level of + # HTML, or may just display human readable values for object attributes. module Renderers end end