kokishin 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.ci/Gemfile.rails_4.0.0 +19 -0
- data/.ci/Gemfile.rails_4.0.0.lock +90 -0
- data/.ci/Gemfile.rails_4.1.0 +18 -0
- data/.ci/Gemfile.rails_4.1.0.lock +93 -0
- data/.ci/Gemfile.rails_4.2.0 +19 -0
- data/.ci/Gemfile.rails_4.2.0.lock +97 -0
- data/.ci/Gemfile.rails_5.0.0 +19 -0
- data/.ci/Gemfile.rails_5.0.0.lock +95 -0
- data/.ci/Gemfile.rails_5.1.0 +19 -0
- data/.ci/Gemfile.rails_5.1.0.lock +97 -0
- data/.ci/Gemfile.rails_5.2.0 +19 -0
- data/.ci/Gemfile.rails_5.2.0.lock +97 -0
- data/.ci/Gemfile.rails_6.0.0 +19 -0
- data/.ci/Gemfile.rails_6.0.0.lock +97 -0
- data/.ci/Gemfile.rails_6.1.0 +19 -0
- data/.ci/Gemfile.rails_6.1.0.lock +96 -0
- data/.ci/Gemfile.rails_7.0.0 +19 -0
- data/.ci/Gemfile.rails_7.0.0.lock +110 -0
- data/.gitignore +9 -0
- data/.gitlab-ci.yml +79 -0
- data/.rspec +1 -0
- data/.rubocop.yml +27 -0
- data/.rubocop_todo.yml +24 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +110 -0
- data/LICENSE.txt +21 -0
- data/README.md +14 -0
- data/Rakefile +8 -0
- data/bin/console +8 -0
- data/bin/setup +8 -0
- data/kokishin.gemspec +32 -0
- data/lib/kokishin/extensions/hash_diff.rb +21 -0
- data/lib/kokishin/matchers/association_matcher.rb +160 -0
- data/lib/kokishin/matchers/method_matcher.rb +53 -0
- data/lib/kokishin/matchers/validate_matcher.rb +90 -0
- data/lib/kokishin/should.rb +24 -0
- data/lib/kokishin/version.rb +7 -0
- data/lib/kokishin.rb +6 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ec554e705c51f383230d9575d48373df314b75c36449094d2829061a7799e8ff
|
4
|
+
data.tar.gz: 89db8af87982811462eed699c5a3a974cd675605356604daadfd8e2705bd3013
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 179a83291d15a2393e9f16e586538a06db13fba630bf2aea184675e923d1ddb6667e382e20f7ad95246ed55651fcf8edbbd7d0d0386c05b4d6a0985a1557cd71
|
7
|
+
data.tar.gz: a82acca3f8f6372a53ddabefdaedd75f59328a9be1603e0fd3191a3ee4d02251c58eea813fcc1ada86073825b38dc2a1f018c25a83ae79dbcf793571d0aea1f4
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in kokishin.gemspec
|
6
|
+
gemspec path: '..'
|
7
|
+
|
8
|
+
gem 'pry'
|
9
|
+
gem 'rake', '~> 13.0'
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
|
+
gem 'yoshiki'
|
12
|
+
|
13
|
+
group :test do
|
14
|
+
rails_version = ENV.fetch 'RAILS_VERSION'
|
15
|
+
|
16
|
+
gem 'activemodel', "~> #{rails_version}"
|
17
|
+
gem 'activerecord', "~> #{rails_version}"
|
18
|
+
gem 'sqlite3', '~> 1.3.6'
|
19
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
kokishin (0.1.0)
|
5
|
+
rspec-expectations
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activemodel (4.0.13)
|
11
|
+
activesupport (= 4.0.13)
|
12
|
+
builder (~> 3.1.0)
|
13
|
+
activerecord (4.0.13)
|
14
|
+
activemodel (= 4.0.13)
|
15
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
16
|
+
activesupport (= 4.0.13)
|
17
|
+
arel (~> 4.0.0)
|
18
|
+
activerecord-deprecated_finders (1.0.4)
|
19
|
+
activesupport (4.0.13)
|
20
|
+
i18n (~> 0.6, >= 0.6.9)
|
21
|
+
minitest (~> 4.2)
|
22
|
+
multi_json (~> 1.3)
|
23
|
+
thread_safe (~> 0.1)
|
24
|
+
tzinfo (~> 0.3.37)
|
25
|
+
arel (4.0.2)
|
26
|
+
ast (2.4.2)
|
27
|
+
builder (3.1.4)
|
28
|
+
coderay (1.1.3)
|
29
|
+
concurrent-ruby (1.2.2)
|
30
|
+
diff-lcs (1.5.0)
|
31
|
+
i18n (0.9.5)
|
32
|
+
concurrent-ruby (~> 1.0)
|
33
|
+
method_source (1.0.0)
|
34
|
+
minitest (4.7.5)
|
35
|
+
multi_json (1.15.0)
|
36
|
+
parser (2.7.2.0)
|
37
|
+
ast (~> 2.4.1)
|
38
|
+
powerpack (0.1.3)
|
39
|
+
pry (0.14.2)
|
40
|
+
coderay (~> 1.1)
|
41
|
+
method_source (~> 1.0)
|
42
|
+
rainbow (2.2.2)
|
43
|
+
rake
|
44
|
+
rake (13.0.6)
|
45
|
+
rspec (3.12.0)
|
46
|
+
rspec-core (~> 3.12.0)
|
47
|
+
rspec-expectations (~> 3.12.0)
|
48
|
+
rspec-mocks (~> 3.12.0)
|
49
|
+
rspec-core (3.12.2)
|
50
|
+
rspec-support (~> 3.12.0)
|
51
|
+
rspec-expectations (3.12.3)
|
52
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
53
|
+
rspec-support (~> 3.12.0)
|
54
|
+
rspec-mocks (3.12.6)
|
55
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
56
|
+
rspec-support (~> 3.12.0)
|
57
|
+
rspec-support (3.12.1)
|
58
|
+
rubocop (0.46.0)
|
59
|
+
parser (>= 2.3.1.1, < 3.0)
|
60
|
+
powerpack (~> 0.1)
|
61
|
+
rainbow (>= 1.99.1, < 3.0)
|
62
|
+
ruby-progressbar (~> 1.7)
|
63
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
64
|
+
rubocop-rspec (1.8.0)
|
65
|
+
rubocop (>= 0.42.0)
|
66
|
+
ruby-progressbar (1.13.0)
|
67
|
+
sqlite3 (1.3.13)
|
68
|
+
thread_safe (0.3.6)
|
69
|
+
tzinfo (0.3.62)
|
70
|
+
unicode-display_width (1.8.0)
|
71
|
+
yoshiki (2.1.0)
|
72
|
+
rubocop (~> 0.46.0)
|
73
|
+
rubocop-rspec (~> 1.8.0)
|
74
|
+
|
75
|
+
PLATFORMS
|
76
|
+
aarch64-linux
|
77
|
+
arm64-darwin-23
|
78
|
+
|
79
|
+
DEPENDENCIES
|
80
|
+
activemodel (~> 4.0.0)
|
81
|
+
activerecord (~> 4.0.0)
|
82
|
+
kokishin!
|
83
|
+
pry
|
84
|
+
rake (~> 13.0)
|
85
|
+
rspec (~> 3.0)
|
86
|
+
sqlite3 (~> 1.3.6)
|
87
|
+
yoshiki
|
88
|
+
|
89
|
+
BUNDLED WITH
|
90
|
+
2.3.26
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in kokishin.gemspec
|
6
|
+
gemspec path: '..'
|
7
|
+
|
8
|
+
gem 'pry'
|
9
|
+
gem 'rake', '~> 13.0'
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
|
+
gem 'yoshiki'
|
12
|
+
|
13
|
+
group :test do
|
14
|
+
rails_version = ENV.fetch 'RAILS_VERSION'
|
15
|
+
gem 'activemodel', "~> #{rails_version}"
|
16
|
+
gem 'activerecord', "~> #{rails_version}"
|
17
|
+
gem 'sqlite3', '~> 1.3.6'
|
18
|
+
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
kokishin (0.1.0)
|
5
|
+
rspec-expectations
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activemodel (4.1.16)
|
11
|
+
activesupport (= 4.1.16)
|
12
|
+
builder (~> 3.1)
|
13
|
+
activerecord (4.1.16)
|
14
|
+
activemodel (= 4.1.16)
|
15
|
+
activesupport (= 4.1.16)
|
16
|
+
arel (~> 5.0.0)
|
17
|
+
activesupport (4.1.16)
|
18
|
+
i18n (~> 0.6, >= 0.6.9)
|
19
|
+
json (~> 1.7, >= 1.7.7)
|
20
|
+
minitest (~> 5.1)
|
21
|
+
thread_safe (~> 0.1)
|
22
|
+
tzinfo (~> 1.1)
|
23
|
+
arel (5.0.1.20140414130214)
|
24
|
+
ast (2.4.2)
|
25
|
+
builder (3.2.4)
|
26
|
+
coderay (1.1.3)
|
27
|
+
concurrent-ruby (1.2.2)
|
28
|
+
diff-lcs (1.5.0)
|
29
|
+
i18n (0.9.5)
|
30
|
+
concurrent-ruby (~> 1.0)
|
31
|
+
jaro_winkler (1.5.6)
|
32
|
+
json (1.8.6)
|
33
|
+
method_source (1.0.0)
|
34
|
+
minitest (5.20.0)
|
35
|
+
parallel (1.23.0)
|
36
|
+
parser (3.2.2.4)
|
37
|
+
ast (~> 2.4.1)
|
38
|
+
racc
|
39
|
+
powerpack (0.1.3)
|
40
|
+
pry (0.14.2)
|
41
|
+
coderay (~> 1.1)
|
42
|
+
method_source (~> 1.0)
|
43
|
+
racc (1.7.1)
|
44
|
+
rainbow (3.1.1)
|
45
|
+
rake (13.0.6)
|
46
|
+
rspec (3.12.0)
|
47
|
+
rspec-core (~> 3.12.0)
|
48
|
+
rspec-expectations (~> 3.12.0)
|
49
|
+
rspec-mocks (~> 3.12.0)
|
50
|
+
rspec-core (3.12.2)
|
51
|
+
rspec-support (~> 3.12.0)
|
52
|
+
rspec-expectations (3.12.3)
|
53
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
+
rspec-support (~> 3.12.0)
|
55
|
+
rspec-mocks (3.12.6)
|
56
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
57
|
+
rspec-support (~> 3.12.0)
|
58
|
+
rspec-support (3.12.1)
|
59
|
+
rubocop (0.61.1)
|
60
|
+
jaro_winkler (~> 1.5.1)
|
61
|
+
parallel (~> 1.10)
|
62
|
+
parser (>= 2.5, != 2.5.1.1)
|
63
|
+
powerpack (~> 0.1)
|
64
|
+
rainbow (>= 2.2.2, < 4.0)
|
65
|
+
ruby-progressbar (~> 1.7)
|
66
|
+
unicode-display_width (~> 1.4.0)
|
67
|
+
rubocop-rspec (1.30.1)
|
68
|
+
rubocop (>= 0.60.0)
|
69
|
+
ruby-progressbar (1.13.0)
|
70
|
+
sqlite3 (1.3.13)
|
71
|
+
thread_safe (0.3.6)
|
72
|
+
tzinfo (1.2.11)
|
73
|
+
thread_safe (~> 0.1)
|
74
|
+
unicode-display_width (1.4.1)
|
75
|
+
yoshiki (6.0.1)
|
76
|
+
rubocop (~> 0.61.0)
|
77
|
+
rubocop-rspec (~> 1.30.0)
|
78
|
+
|
79
|
+
PLATFORMS
|
80
|
+
aarch64-linux-musl
|
81
|
+
|
82
|
+
DEPENDENCIES
|
83
|
+
activemodel (~> 4.1.0)
|
84
|
+
activerecord (~> 4.1.0)
|
85
|
+
kokishin!
|
86
|
+
pry
|
87
|
+
rake (~> 13.0)
|
88
|
+
rspec (~> 3.0)
|
89
|
+
sqlite3 (~> 1.3.6)
|
90
|
+
yoshiki
|
91
|
+
|
92
|
+
BUNDLED WITH
|
93
|
+
2.4.20
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in kokishin.gemspec
|
6
|
+
gemspec path: '..'
|
7
|
+
|
8
|
+
gem 'pry'
|
9
|
+
gem 'rake', '~> 13.0'
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
|
+
gem 'yoshiki'
|
12
|
+
|
13
|
+
group :test do
|
14
|
+
rails_version = ENV.fetch 'RAILS_VERSION'
|
15
|
+
|
16
|
+
gem 'activemodel', "~> #{rails_version}"
|
17
|
+
gem 'activerecord', "~> #{rails_version}"
|
18
|
+
gem 'sqlite3', '~> 1.3.6'
|
19
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
kokishin (0.1.0)
|
5
|
+
rspec-expectations
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activemodel (4.2.11.3)
|
11
|
+
activesupport (= 4.2.11.3)
|
12
|
+
builder (~> 3.1)
|
13
|
+
activerecord (4.2.11.3)
|
14
|
+
activemodel (= 4.2.11.3)
|
15
|
+
activesupport (= 4.2.11.3)
|
16
|
+
arel (~> 6.0)
|
17
|
+
activesupport (4.2.11.3)
|
18
|
+
i18n (~> 0.7)
|
19
|
+
minitest (~> 5.1)
|
20
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
21
|
+
tzinfo (~> 1.1)
|
22
|
+
arel (6.0.4)
|
23
|
+
ast (2.4.2)
|
24
|
+
builder (3.2.4)
|
25
|
+
coderay (1.1.3)
|
26
|
+
concurrent-ruby (1.2.2)
|
27
|
+
diff-lcs (1.5.0)
|
28
|
+
i18n (0.9.5)
|
29
|
+
concurrent-ruby (~> 1.0)
|
30
|
+
json (2.6.3)
|
31
|
+
method_source (1.0.0)
|
32
|
+
minitest (5.20.0)
|
33
|
+
parallel (1.23.0)
|
34
|
+
parser (3.2.2.4)
|
35
|
+
ast (~> 2.4.1)
|
36
|
+
racc
|
37
|
+
pry (0.14.2)
|
38
|
+
coderay (~> 1.1)
|
39
|
+
method_source (~> 1.0)
|
40
|
+
racc (1.7.1)
|
41
|
+
rainbow (3.1.1)
|
42
|
+
rake (13.0.6)
|
43
|
+
regexp_parser (2.8.2)
|
44
|
+
rexml (3.2.6)
|
45
|
+
rspec (3.12.0)
|
46
|
+
rspec-core (~> 3.12.0)
|
47
|
+
rspec-expectations (~> 3.12.0)
|
48
|
+
rspec-mocks (~> 3.12.0)
|
49
|
+
rspec-core (3.12.2)
|
50
|
+
rspec-support (~> 3.12.0)
|
51
|
+
rspec-expectations (3.12.3)
|
52
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
53
|
+
rspec-support (~> 3.12.0)
|
54
|
+
rspec-mocks (3.12.6)
|
55
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
56
|
+
rspec-support (~> 3.12.0)
|
57
|
+
rspec-support (3.12.1)
|
58
|
+
rubocop (1.50.2)
|
59
|
+
json (~> 2.3)
|
60
|
+
parallel (~> 1.10)
|
61
|
+
parser (>= 3.2.0.0)
|
62
|
+
rainbow (>= 2.2.2, < 4.0)
|
63
|
+
regexp_parser (>= 1.8, < 3.0)
|
64
|
+
rexml (>= 3.2.5, < 4.0)
|
65
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
66
|
+
ruby-progressbar (~> 1.7)
|
67
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
68
|
+
rubocop-ast (1.29.0)
|
69
|
+
parser (>= 3.2.1.0)
|
70
|
+
rubocop-rspec (2.17.1)
|
71
|
+
rubocop (~> 1.33)
|
72
|
+
ruby-progressbar (1.13.0)
|
73
|
+
sqlite3 (1.3.13)
|
74
|
+
thread_safe (0.3.6)
|
75
|
+
tzinfo (1.2.11)
|
76
|
+
thread_safe (~> 0.1)
|
77
|
+
unicode-display_width (2.5.0)
|
78
|
+
yoshiki (7.0.0.pre.alpha.1)
|
79
|
+
rubocop (> 0.61.0)
|
80
|
+
rubocop-rspec (> 1.30.0)
|
81
|
+
|
82
|
+
PLATFORMS
|
83
|
+
aarch64-linux-musl
|
84
|
+
arm64-darwin-23
|
85
|
+
|
86
|
+
DEPENDENCIES
|
87
|
+
activemodel (~> 4.2.0)
|
88
|
+
activerecord (~> 4.2.0)
|
89
|
+
kokishin!
|
90
|
+
pry
|
91
|
+
rake (~> 13.0)
|
92
|
+
rspec (~> 3.0)
|
93
|
+
sqlite3 (~> 1.3.6)
|
94
|
+
yoshiki
|
95
|
+
|
96
|
+
BUNDLED WITH
|
97
|
+
2.4.19
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in kokishin.gemspec
|
6
|
+
gemspec path: '..'
|
7
|
+
|
8
|
+
gem 'pry'
|
9
|
+
gem 'rake', '~> 13.0'
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
|
+
gem 'yoshiki'
|
12
|
+
|
13
|
+
group :test do
|
14
|
+
rails_version = ENV.fetch 'RAILS_VERSION'
|
15
|
+
|
16
|
+
gem 'activemodel', "~> #{rails_version}"
|
17
|
+
gem 'activerecord', "~> #{rails_version}"
|
18
|
+
gem 'sqlite3', '~> 1.3.6'
|
19
|
+
end
|
@@ -0,0 +1,95 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
kokishin (0.1.0)
|
5
|
+
rspec-expectations
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activemodel (5.0.7.2)
|
11
|
+
activesupport (= 5.0.7.2)
|
12
|
+
activerecord (5.0.7.2)
|
13
|
+
activemodel (= 5.0.7.2)
|
14
|
+
activesupport (= 5.0.7.2)
|
15
|
+
arel (~> 7.0)
|
16
|
+
activesupport (5.0.7.2)
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
+
i18n (>= 0.7, < 2)
|
19
|
+
minitest (~> 5.1)
|
20
|
+
tzinfo (~> 1.1)
|
21
|
+
arel (7.1.4)
|
22
|
+
ast (2.4.2)
|
23
|
+
coderay (1.1.3)
|
24
|
+
concurrent-ruby (1.2.2)
|
25
|
+
diff-lcs (1.5.0)
|
26
|
+
i18n (1.14.1)
|
27
|
+
concurrent-ruby (~> 1.0)
|
28
|
+
json (2.6.3)
|
29
|
+
method_source (1.0.0)
|
30
|
+
minitest (5.20.0)
|
31
|
+
parallel (1.23.0)
|
32
|
+
parser (3.2.2.4)
|
33
|
+
ast (~> 2.4.1)
|
34
|
+
racc
|
35
|
+
pry (0.14.2)
|
36
|
+
coderay (~> 1.1)
|
37
|
+
method_source (~> 1.0)
|
38
|
+
racc (1.7.1)
|
39
|
+
rainbow (3.1.1)
|
40
|
+
rake (13.0.6)
|
41
|
+
regexp_parser (2.8.2)
|
42
|
+
rexml (3.2.6)
|
43
|
+
rspec (3.12.0)
|
44
|
+
rspec-core (~> 3.12.0)
|
45
|
+
rspec-expectations (~> 3.12.0)
|
46
|
+
rspec-mocks (~> 3.12.0)
|
47
|
+
rspec-core (3.12.2)
|
48
|
+
rspec-support (~> 3.12.0)
|
49
|
+
rspec-expectations (3.12.3)
|
50
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
+
rspec-support (~> 3.12.0)
|
52
|
+
rspec-mocks (3.12.6)
|
53
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
+
rspec-support (~> 3.12.0)
|
55
|
+
rspec-support (3.12.1)
|
56
|
+
rubocop (1.50.2)
|
57
|
+
json (~> 2.3)
|
58
|
+
parallel (~> 1.10)
|
59
|
+
parser (>= 3.2.0.0)
|
60
|
+
rainbow (>= 2.2.2, < 4.0)
|
61
|
+
regexp_parser (>= 1.8, < 3.0)
|
62
|
+
rexml (>= 3.2.5, < 4.0)
|
63
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
64
|
+
ruby-progressbar (~> 1.7)
|
65
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
66
|
+
rubocop-ast (1.29.0)
|
67
|
+
parser (>= 3.2.1.0)
|
68
|
+
rubocop-rspec (2.17.1)
|
69
|
+
rubocop (~> 1.33)
|
70
|
+
ruby-progressbar (1.13.0)
|
71
|
+
sqlite3 (1.3.13)
|
72
|
+
thread_safe (0.3.6)
|
73
|
+
tzinfo (1.2.11)
|
74
|
+
thread_safe (~> 0.1)
|
75
|
+
unicode-display_width (2.5.0)
|
76
|
+
yoshiki (7.0.0.pre.alpha.1)
|
77
|
+
rubocop (> 0.61.0)
|
78
|
+
rubocop-rspec (> 1.30.0)
|
79
|
+
|
80
|
+
PLATFORMS
|
81
|
+
aarch64-linux-musl
|
82
|
+
arm64-darwin-23
|
83
|
+
|
84
|
+
DEPENDENCIES
|
85
|
+
activemodel (~> 5.0.0)
|
86
|
+
activerecord (~> 5.0.0)
|
87
|
+
kokishin!
|
88
|
+
pry
|
89
|
+
rake (~> 13.0)
|
90
|
+
rspec (~> 3.0)
|
91
|
+
sqlite3 (~> 1.3.6)
|
92
|
+
yoshiki
|
93
|
+
|
94
|
+
BUNDLED WITH
|
95
|
+
2.4.19
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in kokishin.gemspec
|
6
|
+
gemspec path: '..'
|
7
|
+
|
8
|
+
gem 'pry'
|
9
|
+
gem 'rake', '~> 13.0'
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
|
+
gem 'yoshiki'
|
12
|
+
|
13
|
+
group :test do
|
14
|
+
rails_version = ENV.fetch 'RAILS_VERSION'
|
15
|
+
|
16
|
+
gem 'activemodel', "~> #{rails_version}"
|
17
|
+
gem 'activerecord', "~> #{rails_version}"
|
18
|
+
gem 'sqlite3'
|
19
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
kokishin (0.1.0)
|
5
|
+
rspec-expectations
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activemodel (5.1.7)
|
11
|
+
activesupport (= 5.1.7)
|
12
|
+
activerecord (5.1.7)
|
13
|
+
activemodel (= 5.1.7)
|
14
|
+
activesupport (= 5.1.7)
|
15
|
+
arel (~> 8.0)
|
16
|
+
activesupport (5.1.7)
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
+
i18n (>= 0.7, < 2)
|
19
|
+
minitest (~> 5.1)
|
20
|
+
tzinfo (~> 1.1)
|
21
|
+
arel (8.0.0)
|
22
|
+
ast (2.4.2)
|
23
|
+
coderay (1.1.3)
|
24
|
+
concurrent-ruby (1.2.2)
|
25
|
+
diff-lcs (1.5.0)
|
26
|
+
i18n (1.14.1)
|
27
|
+
concurrent-ruby (~> 1.0)
|
28
|
+
json (2.6.3)
|
29
|
+
method_source (1.0.0)
|
30
|
+
mini_portile2 (2.8.4)
|
31
|
+
minitest (5.20.0)
|
32
|
+
parallel (1.23.0)
|
33
|
+
parser (3.2.2.4)
|
34
|
+
ast (~> 2.4.1)
|
35
|
+
racc
|
36
|
+
pry (0.14.2)
|
37
|
+
coderay (~> 1.1)
|
38
|
+
method_source (~> 1.0)
|
39
|
+
racc (1.7.1)
|
40
|
+
rainbow (3.1.1)
|
41
|
+
rake (13.0.6)
|
42
|
+
regexp_parser (2.8.2)
|
43
|
+
rexml (3.2.6)
|
44
|
+
rspec (3.12.0)
|
45
|
+
rspec-core (~> 3.12.0)
|
46
|
+
rspec-expectations (~> 3.12.0)
|
47
|
+
rspec-mocks (~> 3.12.0)
|
48
|
+
rspec-core (3.12.2)
|
49
|
+
rspec-support (~> 3.12.0)
|
50
|
+
rspec-expectations (3.12.3)
|
51
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
+
rspec-support (~> 3.12.0)
|
53
|
+
rspec-mocks (3.12.6)
|
54
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
+
rspec-support (~> 3.12.0)
|
56
|
+
rspec-support (3.12.1)
|
57
|
+
rubocop (1.50.2)
|
58
|
+
json (~> 2.3)
|
59
|
+
parallel (~> 1.10)
|
60
|
+
parser (>= 3.2.0.0)
|
61
|
+
rainbow (>= 2.2.2, < 4.0)
|
62
|
+
regexp_parser (>= 1.8, < 3.0)
|
63
|
+
rexml (>= 3.2.5, < 4.0)
|
64
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
65
|
+
ruby-progressbar (~> 1.7)
|
66
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
67
|
+
rubocop-ast (1.29.0)
|
68
|
+
parser (>= 3.2.1.0)
|
69
|
+
rubocop-rspec (2.17.1)
|
70
|
+
rubocop (~> 1.33)
|
71
|
+
ruby-progressbar (1.13.0)
|
72
|
+
sqlite3 (1.6.7)
|
73
|
+
mini_portile2 (~> 2.8.0)
|
74
|
+
thread_safe (0.3.6)
|
75
|
+
tzinfo (1.2.11)
|
76
|
+
thread_safe (~> 0.1)
|
77
|
+
unicode-display_width (2.5.0)
|
78
|
+
yoshiki (7.0.0.pre.alpha.1)
|
79
|
+
rubocop (> 0.61.0)
|
80
|
+
rubocop-rspec (> 1.30.0)
|
81
|
+
|
82
|
+
PLATFORMS
|
83
|
+
aarch64-linux-musl
|
84
|
+
arm64-darwin-23
|
85
|
+
|
86
|
+
DEPENDENCIES
|
87
|
+
activemodel (~> 5.1.0)
|
88
|
+
activerecord (~> 5.1.0)
|
89
|
+
kokishin!
|
90
|
+
pry
|
91
|
+
rake (~> 13.0)
|
92
|
+
rspec (~> 3.0)
|
93
|
+
sqlite3
|
94
|
+
yoshiki
|
95
|
+
|
96
|
+
BUNDLED WITH
|
97
|
+
2.4.19
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in kokishin.gemspec
|
6
|
+
gemspec path: '..'
|
7
|
+
|
8
|
+
gem 'pry'
|
9
|
+
gem 'rake', '~> 13.0'
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
|
+
gem 'yoshiki'
|
12
|
+
|
13
|
+
group :test do
|
14
|
+
rails_version = ENV.fetch 'RAILS_VERSION'
|
15
|
+
|
16
|
+
gem 'activemodel', "~> #{rails_version}"
|
17
|
+
gem 'activerecord', "~> #{rails_version}"
|
18
|
+
gem 'sqlite3'
|
19
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
kokishin (0.1.0)
|
5
|
+
rspec-expectations
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activemodel (5.2.8.1)
|
11
|
+
activesupport (= 5.2.8.1)
|
12
|
+
activerecord (5.2.8.1)
|
13
|
+
activemodel (= 5.2.8.1)
|
14
|
+
activesupport (= 5.2.8.1)
|
15
|
+
arel (>= 9.0)
|
16
|
+
activesupport (5.2.8.1)
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
+
i18n (>= 0.7, < 2)
|
19
|
+
minitest (~> 5.1)
|
20
|
+
tzinfo (~> 1.1)
|
21
|
+
arel (9.0.0)
|
22
|
+
ast (2.4.2)
|
23
|
+
coderay (1.1.3)
|
24
|
+
concurrent-ruby (1.2.2)
|
25
|
+
diff-lcs (1.5.0)
|
26
|
+
i18n (1.14.1)
|
27
|
+
concurrent-ruby (~> 1.0)
|
28
|
+
json (2.6.3)
|
29
|
+
method_source (1.0.0)
|
30
|
+
mini_portile2 (2.8.4)
|
31
|
+
minitest (5.20.0)
|
32
|
+
parallel (1.23.0)
|
33
|
+
parser (3.2.2.4)
|
34
|
+
ast (~> 2.4.1)
|
35
|
+
racc
|
36
|
+
pry (0.14.2)
|
37
|
+
coderay (~> 1.1)
|
38
|
+
method_source (~> 1.0)
|
39
|
+
racc (1.7.1)
|
40
|
+
rainbow (3.1.1)
|
41
|
+
rake (13.0.6)
|
42
|
+
regexp_parser (2.8.2)
|
43
|
+
rexml (3.2.6)
|
44
|
+
rspec (3.12.0)
|
45
|
+
rspec-core (~> 3.12.0)
|
46
|
+
rspec-expectations (~> 3.12.0)
|
47
|
+
rspec-mocks (~> 3.12.0)
|
48
|
+
rspec-core (3.12.2)
|
49
|
+
rspec-support (~> 3.12.0)
|
50
|
+
rspec-expectations (3.12.3)
|
51
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
+
rspec-support (~> 3.12.0)
|
53
|
+
rspec-mocks (3.12.6)
|
54
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
+
rspec-support (~> 3.12.0)
|
56
|
+
rspec-support (3.12.1)
|
57
|
+
rubocop (1.50.2)
|
58
|
+
json (~> 2.3)
|
59
|
+
parallel (~> 1.10)
|
60
|
+
parser (>= 3.2.0.0)
|
61
|
+
rainbow (>= 2.2.2, < 4.0)
|
62
|
+
regexp_parser (>= 1.8, < 3.0)
|
63
|
+
rexml (>= 3.2.5, < 4.0)
|
64
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
65
|
+
ruby-progressbar (~> 1.7)
|
66
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
67
|
+
rubocop-ast (1.29.0)
|
68
|
+
parser (>= 3.2.1.0)
|
69
|
+
rubocop-rspec (2.17.1)
|
70
|
+
rubocop (~> 1.33)
|
71
|
+
ruby-progressbar (1.13.0)
|
72
|
+
sqlite3 (1.6.7)
|
73
|
+
mini_portile2 (~> 2.8.0)
|
74
|
+
thread_safe (0.3.6)
|
75
|
+
tzinfo (1.2.11)
|
76
|
+
thread_safe (~> 0.1)
|
77
|
+
unicode-display_width (2.5.0)
|
78
|
+
yoshiki (7.0.0.pre.alpha.1)
|
79
|
+
rubocop (> 0.61.0)
|
80
|
+
rubocop-rspec (> 1.30.0)
|
81
|
+
|
82
|
+
PLATFORMS
|
83
|
+
aarch64-linux-musl
|
84
|
+
arm64-darwin-23
|
85
|
+
|
86
|
+
DEPENDENCIES
|
87
|
+
activemodel (~> 5.2.0)
|
88
|
+
activerecord (~> 5.2.0)
|
89
|
+
kokishin!
|
90
|
+
pry
|
91
|
+
rake (~> 13.0)
|
92
|
+
rspec (~> 3.0)
|
93
|
+
sqlite3
|
94
|
+
yoshiki
|
95
|
+
|
96
|
+
BUNDLED WITH
|
97
|
+
2.4.19
|