reklama - zainteresowany?

Learning Rails 5. Rails from the Outside In - Helion

Learning Rails 5. Rails from the Outside In
ebook
Autor: J. Mark Locklear, Eric J Gruber, Barnabas Bulpett
ISBN: 978-14-919-2615-4
stron: 452, Format: ebook
Data wydania: 2016-08-11
Księgarnia: Helion

Cena książki: 143,65 zł (poprzednio: 167,03 zł)
Oszczędzasz: 14% (-23,38 zł)

Dodaj do koszyka Learning Rails 5. Rails from the Outside In

Tagi: Rails - Programowanie | Technologie webowe

If you’re a web developer or designer ready to learn Ruby on Rails, this hands-on guide is the ideal way to get started. Rather than toss you into the middle of the framework’s Model-View-Controller architecture, as many books do, Learning Rails 5 begins with the foundations of the Web you already know.

You’ll learn how to create something visible with Rails’ view layer before diving into the more difficult inner layers: the database models and controller code. All you need to begin your Rails journey is HTML experience. Each chapter includes exercises and review questions to test your understanding as you go.

  • Present content by building an application with a basic view and a simple controller
  • Build forms and process their results, progressing from simple to more complex
  • Use Rails scaffolding and REST to build effective applications quickly
  • Connect forms to models and create code that maps directly to database structures
  • Build applications that combine data from multiple tables
  • Use migrations to track changes to your database over time
  • Add common elements such as sessions, cookies, and authentication

Dodaj do koszyka Learning Rails 5. Rails from the Outside In

 

Osoby które kupowały "Learning Rails 5. Rails from the Outside In", wybierały także:

  • Ruby on Rails. Ćwiczenia
  • Programowanie w jÄ™zyku Ruby. MikrousÅ‚ugi i konteneryzacja
  • Ruby on Rails. Od podstaw
  • Programowanie w jÄ™zyku Ruby. MikrousÅ‚ugi i konteneryzacja
  • Rails. Sztuka programowania

Dodaj do koszyka Learning Rails 5. Rails from the Outside In

Spis treści

Learning Rails 5. Rails from the Outside In eBook -- spis treści

  • Foreword
  • Preface
    • Who This Book Is For
    • Who This Book Is Not For
    • What Youll Learn
    • Ruby and Rails Style
    • Other Options
    • Rails Versions
    • If You Have Problems Making Examples Work
    • If You Like (or Dont Like) This Book
    • Conventions Used in This Book
    • Using Code Examples
    • Safari Books Online
    • How to Contact Us
    • Acknowledgments
  • 1. Starting Up Ruby on Rails
    • If You Run Windows, Youre Lucky
    • Getting Started at the Command Line
    • Starting Up Rails
    • Test Your Knowledge
      • Quiz
      • Answers
  • 2. Rails on the Web
    • Creating Your Own View
    • What Are All Those Folders?
    • Adding Some Data
    • How Hello World Works
    • Adding Logic to the View
    • Test Your Knowledge
      • Quiz
      • Answers
  • 3. Adding Web Style
    • I Want My CSS!
    • Specifying Stylesheets
    • Creating a Layout for a Controller
    • Choosing a Layout from a Controller
    • Sharing Template Data with the Layout
    • Setting a Default Page
    • Test Your Knowledge
      • Quiz
      • Answers
  • 4. Managing Data Flow: Controllers and Models
    • Getting Started, Greeting Guests
    • Application Flow
    • Keeping Track: A Simple Guestbook
      • Connecting to a Database Through a Model
      • Connecting the Controller to the Model
        • Storing data using the model
        • Retrieving data from the model and showing it
    • Finding Data with ActiveRecord
    • Test Your Knowledge
      • Quiz
      • Answers
  • 5. Accelerating Development with Scaffolding and REST
    • A First Look at Scaffolding
    • REST and Controller Best Practices
      • Websites and Web Applications
      • Toward a Cleaner Approach
    • Examining a RESTful Controller
      • index: An Overview of Data
      • show: Just One Row of Data and the Before Filter
      • new: A Blank Set of Data Fields
      • edit: Hand Me That Data, Please
      • create: Save Something New
      • Put This Updated Record In
      • Destroy It
    • Escaping the REST Prison
    • Test Your Knowledge
      • Quiz
      • Answers
  • 6. Presenting Models with Forms
    • More Than a Name on a Form
    • Generating HTML Forms with Scaffolding
    • Form as a Wrapper
    • Creating Text Fields and Text Areas
    • Labels
    • Creating Checkboxes
    • Creating Radio Buttons
    • Creating Selection Lists
    • Dates and Times
    • Creating Helper Methods
    • Test Your Knowledge
      • Quiz
      • Answers
  • 7. Strengthening Models with Validation
    • Without Validation
    • The Original Model
    • The Power of Declarative Validation
    • Managing Secrets
      • Customizing the Message
      • Limiting Choices
      • Testing Format with Regular Expressions
      • Seen It All Before
      • Numbers Only
    • A Place on the Calendar
      • Testing for Presence
    • Beyond Simple Declarations
      • Test It Only If
      • Do It Yourself
    • Test Your Knowledge
      • Quiz
      • Answers
  • 8. Improving Forms
    • Adding a Picture by Uploading a File
      • File Upload Forms
      • Model and Migration Changes
        • A migration for an extension
        • Extending a model beyond the database
        • Showing it off
      • Results
    • Standardizing Your Look with Form Builders
      • Supporting Your Own Field Types
      • Adding Automation
      • Integrating Form Builders and Styles
    • Test Your Knowledge
      • Quiz
      • Answers
  • 9. Developing Model Relationships
    • Connecting Awards to Students
      • Establishing the Relationship
      • Supporting the Relationship
    • Connecting Students to Awards
      • Removing Awards When Students Disappear
      • Counting Awards for Students
    • Nesting Awards in Students
      • Changing the Routing
      • Changing the Controller
      • Changing the Award Views
      • Connecting the Student Views
      • Is Nesting Worth It?
    • Many-to-Many: Connecting Students to Courses
      • Creating Tables
      • Connecting the Models
      • Adding to the Controllers
      • Adding Routing
      • Supporting the Relationship Through Views
        • Establishing navigation
        • Showing counts
        • Enrolling students in courses
    • Whats Missing?
    • Test Your Knowledge
      • Quiz
      • Answers
  • 10. Managing Databases with Migrations
    • What Migrations Offer You
    • Migration Basics
      • Migration Files
      • Running Migrations Forward and Backward
    • Inside Migrations
      • Working with Tables
      • Data Types
      • Working with Columns
      • Indexes
      • Other Opportunities
    • Test Your Knowledge
      • Quiz
      • Answers
  • 11. Debugging
    • Creating Your Own Debugging Messages
    • Raising Exceptions
    • Logging
    • Working with Rails from the Console
    • Debug and Debugger
    • Test Your Knowledge
      • Quiz
      • Answers
  • 12. Testing
    • Test Mode
    • Testing the Students App
    • Setting Up a Test Database with Fixtures
    • Model Testing
    • Controller Testing
      • Calling Controllers
      • Testing Responses
      • Dealing with Nested Resources
    • Integration Testing
    • Beyond the Basics
    • Test Your Knowledge
      • Quiz
      • Answers
  • 13. Sessions and Cookies
    • Getting Into and Out of Cookies
    • Storing Data Between Sessions
    • Test Your Knowledge
      • Quiz
      • Answers
  • 14. Users and Authentication
    • The Sign-up Process
    • Wiring Authentication to Your Application
    • Classifying Users
    • More Options
    • Test Your Knowledge
      • Quiz
      • Answers
  • 15. Routing
    • Creating Routes to Interpret URIs
      • Specifying Routes
      • Globbing
      • Regular Expressions and Routing
      • A Domain Default with root
      • Mapping Resources
      • Nesting Resources
      • Route Order and Priority
      • Checking the Map
    • Generating URIs from Views and Controllers
      • Pointing url_for in the Right Direction
      • Adding Options
    • Infinite Possibilities
    • Test Your Knowledge
      • Quiz
      • Answers
  • 16. From CSS to Sass
    • Getting Started
    • Sassy Style
      • Variables
      • Mixins
      • Nesting
    • Making Everything Work Together
      • Becoming Sassier
    • Test Your Knowledge
      • Quiz
      • Answers
  • 17. Managing Assets and Bundles
    • The Junk Drawer
      • Sprockets
      • Dissecting the Pipeline
      • Putting It All Together
      • Bundler
    • Test Your Knowledge
      • Quiz
      • Answers
  • 18. Sending Code to the Browser: JavaScript and CoffeeScript
    • Sending JavaScript to the Browser
    • Simplifying with CoffeeScript
      • Have Some Sugar with Your CoffeeScript
      • Converting to CoffeeScript
    • Test Your Knowledge
      • Quiz
      • Answers
  • 19. Mail in Rails
    • Sending Mail Messages
    • Previewing Mail
    • Receiving Mail
      • Setup
      • Processing Messages
    • Test Your Knowledge
      • Quiz
      • Answers
  • 20. Pushing Further into Rails
    • Changing to Production Mode
    • Deploying Is Much More Than Programming
    • Joining the Rails Ecosystem
      • Keep Up with Rails
      • Ruby
      • Working with and Around Rails
      • Keep Exploring
  • A. An Incredibly Brief Introduction to Ruby
    • How Ruby Works
    • How Rails Works
    • Getting Started with Classes and Objects
    • Comments
    • Variables, Methods, and Attributes
      • Variables
        • Arrays and hashes
        • Symbols
      • Methods
        • Privacy, please
        • super
        • Calling methods: advanced options
      • Attributes
    • Logic and Conditionals
      • Operators
      • if, else, unless, and elsif
      • Shorthand if/else
      • case and when
      • Loops
        • while and until
        • Just counting
        • for
      • Many More Possibilities
  • B. An Incredibly Brief Introduction to Relational Databases
    • Tables of Data
      • Connecting Tables
      • Using Tables to Connect Tables
      • Granularity
    • Databases, Tables, and Rails
  • C. An Incredibly Brief Guide to Regular Expressions
    • What Regular Expressions Do
    • Starting Small
    • The Simplest Expressions: Literal Strings
    • Character Classes
    • Escaping
    • Modifiers
    • Anchors
    • Sequences, Repetition, Groups, and Choices
    • Greed
    • More Possibilities
  • D. Glossary
    • Speaking in Rails
  • Index

Dodaj do koszyka Learning Rails 5. Rails from the Outside In

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2024 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.