Skip to content

Commit e700793

Browse files
committed
[FIXUP][Rakefile] match method styles
In other words: "un-seattle.rb" the method declarations. Force of habit...
1 parent 0f7b2c7 commit e700793

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Rake::TestTask.new 'test' do |t|
3030
end
3131
task :test => :build
3232

33-
def build_ruby_docker_image ruby_version = "ruby-head"
33+
def build_ruby_docker_image(ruby_version="ruby-head")
3434
image = "stackprof-#{ruby_version}"
3535
sh_opts = []
3636
sh_opts = [{[:out, :err] => File::NULL}, {}] if @mute_build_output
@@ -39,7 +39,7 @@ def build_ruby_docker_image ruby_version = "ruby-head"
3939
sh "docker build -t #{image} --build-arg=RVM_RUBY_VERSION=#{ruby_version} .", *sh_opts
4040
end
4141

42-
def run_tests_in_docker ruby_version = "ruby-head"
42+
def run_tests_in_docker(ruby_version="ruby-head")
4343
sh "docker run --rm stackprof-#{ruby_version}"
4444
end
4545

0 commit comments

Comments
 (0)