diff --git a/Rakefile b/Rakefile index b4962477..e245dae7 100644 --- a/Rakefile +++ b/Rakefile @@ -2,11 +2,11 @@ task default: 'test' # These tasks are executed in GitHub Actions desc 'Get CoderDojo data on the Earth via Raspberry Pi Clubs API' -task(:get_data_from_earth) { ruby 'get_data_from_earth.rb' } -task(:get_data_from_japan) { ruby 'get_data_from_japan.rb' } -task(:cache_dojo_logos) { ruby 'cache_dojo_logos.rb' } -task(:upsert_dojos_geojson) { ruby 'upsert_dojos_geojson.rb' } -task(:compact_geojson) { ruby 'compact_geojson.rb' } +task(:get_data_from_earth) { ruby '_tasks/get_data_from_earth.rb' } +task(:get_data_from_japan) { ruby '_tasks/get_data_from_japan.rb' } +task(:cache_dojo_logos) { ruby '_tasks/cache_dojo_logos.rb' } +task(:upsert_dojos_geojson) { ruby '_tasks/upsert_dojos_geojson.rb' } +task(:compact_geojson) { ruby '_tasks/compact_geojson.rb' } # GitHub - gjtorikian/html-proofer # https://github.com/gjtorikian/html-proofer diff --git a/api_diff_sample.txt b/_archived/api_diff_sample.txt similarity index 100% rename from api_diff_sample.txt rename to _archived/api_diff_sample.txt diff --git a/archived/get_data_from_zen.rb b/_archived/get_data_from_zen.rb similarity index 100% rename from archived/get_data_from_zen.rb rename to _archived/get_data_from_zen.rb diff --git a/_config.yml b/_config.yml index 818cf94a..ba028d40 100644 --- a/_config.yml +++ b/_config.yml @@ -11,10 +11,6 @@ exclude: - LICENSE.md - CODE_OF_CONDUCT.md - dojo2dojo.csv - - get_data_from_earth.rb - - get_data_from_japan.rb - - upsert_dojos_geojson.rb - - compact_geojson.rb # See the official README for more options: # https://github.com/digitalsparky/jekyll-minifier diff --git a/_tasks/.gitkeep b/_tasks/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/cache_dojo_logos.rb b/_tasks/cache_dojo_logos.rb similarity index 100% rename from cache_dojo_logos.rb rename to _tasks/cache_dojo_logos.rb diff --git a/compact_geojson.rb b/_tasks/compact_geojson.rb similarity index 100% rename from compact_geojson.rb rename to _tasks/compact_geojson.rb diff --git a/get_data_from_earth.rb b/_tasks/get_data_from_earth.rb similarity index 100% rename from get_data_from_earth.rb rename to _tasks/get_data_from_earth.rb diff --git a/get_data_from_japan.rb b/_tasks/get_data_from_japan.rb similarity index 100% rename from get_data_from_japan.rb rename to _tasks/get_data_from_japan.rb diff --git a/upsert_dojos_geojson.rb b/_tasks/upsert_dojos_geojson.rb similarity index 100% rename from upsert_dojos_geojson.rb rename to _tasks/upsert_dojos_geojson.rb