├── 00_references └── README.md ├── 01_ruby ├── 01_ruby_101 │ └── README.md ├── 02_block │ ├── README.md │ └── block.rb ├── 03_private_symbol │ ├── README.md │ ├── private.rb │ └── symbol.rb ├── 04_args_module │ ├── README.md │ └── args.rb ├── 05_idioms │ ├── README.md │ └── idioms.rb ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile └── test │ ├── 02_block │ └── test_block.rb │ ├── 03_private_symbol │ ├── test_private.rb │ └── test_symbol_manipulator.rb │ ├── 04_args_module │ └── test_args.rb │ ├── 05_idioms │ └── test_idioms.rb │ └── test_helper.rb ├── 02_rails ├── 00_intro │ ├── 01-rails-command.md │ ├── 02-scaffold-flow.md │ ├── 03-scaffold-read.md │ ├── 04-scaffold-write.md │ ├── README.md │ ├── compose.yaml │ └── images │ │ └── form.png ├── 01_crud │ ├── README.md │ ├── compose.yaml │ └── rails_info_routes_sample.png ├── 02_genjitsu │ └── README.md ├── 03_rspec │ └── README.md ├── 04_outline │ └── README.md ├── 05_feature │ └── README.md └── README.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md └── README.md /00_references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/00_references/README.md -------------------------------------------------------------------------------- /01_ruby/01_ruby_101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/01_ruby_101/README.md -------------------------------------------------------------------------------- /01_ruby/02_block/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/02_block/README.md -------------------------------------------------------------------------------- /01_ruby/02_block/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/02_block/block.rb -------------------------------------------------------------------------------- /01_ruby/03_private_symbol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/03_private_symbol/README.md -------------------------------------------------------------------------------- /01_ruby/03_private_symbol/private.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/03_private_symbol/private.rb -------------------------------------------------------------------------------- /01_ruby/03_private_symbol/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/03_private_symbol/symbol.rb -------------------------------------------------------------------------------- /01_ruby/04_args_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/04_args_module/README.md -------------------------------------------------------------------------------- /01_ruby/04_args_module/args.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/04_args_module/args.rb -------------------------------------------------------------------------------- /01_ruby/05_idioms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/05_idioms/README.md -------------------------------------------------------------------------------- /01_ruby/05_idioms/idioms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/05_idioms/idioms.rb -------------------------------------------------------------------------------- /01_ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/Gemfile -------------------------------------------------------------------------------- /01_ruby/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/Gemfile.lock -------------------------------------------------------------------------------- /01_ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/README.md -------------------------------------------------------------------------------- /01_ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/Rakefile -------------------------------------------------------------------------------- /01_ruby/test/02_block/test_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/test/02_block/test_block.rb -------------------------------------------------------------------------------- /01_ruby/test/03_private_symbol/test_private.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/test/03_private_symbol/test_private.rb -------------------------------------------------------------------------------- /01_ruby/test/03_private_symbol/test_symbol_manipulator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/test/03_private_symbol/test_symbol_manipulator.rb -------------------------------------------------------------------------------- /01_ruby/test/04_args_module/test_args.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/test/04_args_module/test_args.rb -------------------------------------------------------------------------------- /01_ruby/test/05_idioms/test_idioms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/test/05_idioms/test_idioms.rb -------------------------------------------------------------------------------- /01_ruby/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/01_ruby/test/test_helper.rb -------------------------------------------------------------------------------- /02_rails/00_intro/01-rails-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/00_intro/01-rails-command.md -------------------------------------------------------------------------------- /02_rails/00_intro/02-scaffold-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/00_intro/02-scaffold-flow.md -------------------------------------------------------------------------------- /02_rails/00_intro/03-scaffold-read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/00_intro/03-scaffold-read.md -------------------------------------------------------------------------------- /02_rails/00_intro/04-scaffold-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/00_intro/04-scaffold-write.md -------------------------------------------------------------------------------- /02_rails/00_intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/00_intro/README.md -------------------------------------------------------------------------------- /02_rails/00_intro/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/00_intro/compose.yaml -------------------------------------------------------------------------------- /02_rails/00_intro/images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/00_intro/images/form.png -------------------------------------------------------------------------------- /02_rails/01_crud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/01_crud/README.md -------------------------------------------------------------------------------- /02_rails/01_crud/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/01_crud/compose.yaml -------------------------------------------------------------------------------- /02_rails/01_crud/rails_info_routes_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/01_crud/rails_info_routes_sample.png -------------------------------------------------------------------------------- /02_rails/02_genjitsu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/02_genjitsu/README.md -------------------------------------------------------------------------------- /02_rails/03_rspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/03_rspec/README.md -------------------------------------------------------------------------------- /02_rails/04_outline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/04_outline/README.md -------------------------------------------------------------------------------- /02_rails/05_feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/05_feature/README.md -------------------------------------------------------------------------------- /02_rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/02_rails/README.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/yay/HEAD/README.md --------------------------------------------------------------------------------