├── 01-Ruby'e Giriş ├── index.html └── kod │ ├── moduller_1.rb │ ├── self_1.rb │ └── siniflar_1.rb ├── 02-Rails'e Giriş ├── img │ ├── dirs.png │ └── mvc.png ├── index.html └── kod │ ├── home.html.erb │ ├── pages_controller.rb │ └── routes.rb ├── 03-Rails Model Katmanı └── index.html ├── 04-Active Record Migration └── index.html ├── 05-Active Record Validation └── index.html ├── 06-HTTP 101 └── index.html ├── 07-Rails Controller Katmanı └── index.html ├── 08-Routing ├── index.html └── ss1.png ├── 09-Rails View Katmanı └── index.html ├── 10-Form Helper └── index.html ├── 11-Active Record İlişkiler ├── 1.png └── index.html ├── 12-Nested Form └── index.html ├── LICENSE └── README.MD /01-Ruby'e Giriş/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/01-Ruby'e Giriş/index.html -------------------------------------------------------------------------------- /01-Ruby'e Giriş/kod/moduller_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/01-Ruby'e Giriş/kod/moduller_1.rb -------------------------------------------------------------------------------- /01-Ruby'e Giriş/kod/self_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/01-Ruby'e Giriş/kod/self_1.rb -------------------------------------------------------------------------------- /01-Ruby'e Giriş/kod/siniflar_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/01-Ruby'e Giriş/kod/siniflar_1.rb -------------------------------------------------------------------------------- /02-Rails'e Giriş/img/dirs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/02-Rails'e Giriş/img/dirs.png -------------------------------------------------------------------------------- /02-Rails'e Giriş/img/mvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/02-Rails'e Giriş/img/mvc.png -------------------------------------------------------------------------------- /02-Rails'e Giriş/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/02-Rails'e Giriş/index.html -------------------------------------------------------------------------------- /02-Rails'e Giriş/kod/home.html.erb: -------------------------------------------------------------------------------- 1 |

<%= @foo %>

-------------------------------------------------------------------------------- /02-Rails'e Giriş/kod/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/02-Rails'e Giriş/kod/pages_controller.rb -------------------------------------------------------------------------------- /02-Rails'e Giriş/kod/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | 3 | root to: 'pages#home' 4 | 5 | end 6 | -------------------------------------------------------------------------------- /03-Rails Model Katmanı/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/03-Rails Model Katmanı/index.html -------------------------------------------------------------------------------- /04-Active Record Migration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/04-Active Record Migration/index.html -------------------------------------------------------------------------------- /05-Active Record Validation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/05-Active Record Validation/index.html -------------------------------------------------------------------------------- /06-HTTP 101/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/06-HTTP 101/index.html -------------------------------------------------------------------------------- /07-Rails Controller Katmanı/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/07-Rails Controller Katmanı/index.html -------------------------------------------------------------------------------- /08-Routing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/08-Routing/index.html -------------------------------------------------------------------------------- /08-Routing/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/08-Routing/ss1.png -------------------------------------------------------------------------------- /09-Rails View Katmanı/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/09-Rails View Katmanı/index.html -------------------------------------------------------------------------------- /10-Form Helper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/10-Form Helper/index.html -------------------------------------------------------------------------------- /11-Active Record İlişkiler/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/11-Active Record İlişkiler/1.png -------------------------------------------------------------------------------- /11-Active Record İlişkiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/11-Active Record İlişkiler/index.html -------------------------------------------------------------------------------- /12-Nested Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/12-Nested Form/index.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsakademi/dersler/HEAD/README.MD --------------------------------------------------------------------------------