mj 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/lib/mj/alternative_file/resolvers/ruby/rails_controller_resolver.rb +33 -1
- data/lib/mj/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 683483a53bb0ecac42edc0a0f5f51e8cb14a2cd47af192caddfaf5b8317cdfd8
|
4
|
+
data.tar.gz: eff84fc6a46cb4a000340ba32cadd1ab9edf84bdbb3c8b2d0745fe935ed8c025
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4e1b4dd41ebec30aabbc7ed605a9b0b0407a2803305e41f52c07a3e326b4111b186d07de57aba6d15843aa211f6a4c630fd591dd015c1a1e8d2577aee0a7540
|
7
|
+
data.tar.gz: 93afecccc6e7ab89277acb49a444936bf37ffa2c54409556beeb107ac67f9d35c1e149ec6a0d026dbb4e844ce4278c69d21cb948ab565436118fae4b7305a4fd
|
data/Gemfile.lock
CHANGED
@@ -4,6 +4,7 @@ module Mj
|
|
4
4
|
module AlternativeFile
|
5
5
|
module Resolvers
|
6
6
|
module Ruby
|
7
|
+
# rubocop:disable Metrics/MethodLength
|
7
8
|
class RailsControllerResolver < Resolvers::Base
|
8
9
|
private
|
9
10
|
|
@@ -13,7 +14,11 @@ module Mj
|
|
13
14
|
"spec/integration",
|
14
15
|
"test/integration",
|
15
16
|
"test/controllers",
|
16
|
-
"spec/controllers"
|
17
|
+
"spec/controllers",
|
18
|
+
"spec/requests",
|
19
|
+
"test/requests",
|
20
|
+
"spec/system",
|
21
|
+
"test/system"
|
17
22
|
)
|
18
23
|
end
|
19
24
|
|
@@ -23,27 +28,53 @@ module Mj
|
|
23
28
|
add_controller_test(file, candidates, "test")
|
24
29
|
add_integration_test(file, candidates, "spec")
|
25
30
|
add_integration_test(file, candidates, "test")
|
31
|
+
add_request_test(file, candidates, "spec")
|
32
|
+
add_request_test(file, candidates, "test")
|
33
|
+
add_system_test(file, candidates, "spec")
|
34
|
+
add_system_test(file, candidates, "test")
|
26
35
|
return
|
27
36
|
end
|
28
37
|
|
29
38
|
resolve_controller(file, candidates)
|
30
39
|
end
|
40
|
+
# rubocop:enable Metrics/MethodLength
|
31
41
|
|
32
42
|
def add_integration_test(file, candidates, type)
|
33
43
|
path = file.without_prefix("app/controllers").without_suffix(".rb").trim_slashes
|
34
44
|
add_candidate("#{type}/integration/#{path}_#{type}.rb", "integration_#{type}", to: candidates)
|
35
45
|
end
|
36
46
|
|
47
|
+
def add_request_test(file, candidates, type)
|
48
|
+
path = file.without_prefix("app/controllers").sub("_controller", "").without_suffix(".rb").trim_slashes
|
49
|
+
add_candidate("#{type}/requests/#{path}_#{type}.rb", "request_#{type}", to: candidates)
|
50
|
+
end
|
51
|
+
|
52
|
+
def add_system_test(file, candidates, type)
|
53
|
+
path = file.without_prefix("app/controllers").sub("_controller", "").without_suffix(".rb").trim_slashes
|
54
|
+
add_candidate("#{type}/system/#{path}_#{type}.rb", "system_#{type}", to: candidates)
|
55
|
+
end
|
56
|
+
|
37
57
|
def add_controller_test(file, candidates, type)
|
38
58
|
path = file.without_prefix("app/controllers").without_suffix(".rb").trim_slashes
|
39
59
|
add_candidate("#{type}/controllers/#{path}_#{type}.rb", "controller_#{type}", to: candidates)
|
40
60
|
end
|
41
61
|
|
62
|
+
# rubocop:disable Metrics/MethodLength
|
42
63
|
def resolve_controller(file, candidates)
|
64
|
+
# requests|system tests don't usually have "request_{type}.rb" suffix
|
65
|
+
if file.start_with?(%r{(test|spec)/(system|request)})
|
66
|
+
file = file.sub("_spec.rb", "_controller_spec.rb")
|
67
|
+
.sub("_test.rb", "_controller_test.rb")
|
68
|
+
end
|
69
|
+
|
43
70
|
controller_path = file.sub("test/integration", "app/controllers")
|
44
71
|
.sub("spec/integration", "app/controllers")
|
45
72
|
.sub("spec/controllers", "app/controllers")
|
46
73
|
.sub("test/controllers", "app/controllers")
|
74
|
+
.sub("test/requests", "app/controllers")
|
75
|
+
.sub("test/system", "app/controllers")
|
76
|
+
.sub("spec/requests", "app/controllers")
|
77
|
+
.sub("spec/system", "app/controllers")
|
47
78
|
.sub("_spec.rb", ".rb")
|
48
79
|
.sub("_test.rb", ".rb")
|
49
80
|
.to_s
|
@@ -51,6 +82,7 @@ module Mj
|
|
51
82
|
add_candidate(controller_path, "controller", to: candidates)
|
52
83
|
end
|
53
84
|
end
|
85
|
+
# rubocop:enable Metrics/MethodLength
|
54
86
|
end
|
55
87
|
end
|
56
88
|
end
|
data/lib/mj/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcelo Jacobus
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: '0'
|
87
87
|
requirements: []
|
88
|
-
rubygems_version: 3.2.
|
88
|
+
rubygems_version: 3.2.33
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: My personal CLI
|