itunes_api 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +26 -39
- data/.gitignore +0 -1
- data/.rubocop.yml +4 -12
- data/Gemfile +1 -1
- data/Gemfile.lock +69 -0
- data/README.md +1 -1
- data/lib/itunes_api/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5c692aaf7cc88db72aed80a68b4ae65707b4f8d6880cf0af054cd221af43692
|
|
4
|
+
data.tar.gz: d254225e7cc3595e60ae3b9a345c873fc4ab9a09a40f7ad456d5e30a54282204
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz: '
|
|
6
|
+
metadata.gz: 1002af50b319769dc2c50b5cf5ac15afa35e12b05c1acd6cc304a3343a206a3b59e1bf5c25d3f342ed9f066e032917986aeac87c723d265e08465f5a775bb03a
|
|
7
|
+
data.tar.gz: '048c1768a282db7ea5f539e3e7bf91d5a41c072fc77f247b17c876db503a22163a7fcdfed7a4d9c8aaf0c5c96b3030cfe9d4f4933b0b5270c6a465863d9158af'
|
data/.circleci/config.yml
CHANGED
|
@@ -1,46 +1,33 @@
|
|
|
1
|
-
---
|
|
2
1
|
version: 2
|
|
3
2
|
jobs:
|
|
4
3
|
build:
|
|
5
4
|
environment:
|
|
6
|
-
CC_TEST_REPORTER_ID:
|
|
5
|
+
CC_TEST_REPORTER_ID: 259b37cf1fd88604007648fdd1a3df71a73ee30c4bc935f03d10a6d3e38ac964
|
|
7
6
|
working_directory: ~/itunes-api
|
|
8
7
|
docker:
|
|
9
|
-
|
|
8
|
+
- image: circleci/ruby:2.7-rc
|
|
10
9
|
steps:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
- run:
|
|
36
|
-
name: Run tests
|
|
37
|
-
command: |
|
|
38
|
-
./cc-test-reporter before-build
|
|
39
|
-
bundle exec rspec
|
|
40
|
-
./cc-test-reporter after-build --exit-code $?
|
|
41
|
-
|
|
42
|
-
# Enforce better practices
|
|
43
|
-
- run: bundle exec rubocop
|
|
44
|
-
|
|
45
|
-
- store_test_results:
|
|
46
|
-
path: coverage
|
|
10
|
+
- checkout
|
|
11
|
+
- type: cache-restore
|
|
12
|
+
name: Restore bundle cache
|
|
13
|
+
key: itunes-api-{{ checksum "Gemfile.lock" }}
|
|
14
|
+
- run: bundle install --path vendor/bundle
|
|
15
|
+
- type: cache-save
|
|
16
|
+
name: Store bundle cache
|
|
17
|
+
key: itunes-api-{{ checksum "Gemfile.lock" }}
|
|
18
|
+
paths:
|
|
19
|
+
- vendor/bundle
|
|
20
|
+
- run:
|
|
21
|
+
name: Setup Code Climate test-reporter
|
|
22
|
+
command: |
|
|
23
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
24
|
+
chmod +x ./cc-test-reporter
|
|
25
|
+
- run:
|
|
26
|
+
name: Run tests
|
|
27
|
+
command: |
|
|
28
|
+
./cc-test-reporter before-build
|
|
29
|
+
bundle exec rspec
|
|
30
|
+
./cc-test-reporter after-build --exit-code $?
|
|
31
|
+
- run: bundle exec rubocop
|
|
32
|
+
- store_test_results:
|
|
33
|
+
path: coverage
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -3,7 +3,10 @@ AllCops:
|
|
|
3
3
|
Exclude:
|
|
4
4
|
- bin/**/*
|
|
5
5
|
- vendor/**/*
|
|
6
|
-
TargetRubyVersion: 2.
|
|
6
|
+
TargetRubyVersion: 2.7
|
|
7
|
+
|
|
8
|
+
Layout/LineLength:
|
|
9
|
+
Max: 100
|
|
7
10
|
|
|
8
11
|
Metrics/BlockLength:
|
|
9
12
|
Exclude:
|
|
@@ -11,14 +14,3 @@ Metrics/BlockLength:
|
|
|
11
14
|
|
|
12
15
|
Metrics/MethodLength:
|
|
13
16
|
Max: 15
|
|
14
|
-
|
|
15
|
-
Metrics/LineLength:
|
|
16
|
-
Max: 100
|
|
17
|
-
|
|
18
|
-
Metrics/ModuleLength:
|
|
19
|
-
Exclude:
|
|
20
|
-
- '**/*_spec.rb'
|
|
21
|
-
|
|
22
|
-
Style/FrozenStringLiteralComment:
|
|
23
|
-
Exclude:
|
|
24
|
-
- '**/*_spec.rb'
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
itunes_api (2.4.1)
|
|
5
|
+
faraday
|
|
6
|
+
selfies
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
ast (2.4.0)
|
|
12
|
+
diff-lcs (1.3)
|
|
13
|
+
docile (1.3.2)
|
|
14
|
+
faraday (0.17.1)
|
|
15
|
+
multipart-post (>= 1.2, < 3)
|
|
16
|
+
jaro_winkler (1.5.4)
|
|
17
|
+
json (2.3.0)
|
|
18
|
+
multipart-post (2.1.1)
|
|
19
|
+
parallel (1.19.1)
|
|
20
|
+
parser (2.7.0.0)
|
|
21
|
+
ast (~> 2.4.0)
|
|
22
|
+
rainbow (3.0.0)
|
|
23
|
+
rake (13.0.1)
|
|
24
|
+
rspec (3.9.0)
|
|
25
|
+
rspec-core (~> 3.9.0)
|
|
26
|
+
rspec-expectations (~> 3.9.0)
|
|
27
|
+
rspec-mocks (~> 3.9.0)
|
|
28
|
+
rspec-core (3.9.0)
|
|
29
|
+
rspec-support (~> 3.9.0)
|
|
30
|
+
rspec-expectations (3.9.0)
|
|
31
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
32
|
+
rspec-support (~> 3.9.0)
|
|
33
|
+
rspec-mocks (3.9.0)
|
|
34
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
35
|
+
rspec-support (~> 3.9.0)
|
|
36
|
+
rspec-support (3.9.0)
|
|
37
|
+
rubocop (0.78.0)
|
|
38
|
+
jaro_winkler (~> 1.5.1)
|
|
39
|
+
parallel (~> 1.10)
|
|
40
|
+
parser (>= 2.6)
|
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
42
|
+
ruby-progressbar (~> 1.7)
|
|
43
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
|
44
|
+
ruby-progressbar (1.10.1)
|
|
45
|
+
selfies (1.5.1)
|
|
46
|
+
simplecov (0.17.1)
|
|
47
|
+
docile (~> 1.1)
|
|
48
|
+
json (>= 1.8, < 3)
|
|
49
|
+
simplecov-html (~> 0.10.0)
|
|
50
|
+
simplecov-html (0.10.2)
|
|
51
|
+
unicode-display_width (1.6.0)
|
|
52
|
+
vcr (5.0.0)
|
|
53
|
+
|
|
54
|
+
PLATFORMS
|
|
55
|
+
ruby
|
|
56
|
+
|
|
57
|
+
DEPENDENCIES
|
|
58
|
+
itunes_api!
|
|
59
|
+
rake
|
|
60
|
+
rspec
|
|
61
|
+
rubocop
|
|
62
|
+
simplecov
|
|
63
|
+
vcr
|
|
64
|
+
|
|
65
|
+
RUBY VERSION
|
|
66
|
+
ruby 2.7.0p0
|
|
67
|
+
|
|
68
|
+
BUNDLED WITH
|
|
69
|
+
2.1.2
|
data/README.md
CHANGED
data/lib/itunes_api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itunes_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mario D’Arco
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-12-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -121,6 +121,7 @@ files:
|
|
|
121
121
|
- ".rubocop.yml"
|
|
122
122
|
- CODE_OF_CONDUCT.md
|
|
123
123
|
- Gemfile
|
|
124
|
+
- Gemfile.lock
|
|
124
125
|
- LICENSE.txt
|
|
125
126
|
- README.md
|
|
126
127
|
- Rakefile
|
|
@@ -164,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
164
165
|
- !ruby/object:Gem::Version
|
|
165
166
|
version: '0'
|
|
166
167
|
requirements: []
|
|
167
|
-
rubygems_version: 3.
|
|
168
|
+
rubygems_version: 3.1.2
|
|
168
169
|
signing_key:
|
|
169
170
|
specification_version: 4
|
|
170
171
|
summary: iTunes Api
|