mj 0.5.2 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68281e38b6bf810bb52d6c06082ceb22eceb434da732156830d1c437c477e1f8
4
- data.tar.gz: c6f3d7e407bfb9851c0cd956dd25d2e8d07b2ce366dfe41e81605affa3cfd21a
3
+ metadata.gz: 683483a53bb0ecac42edc0a0f5f51e8cb14a2cd47af192caddfaf5b8317cdfd8
4
+ data.tar.gz: eff84fc6a46cb4a000340ba32cadd1ab9edf84bdbb3c8b2d0745fe935ed8c025
5
5
  SHA512:
6
- metadata.gz: 3d9fad09f14ca8496a5392ba46ae2e1fdc46a1585717dae55704ae840f788ea530a8c1e0a8313a562de724ec05d41441dbb6d0012938824727fa0b4b0a7b14fe
7
- data.tar.gz: aac5ab59bd4fb6ffde7043091cd9c99955e6822364ac4f6e18efbde343dbd17fa464be7aec701f98fa9efd51c765b3727e5b6e3325501bcc75674ef66b16e46c
6
+ metadata.gz: c4e1b4dd41ebec30aabbc7ed605a9b0b0407a2803305e41f52c07a3e326b4111b186d07de57aba6d15843aa211f6a4c630fd591dd015c1a1e8d2577aee0a7540
7
+ data.tar.gz: 93afecccc6e7ab89277acb49a444936bf37ffa2c54409556beeb107ac67f9d35c1e149ec6a0d026dbb4e844ce4278c69d21cb948ab565436118fae4b7305a4fd
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mj (0.5.2)
4
+ mj (0.5.3)
5
5
  thor (~> 1.2.1)
6
6
 
7
7
  GEM
@@ -78,4 +78,4 @@ DEPENDENCIES
78
78
  simplecov-lcov
79
79
 
80
80
  BUNDLED WITH
81
- 2.3.6
81
+ 2.3.16
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mj
4
- VERSION = "0.5.2"
4
+ VERSION = "0.5.3"
5
5
  end
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.2
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-03-16 00:00:00.000000000 Z
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.22
88
+ rubygems_version: 3.2.33
89
89
  signing_key:
90
90
  specification_version: 4
91
91
  summary: My personal CLI