Sha256: 0a5b1c549b925edd5d1552115331efcaf33a803d625515a0c90de3cf113e94f9

Contents?: true

Size: 870 Bytes

Versions: 18

Compression:

Stored size: 870 Bytes

Contents

# frozen_string_literal: true

module EveOnline
  module ESI
    class CharacterIndustryJobs < Base
      API_PATH = "/v1/characters/%<character_id>s/industry/jobs/"

      attr_reader :character_id, :include_completed

      def initialize(options)
        super

        @character_id = options.fetch(:character_id)
        @include_completed = options.fetch(:include_completed, nil)
      end

      def jobs
        @jobs ||=
          begin
            output = []
            response.each do |job|
              output << Models::CharacterIndustryJob.new(job)
            end
            output
          end
      end

      def scope
        "esi-industry.read_character_jobs.v1"
      end

      def additional_query_params
        [:include_completed]
      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_industry_jobs.rb
eve_online-0.45.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.44.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.43.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.42.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.41.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.40.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.39.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.38.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.37.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.36.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.35.1 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.35.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.34.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.33.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.32.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.31.0 lib/eve_online/esi/character_industry_jobs.rb
eve_online-0.30.0 lib/eve_online/esi/character_industry_jobs.rb