ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

91 results

Web Development Tutorials
Ruby on Rails - Web development basic Series: System Tests with Capybara

A system test drives a real, actual browser, clicking buttons and filling in forms exactly like a real user would, and Capybara is the ...

2:10
Ruby on Rails - Web development basic Series: System Tests with Capybara

0 views

2 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Adding has_secure_password for Basic Auth

Storing a user's password in plain text is a serious security mistake, and Rails gives you has_secure_password, a real, built-in ...

2:28
Ruby on Rails - Web development basic Series: Adding has_secure_password for Basic Auth

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Introduction to RSpec for Rails

In this video, we'll build a simple RSpec test suite for a Rails application and see the actual output in action. Code walkthrough ...

1:35
Ruby on Rails - Web development basic Series: Introduction to RSpec for Rails

0 views

5 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: What Is Ruby? Installing Ruby and Running Your First S

Ruby is the programming language Rails itself is written in, and before touching any Rails code at all, you need Ruby installed ...

2:36
Ruby on Rails - Web development basic Series: What Is Ruby? Installing Ruby and Running Your First S

2 views

4 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Database Seeding and Fixtures

A fresh database is completely empty, but you often need real starter data, an admin user, some sample categories, to actually ...

2:07
Ruby on Rails - Web development basic Series: Database Seeding and Fixtures

0 views

2 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Deploying a Rails App

A Rails app running only on your own laptop isn't reachable by anyone else, deploying puts it on a real server the whole internet ...

2:13
Ruby on Rails - Web development basic Series: Deploying a Rails App

0 views

2 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Generating Models and Migrations

A model isn't just a Ruby class, it needs a real matching database table, and Rails generates both together with one command.

2:05
Ruby on Rails - Web development basic Series: Generating Models and Migrations

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Rendering Views and Layouts

Every controller action automatically renders a matching view, but you can also render something different, or wrap every page in ...

2:03
Ruby on Rails - Web development basic Series: Rendering Views and Layouts

0 views

4 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Action Mailer for Sending Emails

Action Mailer is Rails' built-in system for sending real emails, and it works almost exactly like a controller and view, just for ...

2:09
Ruby on Rails - Web development basic Series: Action Mailer for Sending Emails

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Active Job and Background Processing

Some tasks, sending an email, resizing an image, are too slow to make a user wait for while a page loads. Active Job is Rails' ...

2:01
Ruby on Rails - Web development basic Series: Active Job and Background Processing

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Associations: has_many :through and has_and_belongs_to

Some relationships are more complex than a simple has_many, like an article having many tags, and a tag belonging to many ...

2:02
Ruby on Rails - Web development basic Series: Associations: has_many :through and has_and_belongs_to

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Hashes: Storing Key-Value Data in Ruby

A hash stores data as key-value pairs instead of a plain ordered list, so you look values up by a meaningful name instead of a ...

2:00
Ruby on Rails - Web development basic Series: Hashes: Storing Key-Value Data in Ruby

0 views

4 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Action Cable for WebSockets and Real-Time Features

Action Cable is Rails' built-in framework for WebSockets, letting your server push real, live updates to a page without the user ever ...

2:02
Ruby on Rails - Web development basic Series: Action Cable for WebSockets and Real-Time Features

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Stimulus.js Basics in Rails

Stimulus is the lightweight JavaScript framework that pairs with Hotwire, adding small bits of real interactivity, like toggling a menu, ...

1:55
Ruby on Rails - Web development basic Series: Stimulus.js Basics in Rails

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Active Storage for File Uploads

Active Storage is Rails' built-in system for attaching real files, images, PDFs, anything, to your models, without you writing any ...

2:20
Ruby on Rails - Web development basic Series: Active Storage for File Uploads

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Introduction to RSpec for Rails

RSpec is the most popular alternative testing framework in the Rails community, favored for its readable, English-like syntax.

2:08
Ruby on Rails - Web development basic Series: Introduction to RSpec for Rails

0 views

2 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Full CRUD: Destroy and Confirmation

Deleting a record is permanent, so Rails makes it easy to both perform the deletion and ask the user to confirm it first. In this video ...

1:51
Ruby on Rails - Web development basic Series: Full CRUD: Destroy and Confirmation

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Building Forms with form_with

form_with is Rails' modern helper for generating real HTML forms, and it automatically wires up the correct URL and HTTP ...

2:07
Ruby on Rails - Web development basic Series: Building Forms with form_with

0 views

3 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Blocks, Procs, and Lambdas

You've already been using blocks with each and times without a formal explanation, that do...end or curly-brace chunk of code is ...

2:07
Ruby on Rails - Web development basic Series: Blocks, Procs, and Lambdas

0 views

4 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Classes and Objects in Ruby

Ruby is a genuinely object-oriented language, meaning almost everything, including your own custom data, can be modeled as a ...

2:13
Ruby on Rails - Web development basic Series: Classes and Objects in Ruby

0 views

4 hours ago