lt-lcms 0.6.0 → 0.6.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/.overcommit.yml +0 -5
- data/CHANGELOG.md +7 -1
- data/Dockerfile +5 -5
- data/Gemfile.lock +61 -97
- data/README.md +1 -23
- data/docker-compose.yml +8 -0
- data/lib/lt/lcms/version.rb +1 -1
- data/lt-lcms.gemspec +3 -4
- metadata +9 -29
- data/rbs_collection.lock.yaml +0 -218
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 530ab52b721b8dddbd8ef8f5481bc32b34094f8cffd45b4fb42fea7a846efc52
|
4
|
+
data.tar.gz: 7b2c1e6c09a3973022b56d9688aeb67fd6d3d8165d64428684e442d34c163686
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7eec77c5a06061576548bd15aa6ca03ebec62a723c7035fac0d01e51026ef9c3efa9ec42acf72b2e43038901781ada6a4852bbdeb452a564e448a3f2d2b9bdcb
|
7
|
+
data.tar.gz: 56cd3e7bc068162f013e8a2af3c351b119b945eaa3e9fee3adce83851179890f52e4ea67cd4fbe50a0a97b97ad766de7bc7c193e20d130aa3eb0d6d325ec58db
|
data/.overcommit.yml
CHANGED
@@ -30,11 +30,6 @@ PreCommit:
|
|
30
30
|
TrailingWhitespace:
|
31
31
|
enabled: true
|
32
32
|
|
33
|
-
TypeCheck:
|
34
|
-
enabled: true
|
35
|
-
description: RBS check
|
36
|
-
command: [ 'steep', 'check' ]
|
37
|
-
|
38
33
|
PostCheckout:
|
39
34
|
ALL:
|
40
35
|
quiet: true # Change all post-checkout hooks to only display output on failure
|
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.6.
|
7
|
+
## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.6.1...HEAD)
|
8
|
+
|
9
|
+
## [0.6.1](https://github.com/learningtapestry/lt-lcms/compare/v0.6.1...v0.6.0) - 2025-06-21
|
10
|
+
|
11
|
+
### Added
|
12
|
+
|
13
|
+
- Bump lt-google-api to 0.3.2
|
8
14
|
|
9
15
|
## [0.6.0](https://github.com/learningtapestry/lt-lcms/compare/v0.5.0...v0.6.0) - 2023-12-23
|
10
16
|
### Added
|
data/Dockerfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
FROM ruby:2.7.7
|
2
2
|
|
3
|
-
ENV APP_PATH
|
4
|
-
ENV LANG
|
5
|
-
ENV GIT_AUTHOR_NAME
|
6
|
-
ENV GIT_AUTHOR_EMAIL
|
3
|
+
ENV APP_PATH=/app/
|
4
|
+
ENV LANG=C.UTF-8
|
5
|
+
ENV GIT_AUTHOR_NAME="Joe Doe"
|
6
|
+
ENV GIT_AUTHOR_EMAIL=joe@doe.com
|
7
7
|
|
8
8
|
WORKDIR $APP_PATH
|
9
9
|
|
10
10
|
COPY . $APP_PATH
|
11
11
|
|
12
|
-
ENV BUNDLER_VERSION
|
12
|
+
ENV BUNDLER_VERSION=2.4.22
|
13
13
|
RUN gem install bundler:"$BUNDLER_VERSION" \
|
14
14
|
&& bundle install --jobs `expr $(cat /proc/cpuinfo | grep -c "cpu cores") - 1` --retry 3 \
|
15
15
|
&& rm -rf /usr/local/bundle/cache/*.gem \
|
data/Gemfile.lock
CHANGED
@@ -1,156 +1,121 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
lt-lcms (0.6.
|
5
|
-
google-apis-core (~> 0.
|
6
|
-
httparty (~> 0.
|
7
|
-
lt-google-api (~> 0.3)
|
4
|
+
lt-lcms (0.6.1)
|
5
|
+
google-apis-core (~> 0.16.0)
|
6
|
+
httparty (~> 0.22)
|
7
|
+
lt-google-api (~> 0.3.2)
|
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
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
ast (2.4.2)
|
22
|
-
base64 (0.1.1)
|
23
|
-
childprocess (4.1.0)
|
24
|
-
concurrent-ruby (1.2.2)
|
25
|
-
csv (3.2.7)
|
14
|
+
addressable (2.8.7)
|
15
|
+
public_suffix (>= 2.0.2, < 7.0)
|
16
|
+
ast (2.4.3)
|
17
|
+
base64 (0.3.0)
|
18
|
+
childprocess (5.1.0)
|
19
|
+
logger (~> 1.5)
|
20
|
+
csv (3.3.5)
|
26
21
|
declarative (0.0.20)
|
27
|
-
faraday (2.
|
22
|
+
faraday (2.8.1)
|
28
23
|
base64
|
29
24
|
faraday-net_http (>= 2.0, < 3.1)
|
30
25
|
ruby2_keywords (>= 0.0.4)
|
31
26
|
faraday-net_http (3.0.2)
|
32
|
-
|
33
|
-
fileutils (1.7.1)
|
34
|
-
google-apis-core (0.11.2)
|
27
|
+
google-apis-core (0.16.0)
|
35
28
|
addressable (~> 2.5, >= 2.5.1)
|
36
|
-
googleauth (
|
37
|
-
httpclient (>= 2.8.
|
29
|
+
googleauth (~> 1.9)
|
30
|
+
httpclient (>= 2.8.3, < 3.a)
|
38
31
|
mini_mime (~> 1.0)
|
32
|
+
mutex_m
|
39
33
|
representable (~> 3.0)
|
40
34
|
retriable (>= 2.0, < 4.a)
|
41
|
-
|
42
|
-
|
43
|
-
google-
|
44
|
-
google-apis-core (>= 0.11.0, < 2.a)
|
45
|
-
google-cloud-env (2.1.0)
|
35
|
+
google-apis-drive_v3 (0.63.0)
|
36
|
+
google-apis-core (>= 0.15.0, < 2.a)
|
37
|
+
google-cloud-env (2.1.1)
|
46
38
|
faraday (>= 1.0, < 3.a)
|
47
|
-
googleauth (1.
|
39
|
+
googleauth (1.11.2)
|
48
40
|
faraday (>= 1.0, < 3.a)
|
49
41
|
google-cloud-env (~> 2.1)
|
50
42
|
jwt (>= 1.4, < 3.0)
|
51
43
|
multi_json (~> 1.11)
|
52
44
|
os (>= 0.9, < 2.0)
|
53
45
|
signet (>= 0.16, < 2.a)
|
54
|
-
httparty (0.
|
46
|
+
httparty (0.23.1)
|
47
|
+
csv
|
55
48
|
mini_mime (>= 1.0.0)
|
56
49
|
multi_xml (>= 0.5.2)
|
57
|
-
httpclient (2.
|
58
|
-
|
59
|
-
concurrent-ruby (~> 1.0)
|
50
|
+
httpclient (2.9.0)
|
51
|
+
mutex_m
|
60
52
|
iniparse (1.5.0)
|
61
|
-
json (2.
|
62
|
-
jwt (2.
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
googleauth (~> 1.9)
|
53
|
+
json (2.12.2)
|
54
|
+
jwt (2.10.1)
|
55
|
+
base64
|
56
|
+
language_server-protocol (3.17.0.5)
|
57
|
+
lint_roller (1.1.0)
|
58
|
+
logger (1.7.0)
|
59
|
+
lt-google-api (0.3.2)
|
60
|
+
google-apis-drive_v3 (~> 0.63.0)
|
61
|
+
googleauth (~> 1.11.2)
|
71
62
|
mini_mime (1.1.5)
|
72
|
-
minitest (5.19.0)
|
73
63
|
multi_json (1.15.0)
|
74
64
|
multi_xml (0.6.0)
|
75
|
-
|
76
|
-
|
77
|
-
nokogiri (1.15.4-x86_64-linux)
|
65
|
+
mutex_m (0.3.0)
|
66
|
+
nokogiri (1.15.7-aarch64-linux)
|
78
67
|
racc (~> 1.4)
|
79
68
|
os (1.1.4)
|
80
|
-
overcommit (0.
|
81
|
-
childprocess (>= 0.6.3, <
|
69
|
+
overcommit (0.67.1)
|
70
|
+
childprocess (>= 0.6.3, < 6)
|
82
71
|
iniparse (~> 1.4)
|
83
|
-
rexml (
|
84
|
-
parallel (1.
|
85
|
-
parser (3.
|
72
|
+
rexml (>= 3.3.9)
|
73
|
+
parallel (1.27.0)
|
74
|
+
parser (3.3.8.0)
|
86
75
|
ast (~> 2.4.1)
|
87
76
|
racc
|
88
|
-
|
89
|
-
|
77
|
+
prism (1.4.0)
|
78
|
+
public_suffix (5.1.1)
|
79
|
+
racc (1.8.1)
|
90
80
|
rainbow (3.1.1)
|
91
|
-
rake (13.0
|
92
|
-
|
93
|
-
rb-inotify (0.10.1)
|
94
|
-
ffi (~> 1.0)
|
95
|
-
rbs (3.1.3)
|
96
|
-
regexp_parser (2.8.1)
|
81
|
+
rake (13.3.0)
|
82
|
+
regexp_parser (2.10.0)
|
97
83
|
representable (3.2.0)
|
98
84
|
declarative (< 0.1.0)
|
99
85
|
trailblazer-option (>= 0.1.1, < 0.2.0)
|
100
86
|
uber (< 0.2.0)
|
101
87
|
retriable (3.1.2)
|
102
|
-
rexml (3.
|
103
|
-
rubocop (1.
|
104
|
-
base64 (~> 0.1.1)
|
88
|
+
rexml (3.4.1)
|
89
|
+
rubocop (1.77.0)
|
105
90
|
json (~> 2.3)
|
106
|
-
language_server-protocol (
|
91
|
+
language_server-protocol (~> 3.17.0.2)
|
92
|
+
lint_roller (~> 1.1.0)
|
107
93
|
parallel (~> 1.10)
|
108
|
-
parser (>= 3.
|
94
|
+
parser (>= 3.3.0.2)
|
109
95
|
rainbow (>= 2.2.2, < 4.0)
|
110
|
-
regexp_parser (>=
|
111
|
-
|
112
|
-
rubocop-ast (>= 1.28.1, < 2.0)
|
96
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
97
|
+
rubocop-ast (>= 1.45.1, < 2.0)
|
113
98
|
ruby-progressbar (~> 1.7)
|
114
|
-
unicode-display_width (>= 2.4.0, <
|
115
|
-
rubocop-ast (1.
|
116
|
-
parser (>= 3.
|
99
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
100
|
+
rubocop-ast (1.45.1)
|
101
|
+
parser (>= 3.3.7.2)
|
102
|
+
prism (~> 1.4)
|
117
103
|
ruby-progressbar (1.13.0)
|
118
104
|
ruby2_keywords (0.0.5)
|
119
|
-
rubyzip (2.
|
120
|
-
|
121
|
-
signet (0.18.0)
|
105
|
+
rubyzip (2.4.1)
|
106
|
+
signet (0.19.0)
|
122
107
|
addressable (~> 2.8)
|
123
108
|
faraday (>= 0.17.5, < 3.a)
|
124
109
|
jwt (>= 1.5, < 3.0)
|
125
110
|
multi_json (~> 1.10)
|
126
|
-
steep (1.5.3)
|
127
|
-
activesupport (>= 5.1)
|
128
|
-
concurrent-ruby (>= 1.1.10)
|
129
|
-
csv (>= 3.0.9)
|
130
|
-
fileutils (>= 1.1.0)
|
131
|
-
json (>= 2.1.0)
|
132
|
-
language_server-protocol (>= 3.15, < 4.0)
|
133
|
-
listen (~> 3.0)
|
134
|
-
logger (>= 1.3.0)
|
135
|
-
parser (>= 3.1)
|
136
|
-
rainbow (>= 2.2.2, < 4.0)
|
137
|
-
rbs (>= 3.1.0)
|
138
|
-
securerandom (>= 0.1)
|
139
|
-
strscan (>= 1.0.0)
|
140
|
-
terminal-table (>= 2, < 4)
|
141
|
-
strscan (3.0.6)
|
142
|
-
terminal-table (3.0.2)
|
143
|
-
unicode-display_width (>= 1.1.1, < 3)
|
144
111
|
trailblazer-option (0.1.2)
|
145
|
-
tzinfo (2.0.6)
|
146
|
-
concurrent-ruby (~> 1.0)
|
147
112
|
uber (0.1.0)
|
148
|
-
unicode-display_width (
|
149
|
-
|
113
|
+
unicode-display_width (3.1.4)
|
114
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
115
|
+
unicode-emoji (4.0.4)
|
150
116
|
|
151
117
|
PLATFORMS
|
152
118
|
aarch64-linux
|
153
|
-
x86_64-linux
|
154
119
|
|
155
120
|
DEPENDENCIES
|
156
121
|
bundler (~> 2.4)
|
@@ -158,7 +123,6 @@ DEPENDENCIES
|
|
158
123
|
overcommit (~> 0.60)
|
159
124
|
rake (~> 13.0)
|
160
125
|
rubocop (~> 1.54)
|
161
|
-
steep (~> 1.5.3)
|
162
126
|
|
163
127
|
BUNDLED WITH
|
164
128
|
2.4.22
|
data/README.md
CHANGED
@@ -1,9 +1,7 @@
|
|
1
1
|
# Lt::Lcms
|
2
2
|
|
3
|
-
[](https://codeclimate.com/github/learningtapestry/lt-lcms/maintainability)
|
4
3
|
[](https://app.codeship.com/projects/330485)
|
5
4
|
|
6
|
-
|
7
5
|
## Installation
|
8
6
|
|
9
7
|
Add this line to your application's Gemfile:
|
@@ -37,27 +35,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
37
35
|
### Docker
|
38
36
|
|
39
37
|
```shell
|
40
|
-
docker buildx build --platform linux/arm64/v8,linux/amd64 -t learningtapestry/lt-lcms --push .
|
41
|
-
```
|
42
|
-
|
43
|
-
### Type checking
|
44
|
-
|
45
|
-
Install existing collections:
|
46
|
-
|
47
|
-
```shell
|
48
|
-
rbs collection install
|
49
|
-
```
|
50
|
-
|
51
|
-
Validate installation
|
52
|
-
|
53
|
-
```shell
|
54
|
-
rbs validate
|
55
|
-
```
|
56
|
-
|
57
|
-
Check types
|
58
|
-
|
59
|
-
```shell
|
60
|
-
steep check
|
38
|
+
docker buildx build --platform linux/arm64/v8,linux/amd64 -t learningtapestry/lt-lcms:legacy --push .
|
61
39
|
```
|
62
40
|
|
63
41
|
## Contributing
|
data/docker-compose.yml
ADDED
data/lib/lt/lcms/version.rb
CHANGED
data/lt-lcms.gemspec
CHANGED
@@ -34,9 +34,9 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
34
34
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
35
35
|
spec.require_paths = ['lib']
|
36
36
|
|
37
|
-
spec.add_dependency 'google-apis-core', '~> 0.
|
38
|
-
spec.add_dependency 'httparty', '~> 0.
|
39
|
-
spec.add_dependency 'lt-google-api', '~> 0.3'
|
37
|
+
spec.add_dependency 'google-apis-core', '~> 0.16.0'
|
38
|
+
spec.add_dependency 'httparty', '~> 0.22'
|
39
|
+
spec.add_dependency 'lt-google-api', '~> 0.3.2'
|
40
40
|
spec.add_dependency 'nokogiri', '~> 1.10', '>= 1.10.8'
|
41
41
|
spec.add_dependency 'rubyzip', '~> 2'
|
42
42
|
|
@@ -44,5 +44,4 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
44
44
|
spec.add_development_dependency 'overcommit', '~> 0.60'
|
45
45
|
spec.add_development_dependency 'rake', '~> 13.0'
|
46
46
|
spec.add_development_dependency 'rubocop', '~> 1.54'
|
47
|
-
spec.add_development_dependency 'steep', '~> 1.5.3'
|
48
47
|
end
|
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.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Kuznetsov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,48 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
20
|
-
- - ">="
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 0.11.1
|
19
|
+
version: 0.16.0
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
30
|
-
- - ">="
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 0.11.1
|
26
|
+
version: 0.16.0
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: httparty
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
36
30
|
requirements:
|
37
31
|
- - "~>"
|
38
32
|
- !ruby/object:Gem::Version
|
39
|
-
version: '0.
|
33
|
+
version: '0.22'
|
40
34
|
type: :runtime
|
41
35
|
prerelease: false
|
42
36
|
version_requirements: !ruby/object:Gem::Requirement
|
43
37
|
requirements:
|
44
38
|
- - "~>"
|
45
39
|
- !ruby/object:Gem::Version
|
46
|
-
version: '0.
|
40
|
+
version: '0.22'
|
47
41
|
- !ruby/object:Gem::Dependency
|
48
42
|
name: lt-google-api
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|
50
44
|
requirements:
|
51
45
|
- - "~>"
|
52
46
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
47
|
+
version: 0.3.2
|
54
48
|
type: :runtime
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
51
|
requirements:
|
58
52
|
- - "~>"
|
59
53
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
54
|
+
version: 0.3.2
|
61
55
|
- !ruby/object:Gem::Dependency
|
62
56
|
name: nokogiri
|
63
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -148,20 +142,6 @@ dependencies:
|
|
148
142
|
- - "~>"
|
149
143
|
- !ruby/object:Gem::Version
|
150
144
|
version: '1.54'
|
151
|
-
- !ruby/object:Gem::Dependency
|
152
|
-
name: steep
|
153
|
-
requirement: !ruby/object:Gem::Requirement
|
154
|
-
requirements:
|
155
|
-
- - "~>"
|
156
|
-
- !ruby/object:Gem::Version
|
157
|
-
version: 1.5.3
|
158
|
-
type: :development
|
159
|
-
prerelease: false
|
160
|
-
version_requirements: !ruby/object:Gem::Requirement
|
161
|
-
requirements:
|
162
|
-
- - "~>"
|
163
|
-
- !ruby/object:Gem::Version
|
164
|
-
version: 1.5.3
|
165
145
|
description: ''
|
166
146
|
email:
|
167
147
|
- alexander@learningtapeestry.com
|
@@ -189,6 +169,7 @@ files:
|
|
189
169
|
- bin/console
|
190
170
|
- bin/overcommit
|
191
171
|
- bin/setup
|
172
|
+
- docker-compose.yml
|
192
173
|
- docker-entrypoint.sh
|
193
174
|
- lib/lt/lcms.rb
|
194
175
|
- lib/lt/lcms/lesson/downloader.rb
|
@@ -200,7 +181,6 @@ files:
|
|
200
181
|
- lib/lt/lcms/lesson/uploader/gdoc.rb
|
201
182
|
- lib/lt/lcms/version.rb
|
202
183
|
- lt-lcms.gemspec
|
203
|
-
- rbs_collection.lock.yaml
|
204
184
|
- rbs_collection.yaml
|
205
185
|
- sig/lt/lcms.rbs
|
206
186
|
- sig/lt/lcms/lesson/downloader.rbs
|
data/rbs_collection.lock.yaml
DELETED
@@ -1,218 +0,0 @@
|
|
1
|
-
---
|
2
|
-
sources:
|
3
|
-
- type: git
|
4
|
-
name: ruby/gem_rbs_collection
|
5
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
6
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
7
|
-
repo_dir: gems
|
8
|
-
path: ".gem_rbs_collection"
|
9
|
-
gems:
|
10
|
-
- name: activesupport
|
11
|
-
version: '7.0'
|
12
|
-
source:
|
13
|
-
type: git
|
14
|
-
name: ruby/gem_rbs_collection
|
15
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
16
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
17
|
-
repo_dir: gems
|
18
|
-
- name: addressable
|
19
|
-
version: '2.8'
|
20
|
-
source:
|
21
|
-
type: git
|
22
|
-
name: ruby/gem_rbs_collection
|
23
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
24
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
25
|
-
repo_dir: gems
|
26
|
-
- name: ast
|
27
|
-
version: '2.4'
|
28
|
-
source:
|
29
|
-
type: git
|
30
|
-
name: ruby/gem_rbs_collection
|
31
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
32
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
33
|
-
repo_dir: gems
|
34
|
-
- name: base64
|
35
|
-
version: '0'
|
36
|
-
source:
|
37
|
-
type: stdlib
|
38
|
-
- name: date
|
39
|
-
version: '0'
|
40
|
-
source:
|
41
|
-
type: stdlib
|
42
|
-
- name: erb
|
43
|
-
version: '0'
|
44
|
-
source:
|
45
|
-
type: stdlib
|
46
|
-
- name: faraday
|
47
|
-
version: '2.5'
|
48
|
-
source:
|
49
|
-
type: git
|
50
|
-
name: ruby/gem_rbs_collection
|
51
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
52
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
53
|
-
repo_dir: gems
|
54
|
-
- name: fileutils
|
55
|
-
version: '0'
|
56
|
-
source:
|
57
|
-
type: stdlib
|
58
|
-
- name: forwardable
|
59
|
-
version: '0'
|
60
|
-
source:
|
61
|
-
type: stdlib
|
62
|
-
- name: httparty
|
63
|
-
version: '0.18'
|
64
|
-
source:
|
65
|
-
type: git
|
66
|
-
name: ruby/gem_rbs_collection
|
67
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
68
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
69
|
-
repo_dir: gems
|
70
|
-
- name: httpclient
|
71
|
-
version: '2.8'
|
72
|
-
source:
|
73
|
-
type: git
|
74
|
-
name: ruby/gem_rbs_collection
|
75
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
76
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
77
|
-
repo_dir: gems
|
78
|
-
- name: i18n
|
79
|
-
version: '1.10'
|
80
|
-
source:
|
81
|
-
type: git
|
82
|
-
name: ruby/gem_rbs_collection
|
83
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
84
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
85
|
-
repo_dir: gems
|
86
|
-
- name: json
|
87
|
-
version: '0'
|
88
|
-
source:
|
89
|
-
type: stdlib
|
90
|
-
- name: jwt
|
91
|
-
version: '2.5'
|
92
|
-
source:
|
93
|
-
type: git
|
94
|
-
name: ruby/gem_rbs_collection
|
95
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
96
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
97
|
-
repo_dir: gems
|
98
|
-
- name: logger
|
99
|
-
version: '0'
|
100
|
-
source:
|
101
|
-
type: stdlib
|
102
|
-
- name: minitest
|
103
|
-
version: '0'
|
104
|
-
source:
|
105
|
-
type: stdlib
|
106
|
-
- name: monitor
|
107
|
-
version: '0'
|
108
|
-
source:
|
109
|
-
type: stdlib
|
110
|
-
- name: mutex_m
|
111
|
-
version: '0'
|
112
|
-
source:
|
113
|
-
type: stdlib
|
114
|
-
- name: net-http
|
115
|
-
version: '0'
|
116
|
-
source:
|
117
|
-
type: stdlib
|
118
|
-
- name: nokogiri
|
119
|
-
version: '1.11'
|
120
|
-
source:
|
121
|
-
type: git
|
122
|
-
name: ruby/gem_rbs_collection
|
123
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
124
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
125
|
-
repo_dir: gems
|
126
|
-
- name: parallel
|
127
|
-
version: '1.20'
|
128
|
-
source:
|
129
|
-
type: git
|
130
|
-
name: ruby/gem_rbs_collection
|
131
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
132
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
133
|
-
repo_dir: gems
|
134
|
-
- name: parser
|
135
|
-
version: '3.2'
|
136
|
-
source:
|
137
|
-
type: git
|
138
|
-
name: ruby/gem_rbs_collection
|
139
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
140
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
141
|
-
repo_dir: gems
|
142
|
-
- name: rainbow
|
143
|
-
version: '3.0'
|
144
|
-
source:
|
145
|
-
type: git
|
146
|
-
name: ruby/gem_rbs_collection
|
147
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
148
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
149
|
-
repo_dir: gems
|
150
|
-
- name: rake
|
151
|
-
version: '13.0'
|
152
|
-
source:
|
153
|
-
type: git
|
154
|
-
name: ruby/gem_rbs_collection
|
155
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
156
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
157
|
-
repo_dir: gems
|
158
|
-
- name: regexp_parser
|
159
|
-
version: '2.8'
|
160
|
-
source:
|
161
|
-
type: git
|
162
|
-
name: ruby/gem_rbs_collection
|
163
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
164
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
165
|
-
repo_dir: gems
|
166
|
-
- name: rubocop
|
167
|
-
version: '1.57'
|
168
|
-
source:
|
169
|
-
type: git
|
170
|
-
name: ruby/gem_rbs_collection
|
171
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
172
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
173
|
-
repo_dir: gems
|
174
|
-
- name: rubocop-ast
|
175
|
-
version: '1.30'
|
176
|
-
source:
|
177
|
-
type: git
|
178
|
-
name: ruby/gem_rbs_collection
|
179
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
180
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
181
|
-
repo_dir: gems
|
182
|
-
- name: rubyzip
|
183
|
-
version: '2.3'
|
184
|
-
source:
|
185
|
-
type: git
|
186
|
-
name: ruby/gem_rbs_collection
|
187
|
-
revision: b42e4de88058603a34446942143b3ac197b9685c
|
188
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
189
|
-
repo_dir: gems
|
190
|
-
- name: securerandom
|
191
|
-
version: '0'
|
192
|
-
source:
|
193
|
-
type: stdlib
|
194
|
-
- name: singleton
|
195
|
-
version: '0'
|
196
|
-
source:
|
197
|
-
type: stdlib
|
198
|
-
- name: thor
|
199
|
-
version: '1.2'
|
200
|
-
source:
|
201
|
-
type: git
|
202
|
-
name: ruby/gem_rbs_collection
|
203
|
-
revision: 20e6e0f0685139dbd29df50e03367e222aa5d1b8
|
204
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
205
|
-
repo_dir: gems
|
206
|
-
- name: time
|
207
|
-
version: '0'
|
208
|
-
source:
|
209
|
-
type: stdlib
|
210
|
-
- name: timeout
|
211
|
-
version: '0'
|
212
|
-
source:
|
213
|
-
type: stdlib
|
214
|
-
- name: uri
|
215
|
-
version: '0'
|
216
|
-
source:
|
217
|
-
type: stdlib
|
218
|
-
gemfile_lock_path: Gemfile.lock
|