moip/moip-sdk-ruby

View on GitHub
lib/moip2/auth/oauth.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Moip2
  module Auth
    class OAuth
      def initialize(oauth)
        @oauth = oauth
      end

      def header
        return @oauth if @oauth.start_with? "OAuth"

        %(OAuth #{@oauth})
      end
    end
  end
end