lt-lcms 0.4.2 → 0.4.3
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/.github/workflows/rubocop-analysis.yml +30 -30
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +15 -18
- data/lib/lt/lcms/version.rb +1 -1
- data/lt-lcms.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e473a918ee10abd3c4678e8aacb8226ca766c0873f1bd2eb7378ed0a945bed46
|
|
4
|
+
data.tar.gz: f79e8bb554d732aff1f349a26c77a659031b142dd40ff72b65ca533d5e1f52c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb088eeeda2fd4692b95103f24bff729dcb3417d5526a89fa8cac514288e25af4b047e1893d3b7006cdd1f91a00ae79e8c876849ffee78ccb60744ca144ef699
|
|
7
|
+
data.tar.gz: ef35fbbc8e83170464f3b78511a6423dcbcb84fcc619d1922fb0ed7ae61dff02a33bd8af5a56a7e79320f4b0074a3ba9c59fc527f08d0b330227ed0be3f738af
|
|
@@ -9,33 +9,33 @@ jobs:
|
|
|
9
9
|
fail-fast: false
|
|
10
10
|
|
|
11
11
|
steps:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
12
|
+
- name: Checkout repository
|
|
13
|
+
uses: actions/checkout@v2
|
|
14
|
+
|
|
15
|
+
# If running on a self-hosted runner, check it meets the requirements
|
|
16
|
+
# listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners
|
|
17
|
+
- name: Set up Ruby
|
|
18
|
+
uses: ruby/setup-ruby@v1
|
|
19
|
+
with:
|
|
20
|
+
ruby-version: 2.6
|
|
21
|
+
|
|
22
|
+
- name: Intall legacy bundler version
|
|
23
|
+
run: gem install bundler -v 1.17.3
|
|
24
|
+
|
|
25
|
+
# This step is not necessary if you add the gem to your Gemfile
|
|
26
|
+
- name: Install Code Scanning integration
|
|
27
|
+
run: bundle _1.17.3_ add code-scanning-rubocop --skip-install
|
|
28
|
+
|
|
29
|
+
- name: Install dependencies
|
|
30
|
+
run: bundle _1.17.3_ install
|
|
31
|
+
|
|
32
|
+
- name: Rubocop run
|
|
33
|
+
run: |
|
|
34
|
+
bash -c "
|
|
35
|
+
bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif
|
|
36
|
+
[[ $? -ne 2 ]]
|
|
37
|
+
"
|
|
38
|
+
- name: Upload Sarif output
|
|
39
|
+
uses: github/codeql-action/upload-sarif@v1
|
|
40
|
+
with:
|
|
41
|
+
sarif_file: rubocop.sarif
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.4.
|
|
7
|
+
## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.4.3...HEAD)
|
|
8
|
+
|
|
9
|
+
## [0.4.3](https://github.com/learningtapestry/lt-lcms/compare/v0.4.2...v0.4.3) - 2021-07-02
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Bump lt-google-api to 0.2.3 ([#17](https://github.com/learningtapestry/lt-lcms/pull/17))
|
|
8
14
|
|
|
9
15
|
## [0.4.2](https://github.com/learningtapestry/lt-lcms/compare/v0.4.1...v0.4.2) - 2021-06-21
|
|
10
16
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
lt-lcms (0.4.
|
|
4
|
+
lt-lcms (0.4.3)
|
|
5
5
|
google-api-client (~> 0.38)
|
|
6
6
|
httparty (~> 0.18)
|
|
7
|
-
lt-google-api (~> 0.2, >= 0.2.
|
|
7
|
+
lt-google-api (~> 0.2, >= 0.2.3)
|
|
8
8
|
nokogiri (~> 1.10, >= 1.10.8)
|
|
9
9
|
rubyzip (~> 2)
|
|
10
10
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
activesupport (6.1.
|
|
14
|
+
activesupport (6.1.4)
|
|
15
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
16
|
i18n (>= 1.6, < 2)
|
|
17
17
|
minitest (>= 5.1)
|
|
@@ -23,7 +23,7 @@ GEM
|
|
|
23
23
|
childprocess (4.1.0)
|
|
24
24
|
concurrent-ruby (1.1.9)
|
|
25
25
|
declarative (0.0.20)
|
|
26
|
-
faraday (1.4.
|
|
26
|
+
faraday (1.4.3)
|
|
27
27
|
faraday-em_http (~> 1.0)
|
|
28
28
|
faraday-em_synchrony (~> 1.0)
|
|
29
29
|
faraday-excon (~> 1.1)
|
|
@@ -40,23 +40,22 @@ GEM
|
|
|
40
40
|
google-api-client (0.53.0)
|
|
41
41
|
google-apis-core (~> 0.1)
|
|
42
42
|
google-apis-generator (~> 0.1)
|
|
43
|
-
google-apis-core (0.
|
|
43
|
+
google-apis-core (0.4.0)
|
|
44
44
|
addressable (~> 2.5, >= 2.5.1)
|
|
45
|
-
googleauth (
|
|
46
|
-
httpclient (>= 2.8.1, < 3.
|
|
45
|
+
googleauth (>= 0.16.2, < 2.a)
|
|
46
|
+
httpclient (>= 2.8.1, < 3.a)
|
|
47
47
|
mini_mime (~> 1.0)
|
|
48
48
|
representable (~> 3.0)
|
|
49
|
-
retriable (>= 2.0, < 4.
|
|
49
|
+
retriable (>= 2.0, < 4.a)
|
|
50
50
|
rexml
|
|
51
|
-
signet (~> 0.14)
|
|
52
51
|
webrick
|
|
53
|
-
google-apis-discovery_v1 (0.
|
|
54
|
-
google-apis-core (
|
|
55
|
-
google-apis-generator (0.
|
|
52
|
+
google-apis-discovery_v1 (0.5.0)
|
|
53
|
+
google-apis-core (>= 0.3, < 2.a)
|
|
54
|
+
google-apis-generator (0.4.0)
|
|
56
55
|
activesupport (>= 5.0)
|
|
57
56
|
gems (~> 1.2)
|
|
58
|
-
google-apis-core (
|
|
59
|
-
google-apis-discovery_v1 (~> 0.
|
|
57
|
+
google-apis-core (>= 0.4, < 2.a)
|
|
58
|
+
google-apis-discovery_v1 (~> 0.5)
|
|
60
59
|
thor (>= 0.20, < 2.a)
|
|
61
60
|
googleauth (0.16.2)
|
|
62
61
|
faraday (>= 0.17.3, < 2.0)
|
|
@@ -73,7 +72,7 @@ GEM
|
|
|
73
72
|
concurrent-ruby (~> 1.0)
|
|
74
73
|
iniparse (1.5.0)
|
|
75
74
|
jwt (2.2.3)
|
|
76
|
-
lt-google-api (0.2.
|
|
75
|
+
lt-google-api (0.2.3)
|
|
77
76
|
google-api-client (~> 0.46)
|
|
78
77
|
googleauth (~> 0.14)
|
|
79
78
|
memoist (0.16.2)
|
|
@@ -81,13 +80,11 @@ GEM
|
|
|
81
80
|
mime-types-data (~> 3.2015)
|
|
82
81
|
mime-types-data (3.2021.0225)
|
|
83
82
|
mini_mime (1.1.0)
|
|
84
|
-
mini_portile2 (2.5.3)
|
|
85
83
|
minitest (5.14.4)
|
|
86
84
|
multi_json (1.15.0)
|
|
87
85
|
multi_xml (0.6.0)
|
|
88
86
|
multipart-post (2.1.1)
|
|
89
|
-
nokogiri (1.11.7)
|
|
90
|
-
mini_portile2 (~> 2.5.0)
|
|
87
|
+
nokogiri (1.11.7-x86_64-darwin)
|
|
91
88
|
racc (~> 1.4)
|
|
92
89
|
os (1.1.1)
|
|
93
90
|
overcommit (0.58.0)
|
data/lib/lt/lcms/version.rb
CHANGED
data/lt-lcms.gemspec
CHANGED
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
|
35
35
|
|
|
36
36
|
spec.add_dependency 'google-api-client', '~> 0.38'
|
|
37
37
|
spec.add_dependency 'httparty', '~> 0.18'
|
|
38
|
-
spec.add_dependency 'lt-google-api', '~> 0.2', '>= 0.2.
|
|
38
|
+
spec.add_dependency 'lt-google-api', '~> 0.2', '>= 0.2.3'
|
|
39
39
|
spec.add_dependency 'nokogiri', '~> 1.10', '>= 1.10.8'
|
|
40
40
|
spec.add_dependency 'rubyzip', '~> 2'
|
|
41
41
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lt-lcms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Kuznetsov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-api-client
|
|
@@ -47,7 +47,7 @@ dependencies:
|
|
|
47
47
|
version: '0.2'
|
|
48
48
|
- - ">="
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
|
-
version: 0.2.
|
|
50
|
+
version: 0.2.3
|
|
51
51
|
type: :runtime
|
|
52
52
|
prerelease: false
|
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -57,7 +57,7 @@ dependencies:
|
|
|
57
57
|
version: '0.2'
|
|
58
58
|
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 0.2.
|
|
60
|
+
version: 0.2.3
|
|
61
61
|
- !ruby/object:Gem::Dependency
|
|
62
62
|
name: nokogiri
|
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -202,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
202
202
|
- !ruby/object:Gem::Version
|
|
203
203
|
version: '0'
|
|
204
204
|
requirements: []
|
|
205
|
-
rubygems_version: 3.
|
|
205
|
+
rubygems_version: 3.2.21
|
|
206
206
|
signing_key:
|
|
207
207
|
specification_version: 4
|
|
208
208
|
summary: Contains set of classes to work with Google Docs based lesson objects
|