Skip to content

Commit

Permalink
対象バージョン変えた
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Y89 committed Oct 23, 2024
1 parent b0f9fc3 commit c809fb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ AllCops:
- 'template/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
TargetRubyVersion: 2.5
TargetRubyVersion: 3.2

Metrics/AbcSize:
Enabled: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def method_missing(verification, **args)
# Load page and define page verification method
def collect_verifications
module_service_name = @service.split('_').map(&:capitalize).join
Dir.glob("#{$bucky_home_dir}/services/#{@service}/#{@device}/verifications/*.rb").sort.each do |file|
Dir.glob("#{$bucky_home_dir}/services/#{@service}/#{@device}/verifications/*.rb").each do |file|
require file

page_name = file.split('/')[-1].sub('.rb', '')
Expand Down

0 comments on commit c809fb2

Please sign in to comment.