Skip to content

Commit 2b70a2f

Browse files
rubocop
1 parent 34824fb commit 2b70a2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

2024/ruby/Guardfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
# * zeus: 'zeus rspec' (requires the server to be started separately)
2727
# * 'just' rspec: 'rspec'
2828

29-
guard :rspec, cmd: 'bundle exec rspec' do
30-
require 'guard/rspec/dsl'
29+
guard :rspec, cmd: "bundle exec rspec" do
30+
require "guard/rspec/dsl"
3131
dsl = Guard::RSpec::Dsl.new(self)
3232

3333
# Feel free to open issues for suggestions and improvements
@@ -67,6 +67,6 @@ guard :rspec, cmd: 'bundle exec rspec' do
6767
# Turnip features and steps
6868
watch(%r{^spec/acceptance/(.+)\.feature$})
6969
watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
70-
Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance'
70+
Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
7171
end
7272
end

0 commit comments

Comments
 (0)