File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ require "rubocop/rake_task"
13
13
14
14
RuboCop ::RakeTask . new
15
15
16
- task default : %i[ test rubocop ]
16
+ task default : [ : test, : rubocop]
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
# Specify which files should be added to the gem when it is released.
22
22
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
23
spec . files = Dir . chdir ( __dir__ ) do
24
- ` git ls-files -z` . split ( "\x0 " ) . reject do |f |
24
+ %x( git ls-files -z) . split ( "\x0 " ) . reject do |f |
25
25
( f == __FILE__ ) || f . match ( %r{\A (?:(?:bin|test|spec|features)/|\. (?:git|circleci)|appveyor)} )
26
26
end
27
27
end
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- $LOAD_PATH. unshift File . expand_path ( "../lib" , __dir__ )
3
+ $LOAD_PATH. unshift ( File . expand_path ( "../lib" , __dir__ ) )
4
4
require "shopify_ruby_definitions"
5
5
6
6
require "minitest/autorun"
You can’t perform that action at this time.
0 commit comments