adelevie/iron_response

View on GitHub
lib/iron_response/log.rb

Summary

Maintainability
A
0 mins
Test Coverage
module IronResponse
  class Log
    def initialize(text)
      @text = text
    end

    def to_s
      @text
    end
  end
end