Skip to content

Commit 2cd3c67

Browse files
fixes cops
1 parent 96b60a8 commit 2cd3c67

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.rubocop.yml

+11-13
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Style/CaseIndentation:
6969
Description: Indentation of when in a case/when/[else/]end.
7070
StyleGuide: https://github.com/bbatsov/ruby-style-guide#indent-when-to-case
7171
Enabled: true
72-
IndentWhenRelativeTo: case
72+
EnforcedStyle: case
7373
SupportedStyles:
7474
- case
7575
- end
@@ -374,9 +374,6 @@ Style/SpaceAroundBlockParameters:
374374
Description: Checks the spacing inside and after block parameters pipes.
375375
Enabled: true
376376
EnforcedStyleInsidePipes: no_space
377-
SupportedStyles:
378-
- space
379-
- no_space
380377
Style/SpaceAroundEqualsInParameterDefault:
381378
Description: Checks that the equals signs in parameter default assignments have
382379
or don't have surrounding space depending on configuration.
@@ -504,6 +501,7 @@ Metrics/LineLength:
504501
- http
505502
- https
506503
Exclude:
504+
- tmuxinator.gemspec
507505
- lib/tmuxinator/window.rb
508506
- spec/lib/tmuxinator/window_spec.rb
509507
Metrics/MethodLength:
@@ -525,10 +523,14 @@ Metrics/PerceivedComplexity:
525523
Max: 7
526524
Metrics/BlockLength:
527525
Exclude:
526+
- tmuxinator.gemspec
528527
- lib/tmuxinator/cli.rb
529528
- spec/factories/**/*.rb
530529
- spec/matchers/**/*.rb
531530
- spec/**/*_spec.rb
531+
Lint/InverseMethods:
532+
Exclude:
533+
- lib/tmuxinator/project.rb
532534
Lint/PercentStringArray:
533535
Exclude:
534536
- lib/tmuxinator/cli.rb
@@ -543,17 +545,11 @@ Lint/AssignmentInCondition:
543545
Lint/EndAlignment:
544546
Description: Align ends correctly.
545547
Enabled: true
546-
AlignWith: keyword
547-
SupportedStyles:
548-
- keyword
549-
- variable
548+
EnforcedStyleAlignWith: keyword
550549
Lint/DefEndAlignment:
551550
Description: Align ends corresponding to defs correctly.
552551
Enabled: true
553-
AlignWith: start_of_line
554-
SupportedStyles:
555-
- start_of_line
556-
- def
552+
EnforcedStyleAlignWith: start_of_line
557553
Style/InlineComment:
558554
Description: Avoid inline comments.
559555
Enabled: false
@@ -717,7 +713,7 @@ Style/LineEndConcatenation:
717713
Description: Use \ instead of + or << to concatenate two string literals at line
718714
end.
719715
Enabled: false
720-
Style/MethodCallParentheses:
716+
Style/MethodCallWithoutArgsParentheses:
721717
Description: Do not use parentheses for method calls with no arguments.
722718
StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-args-no-parens
723719
Enabled: true
@@ -876,6 +872,8 @@ Style/UnneededPercentQ:
876872
Description: Checks for %q/%Q when single quotes or double quotes would do.
877873
StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-q
878874
Enabled: true
875+
Exclude:
876+
- tmuxinator.gemspec
879877
# Style/UnneededPercentX:
880878
# Description: Checks for %x when `` would do.
881879
# StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-x

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ require "rspec/core/rake_task"
55
RuboCop::RakeTask.new
66
RSpec::Core::RakeTask.new
77

8-
task :test => ["spec", "rubocop"]
8+
task test: ["spec", "rubocop"]

lib/tmuxinator/project.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def self.load(path, options = {})
5454
@args = args
5555

5656
content = Erubis::Eruby.new(raw_content).result(binding)
57-
YAML.load(content)
57+
YAML.safe_load(content)
5858
rescue SyntaxError, StandardError => error
5959
raise "Failed to parse config file: #{error.message}"
6060
end
@@ -184,7 +184,7 @@ def tmux_has_session?(name)
184184
# Please see issue #564.
185185
unescaped_name = name.shellsplit.join("")
186186

187-
!!(sessions =~ /^#{unescaped_name}:/)
187+
!(sessions !~ /^#{unescaped_name}:/)
188188
end
189189

190190
def socket

spec/factories/projects.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
def yaml_load(file)
2-
YAML.load(File.read(File.expand_path(file)))
2+
YAML.safe_load(File.read(File.expand_path(file)))
33
end
4+
45
FactoryGirl.define do
56
factory :project, class: Tmuxinator::Project do
67
transient do

tmuxinator.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# coding: utf-8
2+
23
lib = File.expand_path("../lib", __FILE__)
34
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
45
require "tmuxinator/version"

0 commit comments

Comments
 (0)