Tags
Language
Tags
June 2025
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 1 2 3 4 5
    Attention❗ To save your time, in order to download anything on this site, you must be registered 👉 HERE. If you do not have a registration yet, it is better to do it right away. ✌

    ( • )( • ) ( ͡⚆ ͜ʖ ͡⚆ ) (‿ˠ‿)
    SpicyMags.xyz

    Ruby On Rails For Beginners Practical Ruby On Rails Training

    Posted By: ELK1nG
    Ruby On Rails For Beginners Practical Ruby On Rails Training

    Ruby On Rails For Beginners Practical Ruby On Rails Training
    Last updated 1/2017
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
    Language: English | Size: 919.83 MB | Duration: 8h 13m

    A practical hands-on course that teaches the beginner how to use Ruby On Rails. Uses easy to follow examples.

    What you'll learn
    Teach the core fundamentals of programming with Ruby On Rails
    Requirements
    A will to learn to program
    Description
    This Ruby on Rails tutorial from Infinite Skills will take you through the key features of this open-source web development framework while leading you through the development of a time-tracking web application. This course is designed for users that already have a working knowledge of the Ruby programming language. You will start with a tour of Ruby Syntax and how to run Ruby code, learning about objects and classes, strings and numerics, and control structures in Ruby. You will then begin to create a Rails app, covering topics such as domain modeling, controllers, views, creating forms, and authentication. This video tutorial will also teach you how to use Ajax with Rails, handle file uploads, send emails from the server, and export content to CSV, JSON, and XML. Finally, you will learn how to test Rail apps and write model and controller tests. By the completion of this computer based training course, you will be fully capable of creating a web app from start to finish with Ruby on Rails. Working files are included, allowing you to follow along with the author throughout the lessons.

    Overview

    Section 1: Introduction

    Lecture 1 Important - Download These First

    Lecture 2 0101 What We Will Cover

    Lecture 3 0103 Brief History Of Rails

    Lecture 4 0104 The Purpose Of Using Rails

    Lecture 5 0105 Model View Controller Paradigm

    Lecture 6 0106 Installing Rails Using Nitrous

    Lecture 7 0107 Installing Rails Using The Rails Installer

    Lecture 8 0108 How To Access Your Working Files

    Section 2: Brief Tour

    Lecture 9 0201 Brief Walkthrough Of A Small Working Rails App

    Lecture 10 0202 Code Organization In Rails - What Directions Do What?

    Lecture 11 0203 Model Elements Of The Blog App

    Lecture 12 0204 More On Model Elements Of The Blog App

    Lecture 13 0205 Controller And View Elements Of The Blog App

    Section 3: Ruby On Rails

    Lecture 14 0301 Brief Tour Of Ruby Syntax And How To Run Ruby Code

    Lecture 15 0302 Objects And Classes - Part 1

    Lecture 16 0303 Objects And Classes - Part 2

    Lecture 17 0304 The Self Keyword

    Lecture 18 0305 Objects And Classes - Exercise Review

    Lecture 19 0306 Strings In Ruby

    Lecture 20 0307 Numerics In Ruby

    Lecture 21 0308 String And Numerics - Exercise Review

    Lecture 22 0309 Arrays In Ruby

    Lecture 23 0310 Hashes In Ruby

    Lecture 24 0311 Control Structures

    Lecture 25 0312 Iterating Over Collections

    Lecture 26 0313 Array And Hash - Exercise Review

    Lecture 27 0314 Blocks

    Lecture 28 0315 Iterators And Blocks - Exercise Review

    Section 4: Domain Modelling

    Lecture 29 0401 Creating A Rails App

    Lecture 30 0402 Modelling Domains

    Lecture 31 0403 Creating Models

    Lecture 32 0404 More On Creating Models - Finishing The Migrations

    Lecture 33 0405 Associations

    Lecture 34 0406 The Rails Console

    Lecture 35 0407 Many-To-Many Associations

    Lecture 36 0408 Many-To-Many Associations - Testing Via The Console

    Lecture 37 0409 Rails Console - Adding Data

    Lecture 38 0410 Fixtures

    Lecture 39 0411 Migrations - Changing A Field

    Lecture 40 0412 Fixtures - Exercise Review

    Lecture 41 0413 AR Query Interface

    Lecture 42 0414 Scopes

    Lecture 43 0415 Validations

    Lecture 44 0416 Validations - Exercise Review

    Section 5: Controllers

    Lecture 45 0501 Action Controller Overview

    Lecture 46 0502 Routing And The Params Hash

    Lecture 47 0503 Getting Values From The Model In Controller Actions

    Lecture 48 0504 Generating Controllers - Exercise Review

    Lecture 49 0505 Adding To Our Controllers And Routes

    Lecture 50 0506 Adding A Slug Route For Projects

    Section 6: Views

    Lecture 51 0601 Action View Overview

    Lecture 52 0602 Setting The Global Layout

    Lecture 53 0603 Adding A Nav - Using View Helpers

    Lecture 54 0604 Asset Pipeline Overview - Adding Some Javascript

    Lecture 55 0605 Styling The Global Template - Turbolinks

    Lecture 56 0606 Layouts And Rendering - How Does Rails Choose A Template?

    Lecture 57 0607 Looping Over Collections In Views

    Lecture 58 0608 Adding A To_S Method To Models

    Lecture 59 0609 Looping Over Collections - Exercise Review

    Lecture 60 0610 Displaying Related Items In The Show View

    Lecture 61 0611 Partials And Content_For

    Lecture 62 0612 Partials For Re-Used Content

    Lecture 63 0613 Partials For Re-Used Content - Exercise Review

    Section 7: Forms

    Lecture 64 0701 Forms Overview

    Lecture 65 0702 A Create Form For Companies

    Lecture 66 0703 Form Helper Methods And Styling The Forms

    Lecture 67 0704 A Create Form For Works

    Lecture 68 0705 A Create Form For Projects - Exercise Review

    Lecture 69 0706 Saving The New Object - The Create Action

    Lecture 70 0707 The Create Action For Works

    Lecture 71 0708 The Create Action For Projects - Exercise Review

    Lecture 72 0709 Validation And Forms

    Lecture 73 0710 Validation For Works

    Lecture 74 0711 Validation For Projects - Exercise Review

    Lecture 75 0712 Writing An Edit Form

    Lecture 76 0713 An Edit Form For Works With Refactoring

    Lecture 77 0714 Writing An Edit Form - Exercise Review

    Lecture 78 0715 Forms And Ajax

    Section 8: Authentication

    Lecture 79 0801 Authentication Packages In Rails Filters

    Lecture 80 0802 Installing Devise

    Lecture 81 0803 Using Devise

    Section 9: Mailers

    Lecture 82 0901 Mailers Overview

    Lecture 83 0902 Creating And Invoking A Mailer

    Lecture 84 0903 Mailer - Exercise Review

    Section 10: Files And Exporting

    Lecture 85 1001 Uploading Files To The Server

    Lecture 86 1002 Files - Exercise Review

    Lecture 87 1003 Exporting Content To CSV

    Lecture 88 1004 CSV Exporting - Exercise Review

    Section 11: Testing

    Lecture 89 1101 Testing Rails Apps

    Lecture 90 1102 Using Fixtures

    Lecture 91 1103 Writing Tests - Model Tests

    Lecture 92 1104 Writing Tests - Controller Tests

    Section 12: Refactoring And Final Exercises

    Lecture 93 1201 Making Our App Better - Refactoring

    Lecture 94 1202 Updating Associations For Maintainability

    Lecture 95 1203 Extended Exercise

    Lecture 96 1204 Extended Exercise Review - Part 1

    Lecture 97 1205 Extended Exercise Review - Part 2

    Section 13: Conclusion

    Lecture 98 1301 Tips On How To Tackle A Rails App You Inherited

    Lecture 99 1302 Where To Find More Information

    Lecture 100 1303 Wrap-Up

    Programmers, Web Developers