All Projects → kyledecot → App_store_connect

kyledecot / App_store_connect

Licence: mit
A Ruby interface to the App Store Connect API

Programming Languages

ruby
36898 projects - #4 most used programming language

Labels

Projects that are alternatives of or similar to App store connect

Webinspector
Ruby gem to inspect completely a web page. It scrapes a given URL, and returns you its meta, links, images more.
Stars: ✭ 288 (+1209.09%)
Mutual labels:  rubygem
Ruby Push Notifications
iOS, Android and Windows Phone Push Notifications made easy!!
Stars: ✭ 385 (+1650%)
Mutual labels:  rubygem
Runbook
A framework for gradual system automation
Stars: ✭ 531 (+2313.64%)
Mutual labels:  rubygem
Ruby Oembed
oEmbed for Ruby
Stars: ✭ 290 (+1218.18%)
Mutual labels:  rubygem
Tty Progressbar
Display a single or multiple progress bars in the terminal.
Stars: ✭ 377 (+1613.64%)
Mutual labels:  rubygem
Dry Monads
Useful, common monads in idiomatic Ruby
Stars: ✭ 453 (+1959.09%)
Mutual labels:  rubygem
Tty Logger
A readable, structured and beautiful logging for the terminal
Stars: ✭ 280 (+1172.73%)
Mutual labels:  rubygem
Ordinalize full
Turns a number into an ordinal string such as first, second, third or 1st, 2nd, 3rd.
Stars: ✭ 6 (-72.73%)
Mutual labels:  rubygem
Gemoji
Emoji images and names.
Stars: ✭ 3,890 (+17581.82%)
Mutual labels:  rubygem
Maily
📫 Rails Engine to preview emails in the browser
Stars: ✭ 502 (+2181.82%)
Mutual labels:  rubygem
Tapping device
TappingDevice makes objects tell you what they do, so you don't need to track them yourself.
Stars: ✭ 296 (+1245.45%)
Mutual labels:  rubygem
Asciidoctor
💎 A fast, open source text processor and publishing toolchain, written in Ruby, for converting AsciiDoc content to HTML 5, DocBook 5, and other formats.
Stars: ✭ 3,905 (+17650%)
Mutual labels:  rubygem
Matestack Ui Core
Matestack enables you to create sophisticated, reactive UIs in pure Ruby, without touching JavaScript and HTML. You end up writing 50% less code while increasing productivity, maintainability and developer happiness.
Stars: ✭ 469 (+2031.82%)
Mutual labels:  rubygem
Docx
a ruby library/gem for interacting with .docx files
Stars: ✭ 288 (+1209.09%)
Mutual labels:  rubygem
Scientist
🔬 A Ruby library for carefully refactoring critical paths.
Stars: ✭ 6,301 (+28540.91%)
Mutual labels:  rubygem
Dry Configurable
A simple mixin to make Ruby classes configurable
Stars: ✭ 280 (+1172.73%)
Mutual labels:  rubygem
Strip attributes
🔪 An ActiveModel extension that automatically strips all attributes of leading and trailing whitespace before validation. If the attribute is blank, it strips the value to nil.
Stars: ✭ 441 (+1904.55%)
Mutual labels:  rubygem
Green Button Data
Fast Ruby parser and API client for Green Button data
Stars: ✭ 18 (-18.18%)
Mutual labels:  rubygem
Materialize Sass
Materializecss rubygem for Rails Asset Pipeline / Sprockets
Stars: ✭ 785 (+3468.18%)
Mutual labels:  rubygem
Gingerice
Ruby wrapper for correcting spelling and grammar mistakes based on the context of complete sentences.
Stars: ✭ 478 (+2072.73%)
Mutual labels:  rubygem

App Store Connect

Test Gem Version Maintainability Test Coverage

A Ruby interface to the App Store Connect API

Installation

Add this line to your application's Gemfile:

gem 'app_store_connect'

And then execute:

$ bundle

Or install it yourself as:

$ gem install app_store_connect

Usage

AppStoreConnect.config = {
  issuer_id: issuer_id,
  key_id: key_id,
  private_key: private_key
}

app_store_connect = AppStoreConnect::Client.new

app_store_connect.apps 
app_store_connect.app(id: '1234')
app_store_connect.builds(id: '1234')

Create Bundle ID

app_store_connect.create_bundle_id(
  name: 'Example', 
  identifier: 'com.kyledecot.Example', 
  platform: 'IOS'
) 

Sales Reports

app_store_connect.sales_reports(
  filter: {
    report_type: 'SALES',
    report_sub_type: 'SUMMARY',
    frequency: 'DAILY',
    vendor_number: '123456'
  }
)

Development

After checking out the repo, run bundle install to install dependencies. Then, run rake spec to run the tests. You can also run rake console for an interactive prompt that will allow you to experiment.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kyledecot/app_store_connect.

License

The gem is available as open source under the terms of the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].