mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
11 lines
No EOL
281 B
Ruby
11 lines
No EOL
281 B
Ruby
desc 'Build documentation site locally'
|
|
task :serve do
|
|
Dir.chdir('docs') do
|
|
# Only run bundle install if Gemfile.lock doesn't exist
|
|
sh 'bundle install' unless File.exist?('Gemfile.lock')
|
|
sh 'bundle exec jekyll serve'
|
|
end
|
|
end
|
|
|
|
# Set default task
|
|
task default: :serve |