diff --git a/README.md b/README.md index 2e84103ac31b481c928b12ee2a4955728abb6b0b..dcdda2c31611b3cd001b01cd55d76b78ca9a57f2 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,17 @@ rake validators:schema # Check input data schema validity rake wiki:all # Launch all wiki generators -rake wiki:cpu_parameters # Generate the media parts for cpu_parameters +rake wiki:cpu_parameters # Generate the media parts for cpu_parameters page -rake wiki:oar_properties # Generate the media parts for oar_properties +rake wiki:oar_properties # Generate the media parts for oar_properties page + +rake wiki:disk_reservation # Generate the media parts for disk_reservation page + +rake wiki:hardware # Generate the media parts for hardware page + +rake wiki:site_hardware # Generate the media parts for site hardware pages + +rake wiki:site_network # Generate the media parts for site network pages ``` For more information about generators and validators, please see generators/README.md. diff --git a/Rakefile b/Rakefile index db8511f33949eb23897268b5ee8d5c633f080e5f..378dfbf7e10bfdc7c441902bebdda6fa6de4069a 100644 --- a/Rakefile +++ b/Rakefile @@ -45,7 +45,7 @@ end namespace :wiki do - all_wiki_tasks = [:cpu_parameters, :oar_properties] + all_wiki_tasks = [:cpu_parameters, :oar_properties, :disk_reservation, :hardware, :site_hardware, :site_network] all_wiki_tasks.each { |t| desc "Generate the media parts for #{t}"