Skip to content

Commit 3c01c09

Browse files
authored
Merge pull request #24 from coderdojo-japan/organize-scripts-into-tasks-dir
Ruby γ‚Ήγ‚―γƒͺγƒ—γƒˆγ‚’ _tasks/ γƒ‡γ‚£γƒ¬γ‚―γƒˆγƒͺに整理
2 parents 49dee49 + a68ea2c commit 3c01c09

File tree

10 files changed

+5
-9
lines changed

10 files changed

+5
-9
lines changed

β€ŽRakefileβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ task default: 'test'
22

33
# These tasks are executed in GitHub Actions
44
desc 'Get CoderDojo data on the Earth via Raspberry Pi Clubs API'
5-
task(:get_data_from_earth) { ruby 'get_data_from_earth.rb' }
6-
task(:get_data_from_japan) { ruby 'get_data_from_japan.rb' }
7-
task(:cache_dojo_logos) { ruby 'cache_dojo_logos.rb' }
8-
task(:upsert_dojos_geojson) { ruby 'upsert_dojos_geojson.rb' }
9-
task(:compact_geojson) { ruby 'compact_geojson.rb' }
5+
task(:get_data_from_earth) { ruby '_tasks/get_data_from_earth.rb' }
6+
task(:get_data_from_japan) { ruby '_tasks/get_data_from_japan.rb' }
7+
task(:cache_dojo_logos) { ruby '_tasks/cache_dojo_logos.rb' }
8+
task(:upsert_dojos_geojson) { ruby '_tasks/upsert_dojos_geojson.rb' }
9+
task(:compact_geojson) { ruby '_tasks/compact_geojson.rb' }
1010

1111
# GitHub - gjtorikian/html-proofer
1212
# https://github.com/gjtorikian/html-proofer

β€Ž_config.ymlβ€Ž

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ exclude:
1111
- LICENSE.md
1212
- CODE_OF_CONDUCT.md
1313
- dojo2dojo.csv
14-
- get_data_from_earth.rb
15-
- get_data_from_japan.rb
16-
- upsert_dojos_geojson.rb
17-
- compact_geojson.rb
1814

1915
# See the official README for more options:
2016
# https://github.com/digitalsparky/jekyll-minifier

β€Ž_tasks/.gitkeepβ€Ž

Whitespace-only changes.

0 commit comments

Comments
Β (0)