Ruby on Rails Beyond the Basics [Lynda.com]
Trang 1 trong tổng số 1 trang
Ruby on Rails Beyond the Basics [Lynda.com]
Ruby on Rails Beyond the Basics [Lynda.com]
In this sequel to the popular Ruby on Rails Essential Training, expert instructor Kevin Skoglund teaches comprehensive techniques for web developers who already feel comfortable with the fundamentals of Ruby and the Rails MVC framework. This training will help developers move toward creating full-featured Ruby on Rails applications. Kevin begins by explaining how to update software and projects to the latest versions. He then demonstrates alternative ways to interact with Ruby and your Rails applications and teaches the intermediate aspects of the Ruby language. Kevin provides step-by-step instructions for creating a custom blog and content management application. He uses this practical example to show how to work with database migrations, how to get more from ActiveRecord and avoid common pitfalls, how to create flexible controllers and views, and how to improve performance, security, and code management.
Duration (hr:min):
11:36
Software works on:
Mac and Windows
Download:
In this sequel to the popular Ruby on Rails Essential Training, expert instructor Kevin Skoglund teaches comprehensive techniques for web developers who already feel comfortable with the fundamentals of Ruby and the Rails MVC framework. This training will help developers move toward creating full-featured Ruby on Rails applications. Kevin begins by explaining how to update software and projects to the latest versions. He then demonstrates alternative ways to interact with Ruby and your Rails applications and teaches the intermediate aspects of the Ruby language. Kevin provides step-by-step instructions for creating a custom blog and content management application. He uses this practical example to show how to work with database migrations, how to get more from ActiveRecord and avoid common pitfalls, how to create flexible controllers and views, and how to improve performance, security, and code management.
Introduction
Introduction 02:00 1.5 MB
Using the exercise files 02:34 2.1 MB
1. Maintaining Ruby and Rails
Updating Ruby 09:24 9.9 MB
Updating Rails and Gems 07:44 6.9 MB
Updating previous Rails projects 06:47 6.2 MB
Freezing Rails to a version 03:51 3.8 MB
Offline Ruby documentation 05:32 5.1 MB
Offline Rails documentation 06:10 6.1 MB
Installing Subversion and Edge Rails 07:05 9.2 MB
2. Working Directly with Ruby and Rails
Ruby from the command line 03:53 3.0 MB
Interactive Ruby (IRB) 03:55 3.1 MB
Getting more out of IRB 08:18 6.7 MB
Rails console script 04:56 4.3 MB
Rails runner script 03:58 3.1 MB
3. Intermediate Ruby
Arrays 09:56 7.6 MB
Hashes 07:14 5.6 MB
Code blocks: Each 11:59 9.1 MB
Code blocks: Find 07:58 6.1 MB
Code blocks: Merge 04:21 3.5 MB
Code blocks: Collect 08:19 6.4 MB
Code blocks: Inject 08:20 6.4 MB
Code blocks: Sort 08:07 6.3 MB
Custom code blocks 06:01 4.6 MB
Classes 13:29 11.0 MB
Methods 06:57 5.2 MB
Modules 10:58 8.7 MB
Control flow 05:36 4.2 MB
Catching errors and raising exceptions 11:42 9.7 MB
4. Describing Your Project
Project description overview 02:50 2.0 MB
Blueprinting the presentation layer 03:10 2.3 MB
Blueprinting the database 05:10 3.8 MB
Previewing the finished blog 03:26 3.6 MB
Creating the project files 01:37 1.3 MB
5. Databases and Migrations
Why use migrations? 03:31 2.6 MB
Creating a database and granting privileges 06:07 5.2 MB
Creating a migration with a model 06:00 5.2 MB
Customizing a migration 08:02 6.4 MB
Generating a migration 03:42 3.2 MB
Writing the AlterPosts migration 09:16 7.5 MB
Migrating a join table 03:49 3.4 MB
Migrating a simple join to a rich join 05:53 5.0 MB
Accessing models within migrations 02:43 2.7 MB
Migrating from legacy databases 07:40 8.6 MB
6. Configuration Options in Rails
Loading in other files 08:13 6.9 MB
Logging 04:34 4.2 MB
Session configuration options 05:38 5.5 MB
Session storage options 09:06 7.3 MB
7. Getting More from ActiveRecord Models
Setting the table name 03:42 2.9 MB
Specifying the class name and foreign key 04:34 4.1 MB
Handling dependent related records 04:37 3.7 MB
Creating custom relationships 02:35 2.0 MB
Using has_many :through 04:55 3.9 MB
One-to-one relationships using has_one 03:54 2.8 MB
When does ActiveRecord save to the database? 07:23 6.2 MB
Examining the difference between length and size 06:00 5.6 MB
Adding a counter cache 09:50 8.7 MB
Save before making many-to-many joins 03:01 2.4 MB
8. Creating the Post CRUD
Generating controllers with actions 03:45 3.2 MB
Adding layouts and style sheets 07:35 6.5 MB
Creating the list of posts 08:57 8.8 MB
Creating the form for posts 04:04 3.5 MB
Adding authors to the Post form 03:53 3.9 MB
Saving author information with the post 05:36 4.9 MB
Adding category checkboxes to the form 11:51 10.8 MB
9. Creating the Category CRUD
Merging the List, Show, and New actions 04:15 4.7 MB
Merging the Edit action 02:23 2.5 MB
Giving the Category form two actions 03:18 3.2 MB
10. Creating the User CRUD
Creating a list of users 03:30 3.8 MB
Choosing between two forms 05:02 5.9 MB
Merging New and Edit into Manage 02:48 2.9 MB
Merging Create and Update into Manage 05:26 4.7 MB
Merging Destroy into Manage 04:44 4.7 MB
11. Creating the Comment CRUD
Creating the list of comments 06:47 6.4 MB
Moderating comments 06:34 5.9 MB
Filtering the comments being viewed 04:00 3.9 MB
Conditional links 02:56 2.5 MB
12. Improving Access Control
Login Action and View 05:38 4.5 MB
Protected and accessible attributes 05:44 4.5 MB
Using callbacks 07:45 6.2 MB
Improving security by salting passwords 03:36 2.9 MB
Storing unique salt strings 09:29 8.1 MB
Hashing old passwords using migrations 05:19 5.0 MB
Authorizing access with a Before filter 05:11 4.9 MB
13. Creating the Public Site
Creating the public list of posts 08:22 6.9 MB
Utilizing view helpers 07:39 6.7 MB
Writing custom helpers 07:52 6.8 MB
Using partials with collections 05:50 5.0 MB
Sharing partials 03:58 3.4 MB
Passing local variables to partials 07:59 7.5 MB
Displaying only approved comments 02:52 2.8 MB
Adding and testing the Comment form 04:54 4.8 MB
Adding the comment count as a link 03:53 3.9 MB
Eager loading with Include 08:06 11.2 MB
14. Validations
Basic validations 06:36 6.1 MB
Custom validations 04:12 4.2 MB
Validation callbacks 04:31 4.4 MB
15. Creating the Category and Archive Views
Creating a list of category links 04:28 4.7 MB
Viewing posts by category 05:22 5.2 MB
Creating a list of archive links 05:16 4.9 MB
Viewing posts by month 04:11 3.9 MB
16. Routes
Overview of Rails routing 04:34 3.4 MB
Understanding the initial routes 05:45 5.4 MB
Defining a route alias 04:11 4.0 MB
Setting default values 03:30 3.5 MB
Putting parameters in custom routes 04:59 4.3 MB
Filtering routes with requirements 05:53 5.1 MB
Named routes 05:03 5.1 MB
Viewing route definitions 03:05 3.1 MB
17. Pagination
Pagination overview 02:12 1.6 MB
Classic pagination 03:50 3.3 MB
Custom pagination 04:08 3.5 MB
Plug-in pagination 03:34 3.3 MB
The will_paginate plug-in 04:39 4.7 MB
18. Final Steps
Finishing the project 03:05 2.6 MB
Generating application documentation 03:48 4.3 MB
Reviewing application statistics 01:36 1.3 MB
Conclusion
Goodbye 00:29 0.3 MB
Duration (hr:min):
11:36
Software works on:
Mac and Windows
Download:
- Code:
http://rapidshare.com/files/364190849/rbyonralsbyndthbasic_Lynda.com_.part1.rar
http://rapidshare.com/files/364197136/rbyonralsbyndthbasic_Lynda.com_.part2.rar
http://rapidshare.com/files/364206168/rbyonralsbyndthbasic_Lynda.com_.part3.rar
http://rapidshare.com/files/364208627/rbyonralsbyndthbasic_Lynda.com_.part4.rar
Similar topics
» Lynda.com Ruby on Rails Beyond the Basics DVD
» Lynda.com Ruby on Rails Essential Training
» [HF] Lynda.com - PHP with My SQL Beyond The Basics
» Lynda.com Ruby on Rails Essential Training
» [HF] Lynda.com - PHP with My SQL Beyond The Basics
Trang 1 trong tổng số 1 trang
Permissions in this forum:
Bạn không có quyền trả lời bài viết
Mon 05 Oct 2015, 7:51 pm by giaychuotkhoet
» Hộp đựng đa năng trong phòng tắm và các đồ dụng tiện llợi khác
Wed 22 Jul 2015, 1:23 am by aloonline1987
» gel bôi trơn ấm áp warm lovin
Tue 19 May 2015, 4:24 pm by shopnguoilon_sg
» màng film tránh thai vcf dành cho chị em
Tue 19 May 2015, 4:19 pm by shopnguoilon_sg
» màng film tránh thai vcf dành cho chị em
Tue 19 May 2015, 4:17 pm by shopnguoilon_sg
» stud 100 khẳng định đẳng cấp phái mạnh
Fri 15 May 2015, 11:25 am by shopnguoilon_sg
» Lover aider máy mát xa dành cho nữ
Fri 15 May 2015, 11:23 am by shopnguoilon_sg
» cung cấp máy ép dĩa chất lượng
Fri 17 Apr 2015, 2:15 pm by huyenrio
» Máy in hình lên ly
Wed 25 Mar 2015, 2:44 pm by huyenrio
» Máy in hình lên áo
Wed 25 Mar 2015, 2:43 pm by huyenrio
» trang trí cây thông noel ở vinh,cho thuê cây thông noel ở vinh,chuyển quà noel ở vinh
Fri 28 Nov 2014, 8:44 am by sunflowerhn83
» Máy in hạn sử dụng DMJ-B chính hãng, giá sốc
Thu 02 Oct 2014, 9:40 am by phamlinhnd1010
» Dạy cắm hoa chuyên nghiệp,dạy cắm hoa nghệ thuật,dạy cắt tỉa của quả ở T.p Vinh Nghệ An
Tue 30 Sep 2014, 10:10 am by haiha131276
» công ty Yên Phát chuyên phân phối, lắp đặt camera chính hãng giá rẻ nhất miền Bắc.
Fri 26 Sep 2014, 10:57 am by phamlinhnd1010
» HOT! Chung cư mini Xuân Đỉnh ở ngay giá chỉ từ 690 triệu 1 căn
Fri 26 Sep 2014, 10:44 am by xuantruong23