Sha256: b721a02d9b1267705deca929f34a5d9479728939a6c7a4583089ba2b3e9d1d48

Contents?: true

Size: 1.13 KB

Versions: 1134

Compression:

Stored size: 1.13 KB

Contents

module Supply
  class Listing
    attr_reader :language

    attr_accessor :title
    attr_accessor :short_description
    attr_accessor :full_description
    attr_accessor :video

    # Initializes the listing to use the given api client, language, and fills it with the current listing if available
    def initialize(google_api, language, source_listing = nil)
      @google_api = google_api
      @language = language

      if source_listing # this might be nil, e.g. when creating a new locale
        self.title = source_listing.title
        self.short_description = source_listing.short_description
        self.full_description = source_listing.full_description
        self.video = source_listing.video
      end
    end

    # Updates the listing in the current edit
    def save
      @google_api.update_listing_for_language(language: language,
                                              title: title,
                                              short_description: short_description,
                                              full_description: full_description,
                                              video: video)
    end
  end
end

Version data entries

1,134 entries across 1,134 versions & 6 rubygems

Version Path
fastlane-2.150.0.rc6 supply/lib/supply/listing.rb
fastlane-2.150.0.rc5 supply/lib/supply/listing.rb
fastlane-2.150.0.rc4 supply/lib/supply/listing.rb
fastlane-2.150.0.rc3 supply/lib/supply/listing.rb
fastlane-2.150.0.rc2 supply/lib/supply/listing.rb
fastlane-2.150.0.rc1 supply/lib/supply/listing.rb
fastlane-2.149.1 supply/lib/supply/listing.rb
fastlane-2.149.0 supply/lib/supply/listing.rb
fastlane-2.148.1 supply/lib/supply/listing.rb
fastlane-2.148.0 supply/lib/supply/listing.rb
fastlane-2.147.0 supply/lib/supply/listing.rb
fastlane-2.146.1 supply/lib/supply/listing.rb
fastlane-2.146.0 supply/lib/supply/listing.rb
fastlane-2.145.0 supply/lib/supply/listing.rb
fastlane-2.144.0 supply/lib/supply/listing.rb
fastlane-2.143.0 supply/lib/supply/listing.rb
fastlane-2.142.0 supply/lib/supply/listing.rb
fastlane-2.141.0 supply/lib/supply/listing.rb
fastlane-2.140.0 supply/lib/supply/listing.rb
fastlane-2.139.0 supply/lib/supply/listing.rb