Skip to content

Instantly share code, notes, and snippets.

@hjanuschka
Created January 24, 2017 22:52
Show Gist options
  • Save hjanuschka/c2dec82ac101cb9108bb514385af2e9b to your computer and use it in GitHub Desktop.
Save hjanuschka/c2dec82ac101cb9108bb514385af2e9b to your computer and use it in GitHub Desktop.
require "spaceship"
Spaceship::Tunes::login("[email protected]")
app = Spaceship::Tunes::Application.find("krone.at-sport")
# get history of Promocodes
app.promocodes_history.each do | code |
puts "------"
puts "effective: #{code.effective_date}"
puts "expire: #{code.expiration_date}"
puts "codes: #{code.codes.join(" ")}"
puts "Username: #{code.username}"
puts "------"
end
# to generate some
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment