├── another_feature.rb ├── really_useful_fix.rb ├── README.md └── dojo_rules.md /another_feature.rb: -------------------------------------------------------------------------------- 1 | # Here's another feature 2 | -------------------------------------------------------------------------------- /really_useful_fix.rb: -------------------------------------------------------------------------------- 1 | # This is a really useful fix to the project 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Dojo Rules 2 | ========== 3 | 4 | This repository contains a list of dojo rules for the Deadly Vipers dojo 5 | 6 | -------------------------------------------------------------------------------- /dojo_rules.md: -------------------------------------------------------------------------------- 1 | Dojo Rules 2 | ========== 3 | * Always be on time 4 | * Always take off your shoes 5 | * Keep the dojo tidy 6 | * Never bring live blades on the tatami 7 | * Respect your opponents 8 | * Most Sensei's should be respected 9 | --------------------------------------------------------------------------------