Sha256: c9d3b57b4a2aae942f82c739891e0006716420a5560d215fd532618a5e932c7a

Contents?: true

Size: 706 Bytes

Versions: 18

Compression:

Stored size: 706 Bytes

Contents

# frozen_string_literal: true

module EveOnline
  module ESI
    class CharacterStandings < Base
      API_PATH = "/v1/characters/%<character_id>s/standings/"

      attr_reader :character_id

      def initialize(options)
        super

        @character_id = options.fetch(:character_id)
      end

      def standings
        @standings ||=
          begin
            output = []
            response.each do |standing|
              output << Models::Standing.new(standing)
            end
            output
          end
      end

      def scope
        "esi-characters.read_standings.v1"
      end

      def path
        format(API_PATH, character_id: character_id)
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
eve_online-0.46.0 lib/eve_online/esi/character_standings.rb
eve_online-0.45.0 lib/eve_online/esi/character_standings.rb
eve_online-0.44.0 lib/eve_online/esi/character_standings.rb
eve_online-0.43.0 lib/eve_online/esi/character_standings.rb
eve_online-0.42.0 lib/eve_online/esi/character_standings.rb
eve_online-0.41.0 lib/eve_online/esi/character_standings.rb
eve_online-0.40.0 lib/eve_online/esi/character_standings.rb
eve_online-0.39.0 lib/eve_online/esi/character_standings.rb
eve_online-0.38.0 lib/eve_online/esi/character_standings.rb
eve_online-0.37.0 lib/eve_online/esi/character_standings.rb
eve_online-0.36.0 lib/eve_online/esi/character_standings.rb
eve_online-0.35.1 lib/eve_online/esi/character_standings.rb
eve_online-0.35.0 lib/eve_online/esi/character_standings.rb
eve_online-0.34.0 lib/eve_online/esi/character_standings.rb
eve_online-0.33.0 lib/eve_online/esi/character_standings.rb
eve_online-0.32.0 lib/eve_online/esi/character_standings.rb
eve_online-0.31.0 lib/eve_online/esi/character_standings.rb
eve_online-0.30.0 lib/eve_online/esi/character_standings.rb