Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lobbyist-ruby / lib / lobbyist / v2 / paysimple / gateway / token.rb
Size: Mime:
module Lobbyist
  module V2
    module Paysimple
      module Gateway
        class Token < Lobbyist::V2::Base

          attr_reader :jwt_token, :expiration
          def self.fetch
            create_from_response(post("/v2/paysimple/gateway/token.json"))
          end

        end
      end
    end
  end
end