apple_reporter 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a8ab132347782703fdf20678bdd0bc0abb8f5a63
4
+ data.tar.gz: 51dc4e09752897b12f8a0ad9101906430517bc57
5
+ SHA512:
6
+ metadata.gz: 0e8024bb5f39bbae6873c02ad9c23fe6fa507db5654c626eff08fea572937430930299ec968f3662faf065bcd7b61f12d5c3d3eac9ee3d84a6726a7f75ca4507
7
+ data.tar.gz: 5b551612e3eefef51dfedafd6f69f7d1921bb7c23675234a3d30a43e7de3f679acf61a3f6873d5a028b21840f18af6a851faa32087089ba84ab04a0a7f79daed
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --colour
2
+ --format=documentation
3
+ --exclude-pattern='spec/integration/**/*_spec.rb'
data/.rubocop.yml ADDED
@@ -0,0 +1,10 @@
1
+ AllCops:
2
+ Include:
3
+ - Guardfile
4
+ - Rakefile
5
+ Exclude:
6
+ - .bundle/**/*
7
+ - bin/**/*
8
+ - vendor/**/*
9
+
10
+ inherit_from: .rubocop_todo.yml
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,71 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2017-02-01 08:14:39 -0600 using RuboCop version 0.34.2.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 2
10
+ Lint/NestedMethodDefinition:
11
+ Exclude:
12
+ - 'lib/hashie/extensions/indifferent_access.rb'
13
+
14
+ # Offense count: 10
15
+ Metrics/AbcSize:
16
+ Max: 29
17
+
18
+ # Offense count: 2
19
+ # Configuration parameters: CountComments.
20
+ Metrics/ClassLength:
21
+ Max: 200
22
+
23
+ # Offense count: 8
24
+ Metrics/CyclomaticComplexity:
25
+ Max: 11
26
+
27
+ # Offense count: 239
28
+ # Configuration parameters: AllowURI, URISchemes.
29
+ Metrics/LineLength:
30
+ Max: 170
31
+
32
+ # Offense count: 17
33
+ # Configuration parameters: CountComments.
34
+ Metrics/MethodLength:
35
+ Max: 28
36
+
37
+ # Offense count: 6
38
+ Metrics/PerceivedComplexity:
39
+ Max: 10
40
+
41
+ # Offense count: 2
42
+ Style/CaseEquality:
43
+ Exclude:
44
+ - 'lib/hashie/hash.rb'
45
+
46
+ # Offense count: 34
47
+ # Configuration parameters: Exclude.
48
+ Style/Documentation:
49
+ Enabled: false
50
+
51
+ # Offense count: 11
52
+ Style/DoubleNegation:
53
+ Exclude:
54
+ - 'lib/hashie/dash.rb'
55
+ - 'lib/hashie/extensions/dash/indifferent_access.rb'
56
+ - 'lib/hashie/extensions/method_access.rb'
57
+ - 'lib/hashie/mash.rb'
58
+ - 'spec/hashie/extensions/coercion_spec.rb'
59
+
60
+ # Offense count: 5
61
+ # Cop supports --auto-correct.
62
+ # Configuration parameters: EnforcedStyle, SupportedStyles, UseHashRocketsWithSymbolValues.
63
+ Style/HashSyntax:
64
+ Enabled: false
65
+
66
+ # Offense count: 2
67
+ # Cop supports --auto-correct.
68
+ # Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
69
+ Style/RegexpLiteral:
70
+ Exclude:
71
+ - 'Guardfile'
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.3
5
+ before_install: gem install bundler -v 1.13.6
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at dean.lin@iscreen.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in apple_reporter.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Dean Lin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # AppleReporter
2
+
3
+ This is Ruby Version <b>iTunes Connect Reporter</b>
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'apple_reporter'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install apple_reporter
20
+
21
+ ## Usage
22
+
23
+
24
+ ### Sales
25
+
26
+ - getReport
27
+
28
+ ```
29
+ reporter = AppleReporter::Sale.new(user_id: 'iscreen', password: 'your password')
30
+ report = reporter.getReport(
31
+ {
32
+ vendor_number: 'myVendor',
33
+ report_type: 'Sales',
34
+ report_sub_type: 'Summary',
35
+ date_type: 'Daily',
36
+ date: '20161212'
37
+ }
38
+ )
39
+ ```
40
+
41
+ ## Development
42
+
43
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
44
+
45
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
46
+
47
+ ## Contributing
48
+
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/iscreen/apple_reporter. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
50
+
51
+
52
+ ## License
53
+
54
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
55
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,42 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'apple_reporter/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'apple_reporter'
8
+ spec.version = AppleReporter::VERSION
9
+ spec.authors = ['Dean Lin']
10
+ spec.email = ['iscreen@gmail.com']
11
+
12
+ spec.summary = %q{Apple iTunes Connect Reporter}
13
+ spec.description = %q{Apple iTunes Connect Reporter}
14
+ spec.homepage = 'https://github.com/iscreen/apple_reporter.git'
15
+ spec.license = 'MIT'
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = 'Set to "https://github.com/iscreen/apple_reporter.git"'
21
+ # else
22
+ # raise 'RubyGems 2.0 or newer is required to protect against ' \
23
+ # 'public gem pushes.'
24
+ # end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = 'exe'
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ['lib']
32
+
33
+ spec.add_dependency('nokogiri')
34
+ spec.add_dependency('activesupport')
35
+ spec.add_dependency('rest-client')
36
+
37
+ spec.add_development_dependency 'bundler', '~> 1.12'
38
+ spec.add_development_dependency 'rake', '~> 10.0'
39
+ spec.add_development_dependency 'rspec', '~> 3.0'
40
+ spec.add_development_dependency 'webmock', '~> 2.3'
41
+ spec.add_development_dependency 'activesupport', '~> 4.0'
42
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "apple_reporter"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,50 @@
1
+ module AppleReporter
2
+ class Finance < Reporter
3
+
4
+ # getAccounts
5
+ #
6
+ # Usage:
7
+ # report = reporter.getAccounts
8
+ def getAccounts
9
+ fetch(@config[:finance_path], 'Finance.getAccounts')
10
+ end
11
+
12
+ # getStatus
13
+ #
14
+ # Usage:
15
+ # report = reporter.getStatus
16
+ def getStatus
17
+ fetch(@config[:finance_path], 'Finance.getStatus')
18
+ end
19
+
20
+ # getVendorsAndRegions
21
+ #
22
+ # Usage:
23
+ # report = reporter.getVendorsAndRegions
24
+ def getVendorsAndRegions
25
+ fetch(@config[:finance_path], 'Finance.getVendorsAndRegions')
26
+ end
27
+
28
+ # getReport
29
+ # Refer to: https://help.apple.com/itc/appsreporterguide/
30
+ #
31
+ # Usage:
32
+ #
33
+ # report = reporter.getReport(
34
+ # {
35
+ # vendor_number: 'myVendor',
36
+ # region_code: 'US',
37
+ # report_type: 'Financial',
38
+ # fiscal_year: '2016',
39
+ # fiscal_period: '02'
40
+ # }
41
+ # )
42
+ def getReport(params = {})
43
+ fetch(@config[:finance_path], (['Finance.getReport'] + [params.slice(:vendor_number, :region_code, :report_type, :fiscal_year, :fiscal_period).values.join(',')]).join(', '))
44
+ end
45
+
46
+ def getVersion
47
+ @config[:version]
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,60 @@
1
+ module AppleReporter
2
+ class Reporter
3
+ ENDPOINT = 'https://reportingitc-reporter.apple.com/reportservice'
4
+
5
+ #
6
+ # Usage:
7
+ # reporter = Apple::Reporter::Sale.new(user_id: 'iscreen', password: 'secret', account: 'myAccount')
8
+ #
9
+ def initialize(config = {})
10
+ @config = {
11
+ sales_path: '/sales/v1',
12
+ finance_path: '/finance/v1',
13
+ mode: 'Robot.XML',
14
+ version: '1.0',
15
+ }.merge(config)
16
+ end
17
+
18
+ private
19
+
20
+ def fetch(api_path, params)
21
+ headers = {
22
+ 'Content-Type' => 'application/x-www-form-urlencoded'
23
+ }
24
+ payload = {
25
+ userid: @config[:user_id],
26
+ password: @config[:password],
27
+ version: @config[:version],
28
+ mode: @config[:mode],
29
+ queryInput: "[p=Reporter.properties, #{params}]"
30
+ }
31
+ payload[:account] = @config[:account] if @config[:account]
32
+
33
+ response = RestClient.post("#{ENDPOINT}#{api_path}", "jsonRequest=#{payload.to_json}", headers)
34
+ handleResponse(@config[:mode], response)
35
+ rescue RestClient::ExceptionWithResponse => err
36
+ handleResponse(@config[:mode], err.response)
37
+ end
38
+
39
+ #
40
+ def handleResponse(mode, response)
41
+ if response.code == 200
42
+ if response.headers[:content_type] == 'application/a-gzip'
43
+ io = StringIO.new(response.body)
44
+ gz = Zlib::GzipReader.new(io)
45
+ return gz.readlines.join
46
+ else
47
+ doc = Nokogiri::XML(response.body)
48
+ return Hash.from_xml(doc.to_s)
49
+ end
50
+ end
51
+
52
+ if mode == 'Robot.XML'
53
+ doc = Nokogiri::XML(response.body)
54
+ return Hash.from_xml(doc.to_s)
55
+ end
56
+
57
+ return response.body
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,51 @@
1
+ module AppleReporter
2
+ class Sale < Reporter
3
+
4
+ # getAccounts
5
+ #
6
+ # Usage:
7
+ # report = reporter.getAccounts
8
+ def getAccounts
9
+ fetch(@config[:sales_path], 'Sales.getAccounts')
10
+ end
11
+
12
+ # getStatus
13
+ #
14
+ # Usage:
15
+ # report = reporter.getStatus
16
+ def getStatus
17
+ fetch(@config[:sales_path], 'Sales.getStatus')
18
+ end
19
+
20
+ # getVendors
21
+ #
22
+ # Usage:
23
+ # report = reporter.getVendors
24
+ def getVendors
25
+ fetch(@config[:sales_path], 'Sales.getVendors')
26
+ end
27
+
28
+ def getVersion
29
+ @config[:version]
30
+ end
31
+
32
+ # getReport
33
+ # Refer to: https://help.apple.com/itc/appsreporterguide/
34
+ #
35
+ # Usage:
36
+ #
37
+ # report = reporter.getReport(
38
+ # {
39
+ # vendor_number: 'myVendor',
40
+ # report_type: 'Sales',
41
+ # report_sub_type: 'Summary',
42
+ # date_type: 'Daily',
43
+ # date: '20161212'
44
+ # }
45
+ # )
46
+ def getReport(params = {})
47
+ fetch(@config[:sales_path], (['Sales.getReport'] + [params.slice(:vendor_number, :report_type, :report_sub_type, :date_type, :date).values.join(',')]).join(', '))
48
+ end
49
+
50
+ end
51
+ end
@@ -0,0 +1,3 @@
1
+ module AppleReporter
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,12 @@
1
+ require 'active_support/all'
2
+ require 'nokogiri'
3
+ require 'rest-client'
4
+
5
+ require 'apple_reporter/version'
6
+ require 'apple_reporter/reporter'
7
+ require 'apple_reporter/sale'
8
+ require 'apple_reporter/finance'
9
+
10
+ module AppleReporter
11
+ raise "Cannot require AppleReporter, unsupported engine '#{RUBY_ENGINE}'" unless RUBY_ENGINE == "ruby"
12
+ end
metadata ADDED
@@ -0,0 +1,174 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: apple_reporter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dean Lin
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-02-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rest-client
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.12'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.12'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: webmock
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.3'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '2.3'
111
+ - !ruby/object:Gem::Dependency
112
+ name: activesupport
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '4.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '4.0'
125
+ description: Apple iTunes Connect Reporter
126
+ email:
127
+ - iscreen@gmail.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".gitignore"
133
+ - ".rspec"
134
+ - ".rubocop.yml"
135
+ - ".rubocop_todo.yml"
136
+ - ".travis.yml"
137
+ - CODE_OF_CONDUCT.md
138
+ - Gemfile
139
+ - LICENSE.txt
140
+ - README.md
141
+ - Rakefile
142
+ - apple_reporter.gemspec
143
+ - bin/console
144
+ - bin/setup
145
+ - lib/apple_reporter.rb
146
+ - lib/apple_reporter/finance.rb
147
+ - lib/apple_reporter/reporter.rb
148
+ - lib/apple_reporter/sale.rb
149
+ - lib/apple_reporter/version.rb
150
+ homepage: https://github.com/iscreen/apple_reporter.git
151
+ licenses:
152
+ - MIT
153
+ metadata: {}
154
+ post_install_message:
155
+ rdoc_options: []
156
+ require_paths:
157
+ - lib
158
+ required_ruby_version: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: '0'
163
+ required_rubygems_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ">="
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ requirements: []
169
+ rubyforge_project:
170
+ rubygems_version: 2.5.2
171
+ signing_key:
172
+ specification_version: 4
173
+ summary: Apple iTunes Connect Reporter
174
+ test_files: []