neocities-red 1.1.1 → 1.2.0
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/ci.yml +29 -15
- data/.gitignore +4 -0
- data/CHANGELOG.md +95 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +38 -34
- data/README.md +6 -0
- data/lib/neocities_red/cli.rb +157 -32
- data/lib/neocities_red/cli_display.rb +200 -5
- data/lib/neocities_red/client.rb +84 -77
- data/lib/neocities_red/errors.rb +20 -0
- data/lib/neocities_red/services/common/exclusions.rb +69 -0
- data/lib/neocities_red/services/common/pizza.rb +34 -21
- data/lib/neocities_red/services/common/worker_pool.rb +54 -0
- data/lib/neocities_red/services/file/folder_uploader.rb +39 -25
- data/lib/neocities_red/services/file/list.rb +60 -30
- data/lib/neocities_red/services/file/remover.rb +27 -12
- data/lib/neocities_red/services/file/uploader.rb +33 -13
- data/lib/neocities_red/services/site/differencer.rb +42 -12
- data/lib/neocities_red/services/site/exporter.rb +120 -7
- data/lib/neocities_red/services/site/informer.rb +29 -4
- data/lib/neocities_red/services/site/pusher.rb +74 -38
- data/lib/neocities_red/version.rb +2 -1
- data/lib/neocities_red.rb +32 -13
- data/neocities-red.gemspec +12 -7
- data/spec/neocities_red/cli_display_spec.rb +0 -6
- data/spec/neocities_red/cli_spec.rb +85 -0
- data/spec/neocities_red/client_spec.rb +7 -50
- data/spec/neocities_red/services/common/exclusions_spec.rb +47 -0
- data/spec/neocities_red/services/common/worker_pool_spec.rb +48 -0
- data/spec/neocities_red/services/file/folder_uploader_spec.rb +8 -6
- data/spec/neocities_red/services/file/list_spec.rb +13 -10
- data/spec/neocities_red/services/file/remover_spec.rb +15 -21
- data/spec/neocities_red/services/file/uploader_spec.rb +25 -20
- data/spec/neocities_red/services/site/differencer_spec.rb +32 -6
- data/spec/neocities_red/services/site/exporter_spec.rb +105 -38
- data/spec/neocities_red/services/site/informer_spec.rb +3 -3
- data/spec/neocities_red/services/site/pusher_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +14 -34
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf561591a6a553947115437ac9ed12e84f72fc4d14ea9532fe3d3465584db764
|
|
4
|
+
data.tar.gz: 9b6b0f645578532ee3d647a8b5f87d38aca66ebd0580f8347c2e39ff4cabee18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2c2245f54b0afeb60684c05f5d9d7cb67c0f4d1f0a479472a4a75db1fc95587521d7e7ea3e98f9372296e9ec007dcaba2e970eb3234006f082e054dbcc16ab9
|
|
7
|
+
data.tar.gz: 3d01aee0ffd3d92dd8128dfa6e5cfdfd113df1564b983951c01f350f8d62f4115cc788fe95629d55c5f3aa16f9cb9b4a8f642b47129d9695b82f36610128217a
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -8,17 +8,21 @@ on:
|
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
lint:
|
|
11
|
-
name: Lint (
|
|
11
|
+
name: Lint (Ruby ${{ matrix.ruby-version }})
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
|
+
strategy:
|
|
14
|
+
fail-fast: false
|
|
15
|
+
matrix:
|
|
16
|
+
ruby-version: ['3.4', '3.5', '4.0']
|
|
13
17
|
|
|
14
18
|
steps:
|
|
15
19
|
- name: Checkout repository
|
|
16
20
|
uses: actions/checkout@v4
|
|
17
21
|
|
|
18
|
-
- name: Set up Ruby
|
|
22
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
19
23
|
uses: ruby/setup-ruby@v1
|
|
20
24
|
with:
|
|
21
|
-
ruby-version:
|
|
25
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
22
26
|
bundler-cache: true
|
|
23
27
|
|
|
24
28
|
- name: Debug versions
|
|
@@ -31,59 +35,65 @@ jobs:
|
|
|
31
35
|
run: bundle exec rubocop
|
|
32
36
|
|
|
33
37
|
test_linux:
|
|
34
|
-
name: Test (ubuntu-latest)
|
|
38
|
+
name: Test (Ruby ${{ matrix.ruby-version }}, ubuntu-latest)
|
|
35
39
|
runs-on: ubuntu-latest
|
|
40
|
+
strategy:
|
|
41
|
+
fail-fast: false
|
|
42
|
+
matrix:
|
|
43
|
+
ruby-version: ['3.4', '3.5', '4.0']
|
|
36
44
|
|
|
37
45
|
steps:
|
|
38
46
|
- name: Checkout repository
|
|
39
47
|
uses: actions/checkout@v4
|
|
40
48
|
|
|
41
|
-
- name: Set up Ruby
|
|
49
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
42
50
|
uses: ruby/setup-ruby@v1
|
|
43
51
|
with:
|
|
44
|
-
ruby-version:
|
|
52
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
45
53
|
bundler-cache: true
|
|
46
54
|
|
|
47
55
|
- name: Run tests
|
|
48
56
|
run: bundle exec rspec
|
|
49
57
|
|
|
50
58
|
test_non_linux:
|
|
51
|
-
name: Test (${{ matrix.os }})
|
|
59
|
+
name: Test (Ruby ${{ matrix.ruby-version }}, ${{ matrix.os }})
|
|
52
60
|
runs-on: ${{ matrix.os }}
|
|
53
61
|
strategy:
|
|
54
62
|
fail-fast: false
|
|
55
63
|
matrix:
|
|
56
64
|
os: [macos-latest, windows-latest]
|
|
65
|
+
ruby-version: ['3.4', '4.0']
|
|
57
66
|
|
|
58
67
|
steps:
|
|
59
68
|
- name: Checkout repository
|
|
60
69
|
uses: actions/checkout@v4
|
|
61
70
|
|
|
62
|
-
- name: Set up Ruby
|
|
71
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
63
72
|
uses: ruby/setup-ruby@v1
|
|
64
73
|
with:
|
|
65
|
-
ruby-version:
|
|
74
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
66
75
|
bundler-cache: true
|
|
67
76
|
|
|
68
77
|
- name: Run tests
|
|
69
78
|
run: bundle exec rspec
|
|
70
79
|
|
|
71
80
|
smoke_unix:
|
|
72
|
-
name: Start CLI (${{ matrix.os }})
|
|
81
|
+
name: Start CLI (Ruby ${{ matrix.ruby-version }}, ${{ matrix.os }})
|
|
73
82
|
runs-on: ${{ matrix.os }}
|
|
74
83
|
strategy:
|
|
75
84
|
fail-fast: false
|
|
76
85
|
matrix:
|
|
77
86
|
os: [ubuntu-latest, macos-latest]
|
|
87
|
+
ruby-version: ['3.4', '4.0']
|
|
78
88
|
|
|
79
89
|
steps:
|
|
80
90
|
- name: Checkout repository
|
|
81
91
|
uses: actions/checkout@v4
|
|
82
92
|
|
|
83
|
-
- name: Set up Ruby
|
|
93
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
84
94
|
uses: ruby/setup-ruby@v1
|
|
85
95
|
with:
|
|
86
|
-
ruby-version:
|
|
96
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
87
97
|
bundler-cache: true
|
|
88
98
|
|
|
89
99
|
- name: Start CLI
|
|
@@ -92,17 +102,21 @@ jobs:
|
|
|
92
102
|
bundle exec bin/neocities-red
|
|
93
103
|
|
|
94
104
|
smoke_windows:
|
|
95
|
-
name: Start CLI (windows-latest)
|
|
105
|
+
name: Start CLI (Ruby ${{ matrix.ruby-version }}, windows-latest)
|
|
96
106
|
runs-on: windows-latest
|
|
107
|
+
strategy:
|
|
108
|
+
fail-fast: false
|
|
109
|
+
matrix:
|
|
110
|
+
ruby-version: ['3.4', '4.0']
|
|
97
111
|
|
|
98
112
|
steps:
|
|
99
113
|
- name: Checkout repository
|
|
100
114
|
uses: actions/checkout@v4
|
|
101
115
|
|
|
102
|
-
- name: Set up Ruby
|
|
116
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
103
117
|
uses: ruby/setup-ruby@v1
|
|
104
118
|
with:
|
|
105
|
-
ruby-version:
|
|
119
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
106
120
|
bundler-cache: true
|
|
107
121
|
|
|
108
122
|
- name: Start CLI
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [1.2.0] — 2026-08-04
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Major architecture refactor with namespaced services (`file/`, `site/`, `common/`)
|
|
15
|
+
- Renamed gem to `neocities-red`
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- YARD documentation
|
|
20
|
+
|
|
21
|
+
### Removed
|
|
22
|
+
|
|
23
|
+
- Unused legacy code
|
|
24
|
+
|
|
25
|
+
## [1.1.2] — 2026-08-04
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Bumped rubocop to 1.88.2, rubocop-rspec to 3.10.2, faraday to 2.14.3
|
|
30
|
+
|
|
31
|
+
## [1.1.1] — 2026-06-22
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- Config for Windows/FreeBSD platforms
|
|
36
|
+
- Purge no longer removes already-removed files
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- `upload` accepts a single parameter
|
|
41
|
+
- Bumped rake to 13.4.2
|
|
42
|
+
|
|
43
|
+
## [1.1.0] — 2026-04-25
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
|
|
47
|
+
- Added Rails/Thor CLI framework, refactored `cli.rb`
|
|
48
|
+
|
|
49
|
+
## [1.0.6] — 2026-04-14
|
|
50
|
+
|
|
51
|
+
### Fixed
|
|
52
|
+
|
|
53
|
+
- Tests and lint fixes
|
|
54
|
+
- Added `faraday-retry` for flaky API/SSL handling
|
|
55
|
+
|
|
56
|
+
## [1.0.4] — 2026-03-29
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
|
|
60
|
+
- CLI version display updated
|
|
61
|
+
|
|
62
|
+
## [1.0.2] — 2026-02-11
|
|
63
|
+
|
|
64
|
+
### Added
|
|
65
|
+
|
|
66
|
+
- Multithreaded parallel uploads
|
|
67
|
+
- Fixed recursive uploading in `upload` method
|
|
68
|
+
|
|
69
|
+
## [1.0.1] — 2026-02-07
|
|
70
|
+
|
|
71
|
+
### Added
|
|
72
|
+
|
|
73
|
+
- Folder uploading support
|
|
74
|
+
|
|
75
|
+
## [1.0.0] — 2026-02-11
|
|
76
|
+
|
|
77
|
+
### Added
|
|
78
|
+
|
|
79
|
+
- Initial release of `neocities-red` (fork of `neocities-ruby`)
|
|
80
|
+
- Recursive uploads with smart diffing
|
|
81
|
+
- `push`, `upload`, `delete`, `diff`, `list`, `info`, `pull` commands
|
|
82
|
+
- Parallel upload workers
|
|
83
|
+
- Automatic retries
|
|
84
|
+
- Config file with `NEOCITIES_API_KEY` support
|
|
85
|
+
|
|
86
|
+
[Unreleased]: https://github.com/o-200/neocities-red/compare/v1.2.0...HEAD
|
|
87
|
+
[1.2.0]: https://github.com/o-200/neocities-red/compare/v1.1.2...v1.2.0
|
|
88
|
+
[1.1.2]: https://github.com/o-200/neocities-red/compare/v1.1.1...v1.1.2
|
|
89
|
+
[1.1.1]: https://github.com/o-200/neocities-red/compare/v1.1.0...v1.1.1
|
|
90
|
+
[1.1.0]: https://github.com/o-200/neocities-red/compare/v1.0.6...v1.1.0
|
|
91
|
+
[1.0.6]: https://github.com/o-200/neocities-red/compare/v1.0.4...v1.0.6
|
|
92
|
+
[1.0.4]: https://github.com/o-200/neocities-red/compare/v1.0.2...v1.0.4
|
|
93
|
+
[1.0.2]: https://github.com/o-200/neocities-red/compare/v1.0.1...v1.0.2
|
|
94
|
+
[1.0.1]: https://github.com/o-200/neocities-red/compare/v1.0.0...v1.0.1
|
|
95
|
+
[1.0.0]: https://github.com/o-200/neocities-red/releases/tag/v1.0.0
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
neocities-red (1.
|
|
5
|
-
faraday (~> 2.
|
|
4
|
+
neocities-red (1.2.0)
|
|
5
|
+
faraday (~> 2.14.3)
|
|
6
6
|
faraday-follow_redirects
|
|
7
7
|
faraday-multipart
|
|
8
8
|
faraday-retry
|
|
9
9
|
fiddle
|
|
10
|
-
pastel (
|
|
11
|
-
rake (~> 13
|
|
10
|
+
pastel (= 0.8.0)
|
|
11
|
+
rake (~> 13)
|
|
12
12
|
thor (~> 1.5.0, >= 1.5.0)
|
|
13
|
-
tty-prompt (
|
|
14
|
-
tty-table (
|
|
13
|
+
tty-prompt (= 0.23.1)
|
|
14
|
+
tty-table (= 0.12.0)
|
|
15
15
|
whirly (~> 0.3, >= 0.3.0)
|
|
16
16
|
|
|
17
17
|
GEM
|
|
@@ -20,12 +20,12 @@ GEM
|
|
|
20
20
|
addressable (2.9.0)
|
|
21
21
|
public_suffix (>= 2.0.2, < 8.0)
|
|
22
22
|
ast (2.4.3)
|
|
23
|
-
bigdecimal (4.1.
|
|
23
|
+
bigdecimal (4.1.2)
|
|
24
24
|
crack (1.0.1)
|
|
25
25
|
bigdecimal
|
|
26
26
|
rexml
|
|
27
27
|
diff-lcs (1.6.2)
|
|
28
|
-
faraday (2.14.
|
|
28
|
+
faraday (2.14.3)
|
|
29
29
|
faraday-net_http (>= 2.0, < 3.5)
|
|
30
30
|
json
|
|
31
31
|
logger
|
|
@@ -33,21 +33,21 @@ GEM
|
|
|
33
33
|
faraday (>= 1, < 3)
|
|
34
34
|
faraday-multipart (1.2.0)
|
|
35
35
|
multipart-post (~> 2.0)
|
|
36
|
-
faraday-net_http (3.4.
|
|
36
|
+
faraday-net_http (3.4.4)
|
|
37
37
|
net-http (~> 0.5)
|
|
38
38
|
faraday-retry (2.4.0)
|
|
39
39
|
faraday (~> 2.0)
|
|
40
40
|
fiddle (1.1.8)
|
|
41
41
|
hashdiff (1.2.1)
|
|
42
|
-
json (2.
|
|
43
|
-
language_server-protocol (3.17.0.
|
|
42
|
+
json (2.21.2)
|
|
43
|
+
language_server-protocol (3.17.0.6)
|
|
44
44
|
lint_roller (1.1.0)
|
|
45
45
|
logger (1.7.0)
|
|
46
46
|
multipart-post (2.4.1)
|
|
47
47
|
net-http (0.9.1)
|
|
48
48
|
uri (>= 0.11.1)
|
|
49
|
-
parallel (2.0
|
|
50
|
-
parser (3.3.
|
|
49
|
+
parallel (2.1.0)
|
|
50
|
+
parser (3.3.12.0)
|
|
51
51
|
ast (~> 2.4.1)
|
|
52
52
|
racc
|
|
53
53
|
pastel (0.8.0)
|
|
@@ -56,7 +56,7 @@ GEM
|
|
|
56
56
|
public_suffix (7.0.5)
|
|
57
57
|
racc (1.8.1)
|
|
58
58
|
rainbow (3.1.1)
|
|
59
|
-
rake (13.
|
|
59
|
+
rake (13.4.2)
|
|
60
60
|
regexp_parser (2.12.0)
|
|
61
61
|
rexml (3.4.4)
|
|
62
62
|
rspec (3.13.2)
|
|
@@ -72,7 +72,7 @@ GEM
|
|
|
72
72
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
73
73
|
rspec-support (~> 3.13.0)
|
|
74
74
|
rspec-support (3.13.7)
|
|
75
|
-
rubocop (1.
|
|
75
|
+
rubocop (1.88.2)
|
|
76
76
|
json (~> 2.3)
|
|
77
77
|
language_server-protocol (~> 3.17.0.2)
|
|
78
78
|
lint_roller (~> 1.1.0)
|
|
@@ -83,12 +83,13 @@ GEM
|
|
|
83
83
|
rubocop-ast (>= 1.49.0, < 2.0)
|
|
84
84
|
ruby-progressbar (~> 1.7)
|
|
85
85
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
86
|
-
rubocop-ast (1.
|
|
86
|
+
rubocop-ast (1.50.0)
|
|
87
87
|
parser (>= 3.3.7.2)
|
|
88
88
|
prism (~> 1.7)
|
|
89
|
-
rubocop-rspec (3.
|
|
89
|
+
rubocop-rspec (3.10.2)
|
|
90
90
|
lint_roller (~> 1.1)
|
|
91
|
-
|
|
91
|
+
regexp_parser (>= 2.0)
|
|
92
|
+
rubocop (~> 1.86, >= 1.86.2)
|
|
92
93
|
ruby-progressbar (1.13.0)
|
|
93
94
|
strings (0.2.1)
|
|
94
95
|
strings-ansi (~> 0.2)
|
|
@@ -121,47 +122,49 @@ GEM
|
|
|
121
122
|
json
|
|
122
123
|
unicode-display_width (>= 1.1)
|
|
123
124
|
wisper (2.0.1)
|
|
125
|
+
yard (0.9.45)
|
|
124
126
|
|
|
125
127
|
PLATFORMS
|
|
126
128
|
ruby
|
|
127
|
-
x64-mingw-ucrt
|
|
128
129
|
x86_64-linux
|
|
129
130
|
|
|
130
131
|
DEPENDENCIES
|
|
131
132
|
neocities-red!
|
|
132
133
|
rspec
|
|
133
|
-
rubocop (~> 1.
|
|
134
|
-
rubocop-rspec (~> 3.
|
|
134
|
+
rubocop (~> 1.88.2)
|
|
135
|
+
rubocop-rspec (~> 3.10.2)
|
|
135
136
|
webmock
|
|
137
|
+
yard
|
|
136
138
|
|
|
137
139
|
CHECKSUMS
|
|
138
140
|
addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af
|
|
139
141
|
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
|
140
|
-
bigdecimal (4.1.
|
|
142
|
+
bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
|
|
143
|
+
bundler (4.0.17) sha256=214e21431b5665dd2f99df8a5511c6b151d7a72e8015c8b38f8b775b61cbb6c1
|
|
141
144
|
crack (1.0.1) sha256=ff4a10390cd31d66440b7524eb1841874db86201d5b70032028553130b6d4c7e
|
|
142
145
|
diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
|
|
143
|
-
faraday (2.14.
|
|
146
|
+
faraday (2.14.3) sha256=1882247e6766615c8220b4392bf1d27f6ebb63d8e28267587cef1fb0bf37f278
|
|
144
147
|
faraday-follow_redirects (0.5.0) sha256=5cde93c894b30943a5d2b93c2fe9284216a6b756f7af406a1e55f211d97d10ad
|
|
145
148
|
faraday-multipart (1.2.0) sha256=7d89a949693714176f612323ca13746a2ded204031a6ba528adee788694ef757
|
|
146
|
-
faraday-net_http (3.4.
|
|
149
|
+
faraday-net_http (3.4.4) sha256=0e78af151747ed1b00f33e25973b4bc220d7f16c00c39676817c8b12331eb588
|
|
147
150
|
faraday-retry (2.4.0) sha256=7b79c48fb7e56526faf247b12d94a680071ff40c9fda7cf1ec1549439ad11ebe
|
|
148
151
|
fiddle (1.1.8) sha256=7fa8ee3627271497f3add5503acdbc3f40b32f610fc1cf49634f083ef3f32eee
|
|
149
152
|
hashdiff (1.2.1) sha256=9c079dbc513dfc8833ab59c0c2d8f230fa28499cc5efb4b8dd276cf931457cd1
|
|
150
|
-
json (2.
|
|
151
|
-
language_server-protocol (3.17.0.
|
|
153
|
+
json (2.21.2) sha256=1f1d3b7cf2b3ba1a69beca0bb6db13d5438b80bff3cd54cdaaa620b9b07c1c6a
|
|
154
|
+
language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0
|
|
152
155
|
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
153
156
|
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
|
154
157
|
multipart-post (2.4.1) sha256=9872d03a8e552020ca096adadbf5e3cb1cd1cdd6acd3c161136b8a5737cdb4a8
|
|
155
|
-
neocities-red (1.
|
|
158
|
+
neocities-red (1.2.0)
|
|
156
159
|
net-http (0.9.1) sha256=25ba0b67c63e89df626ed8fac771d0ad24ad151a858af2cc8e6a716ca4336996
|
|
157
|
-
parallel (2.0
|
|
158
|
-
parser (3.3.
|
|
160
|
+
parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
|
|
161
|
+
parser (3.3.12.0) sha256=21a6d7f755d5a24dfbdc6e6b772e4e879a52e7631a88bc5a3a134606052c9828
|
|
159
162
|
pastel (0.8.0) sha256=481da9fb7d2f6e6b1a08faf11fa10363172dc40fd47848f096ae21209f805a75
|
|
160
163
|
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
161
164
|
public_suffix (7.0.5) sha256=1a8bb08f1bbea19228d3bed6e5ed908d1cb4f7c2726d18bd9cadf60bc676f623
|
|
162
165
|
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
163
166
|
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
|
164
|
-
rake (13.
|
|
167
|
+
rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
|
|
165
168
|
regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
|
|
166
169
|
rexml (3.4.4) sha256=19e0a2c3425dfbf2d4fc1189747bdb2f849b6c5e74180401b15734bc97b5d142
|
|
167
170
|
rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
|
|
@@ -169,9 +172,9 @@ CHECKSUMS
|
|
|
169
172
|
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
|
|
170
173
|
rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
|
|
171
174
|
rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
|
|
172
|
-
rubocop (1.
|
|
173
|
-
rubocop-ast (1.
|
|
174
|
-
rubocop-rspec (3.
|
|
175
|
+
rubocop (1.88.2) sha256=8def251c90cd955feb4daa3edc0ab56893250c4ce90ef81e6c80c03f9a939bbf
|
|
176
|
+
rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
|
|
177
|
+
rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
|
|
175
178
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
176
179
|
strings (0.2.1) sha256=933293b3c95cf85b81eb44b3cf673e3087661ba739bbadfeadf442083158d6fb
|
|
177
180
|
strings-ansi (0.2.0) sha256=90262d760ea4a94cc2ae8d58205277a343409c288cbe7c29416b1826bd511c88
|
|
@@ -188,6 +191,7 @@ CHECKSUMS
|
|
|
188
191
|
webmock (3.26.2) sha256=774556f2ea6371846cca68c01769b2eac0d134492d21f6d0ab5dd643965a4c90
|
|
189
192
|
whirly (0.4.0) sha256=3ffdf9097e711097442f6d83c91b8fc431d73224863f75b48f06fb850b3e596e
|
|
190
193
|
wisper (2.0.1) sha256=ce17bc5c3a166f241a2e6613848b025c8146fce2defba505920c1d1f3f88fae6
|
|
194
|
+
yard (0.9.45) sha256=52e211493f7cb8a3ebf7e104a25a1e73937a3103092545d34cb88fafebb3dc51
|
|
191
195
|
|
|
192
196
|
BUNDLED WITH
|
|
193
|
-
4.0.
|
|
197
|
+
4.0.17
|