saturnflyer/surrounded

View on GitHub
lib/surrounded/east_oriented.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Surrounded
  module EastOriented
    # Always return the context object to ensure that a context may
    # not be asked for information.
    def trigger_return_content(name, *args, &block)
      %(
        #{super}

        self
      )
    end
  end
end