We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rake ruby:example:build
1 parent 40fe9a0 commit 1c0c9c5Copy full SHA for 1c0c9c5
Rakefile
@@ -5,10 +5,12 @@ require "rubocop/rake_task"
5
RuboCop::RakeTask.new
6
7
namespace :ruby do
8
- desc "Build ruby/testdata/example/"
9
- task :build_example do
10
- Dir.chdir(File.join(__dir__, "ruby", "testdata", "example")) do
11
- sh "bundle exec rake all"
+ namespace :example do
+ desc "Build ruby/testdata/example/"
+ task :build do
+ Dir.chdir(File.join(__dir__, "ruby", "testdata", "example")) do
12
+ sh "bundle exec rake all"
13
+ end
14
end
15
16
@@ -28,7 +30,7 @@ namespace :ruby do
28
30
29
31
32
desc "Run all build tasks in ruby"
- task build_all: %i[build_example rbs]
33
+ task build_all: %w[example:build rbs]
34
35
36
# @return [Hash<String, String>]
0 commit comments