bglusman/debt_ceiling

View on GitHub
lib/debt_ceiling/common_methods.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DebtCeiling
  module CommonMethods

    def configuration
      DebtCeiling.configuration
    end

    def +(other)
      self.to_i + other.to_i
    end

  end
end