Sha256: c65b6e7edc6a44c15b9709ec4c353f0e632004b6eff47c92e7e139bf8683f025
Contents?: true
Size: 549 Bytes
Versions: 14
Compression:
Stored size: 549 Bytes
Contents
module Ecoportal module API class Internal class LoginProviders include Enumerable attr_reader :client def initialize(client) @client = client end def get_all response = @client.get("/login_providers") Common::WrappedResponse.new(response, Internal::LoginProvider) end def each(&block) return to_enum(:each) unless block get_all.each(&block) end end end end end require 'ecoportal/api/internal/login_provider'
Version data entries
14 entries across 14 versions & 1 rubygems