Learning Rails 5. Rails from the Outside In

- Autorzy:
- J. Mark Locklear, Eric J Gruber, Barnabas Bulpett
- Promocja Przejdź


- Ocena:
- Bądź pierwszym, który oceni tę książkę
- Stron:
- 452
- Dostępne formaty:
-
ePubMobi
Opis książki: Learning Rails 5. Rails from the Outside In
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
Wybrane bestsellery
-
Like to build websites in the wild with your MacBook? This concise hands-on guide introduces you to the ideal editor: Coda 2. Rather than clutter your screen with shell access, a separate CSS editor, and a version control app, you’ll discover how Coda’s "one-window web development" bu...(0,00 zł najniższa cena z 30 dni)
46.74 zł
54.99 zł(-15%) -
If you’re a web developer or designer ready to learn Rails, this unique book is the ideal way to start.Rather than throw you into the middle of the framework’s Model-View-Controller architecture, Learning Rails 3 works from the outside in. You’ll begin with the foundations of th...(0,00 zł najniższa cena z 30 dni)
118.15 zł
139.00 zł(-15%) -
Jeśli chcesz się dowiedzieć, jak wykorzystać tę platformę w swoich projektach, jesteś na dobrym tropie! Dzięki tej książce poznasz możliwości i konstrukcje języka Ruby oraz mechanizm działania platformy Rails, a w szczególności interfejs Rack. Dowiesz się, jak zapewniać odpowiednią jakość swoich ...
Programowanie w języku Ruby. Mikrousługi i konteneryzacja Programowanie w języku Ruby. Mikrousługi i konteneryzacja
(0,00 zł najniższa cena z 30 dni)41.30 zł
59.00 zł(-30%) -
Learn to create fully functional web applications with authentication, content management systems, payment processing, RESTful APIs, and more
-
Discover the secrets to creating cutting-edge, compelling full stack applications using Spring Boot and React's rich and varied toolsets
Full Stack Development with Spring Boot and React - Third Edition Full Stack Development with Spring Boot and React - Third Edition
-
Design, build and deploy robust web applications using ASP.NET 6, Angular 13, and Entity Framework Core
-
The professional developer's essential guide to building robust, maintainable, and flexible web apps by leveraging C# 10 and .NET 6 features and component- and application-scale design patterns
An Atypical ASP.NET Core 6 Design Patterns Guide - Second Edition An Atypical ASP.NET Core 6 Design Patterns Guide - Second Edition
-
Fast-paced guide for designing effective Moodle courses; experiment with Moodle's features for free using MoodleCloud Key Features Apply principles of instructional design to create great Moodle learning experiences Enhance collaboration and spur creativity with Moodle Bring together instr...
-
Why is GraphQL the most innovative technology for fetching data since Ajax? By providing a query language for your APIs and a runtime for fulfilling queries with your data, GraphQL presents a clear alternative to REST and ad hoc web service architectures. With this practical guide, Alex Banks and...
Learning GraphQL. Declarative Data Fetching for Modern Web Apps Learning GraphQL. Declarative Data Fetching for Modern Web Apps
(0,00 zł najniższa cena z 30 dni)135.15 zł
159.00 zł(-15%) -
Develop a fully functional and dynamic Android application using the latest features of Firebase Key Features Explore all the latest tools in Firebase—Firebase Firestore, ML-Kit, and Firebase Predictions Master Firebase cloud messaging, remote configuration, and work with a real-time data...
Ebooka przeczytasz na:
-
czytnikach Inkbook, Kindle, Pocketbook i innych
-
systemach Windows, MacOS i innych
-
systemach Windows, Android, iOS, HarmonyOS
-
na dowolnych urządzeniach i aplikacjach obsługujących formaty: PDF, EPub, Mobi
Masz pytania? Zajrzyj do zakładki Pomoc »
Audiobooka posłuchasz:
-
w aplikacji Ebookpoint na Android, iOS, HarmonyOs
-
na systemach Windows, MacOS i innych
-
na dowolonych urządzeniach i aplikacjach obsługujących format MP3 (pliki spakowane w ZIP)
Masz pytania? Zajrzyj do zakładki Pomoc »
Kurs Video zobaczysz:
-
w aplikacji Ebookpoint na Android, iOS, HarmonyOs
-
na systemach Windows, MacOS i innych
-
na dowolonych urządzeniach i aplikacjach obsługujących format MP4 (pliki spakowane w ZIP)
Szczegóły książki
- ISBN Ebooka:
- 978-14-919-2615-4, 9781491926154
- Data wydania ebooka:
-
2016-08-11
Data wydania ebooka często jest dniem wprowadzenia tytułu do sprzedaży i może nie być równoznaczna z datą wydania książki papierowej. Dodatkowe informacje możesz znaleźć w darmowym fragmencie. Jeśli masz wątpliwości skontaktuj się z nami sklep@helion.pl.
- Język publikacji:
- angielski
- Rozmiar pliku ePub:
- 8.2MB
- Rozmiar pliku Mobi:
- 8.2MB
- Kategorie:
Technologie webowe
Technologie webowe » Rails - Programowanie
Spis treści książki
- 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
- Adding a Picture by Uploading a File
- 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 Awards to Students
- 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
- Creating Routes to Interpret URIs
- 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
- The Junk Drawer
- 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
- Variables
- 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
- Tables of Data
- 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
O'Reilly Media - inne książki
-
FinOps brings financial accountability to the variable spend model of cloud. Used by the majority of global enterprises, this management practice has grown from a fringe activity to the de facto discipline managing cloud spend. In this book, authors J.R. Storment and Mike Fuller outline the proce...(0,00 zł najniższa cena z 30 dni)
262.65 zł
309.00 zł(-15%) -
Edge AI is transforming the way computers interact with the real world, allowing IoT devices to make decisions using the 99% of sensor data that was previously discarded due to cost, bandwidth, or power limitations. With techniques like embedded machine learning, developers can capture human intu...(0,00 zł najniższa cena z 30 dni)
262.65 zł
309.00 zł(-15%) -
Why is it difficult for so many companies to get digital identity right? If you're still wrestling with even simple identity problems like modern website authentication, this practical book has the answers you need. Author Phil Windley provides conceptual frameworks to help you make sense of all ...(0,00 zł najniższa cena z 30 dni)
186.15 zł
219.00 zł(-15%) -
Python was recently ranked as today's most popular programming language on the TIOBE index, thanks to its broad applicability to design and prototyping to testing, deployment, and maintenance. With this updated fourth edition, you'll learn how to get the most out of Python, whether you're a profe...(0,00 zł najniższa cena z 30 dni)
305.15 zł
359.00 zł(-15%) -
With the accelerating speed of business and the increasing dependence on technology, companies today are significantly changing the way they build in-house business solutions. Many now use low-code and no code technologies to help them deal with specific issues, but that's just the beginning. Wit...
Building Solutions with the Microsoft Power Platform Building Solutions with the Microsoft Power Platform
(0,00 zł najniższa cena z 30 dni)262.65 zł
309.00 zł(-15%) -
Companies are scrambling to integrate AI into their systems and operations. But to build truly successful solutions, you need a firm grasp of the underlying mathematics. This accessible guide walks you through the math necessary to thrive in the AI field such as focusing on real-world application...(0,00 zł najniższa cena z 30 dni)
262.65 zł
309.00 zł(-15%) -
DevOps engineers, developers, and security engineers have ever-changing roles to play in today's cloud native world. In order to build secure and resilient applications, you have to be equipped with security knowledge. Enter security as code.In this book, authors BK Sarthak Das and Virginia Chu d...(0,00 zł najniższa cena z 30 dni)
186.15 zł
219.00 zł(-15%) -
With the increasing use of AI in high-stakes domains such as medicine, law, and defense, organizations spend a lot of time and money to make ML models trustworthy. Many books on the subject offer deep dives into theories and concepts. This guide provides a practical starting point to help develop...(0,00 zł najniższa cena z 30 dni)
262.65 zł
309.00 zł(-15%) -
Why are so many companies adopting GitOps for their DevOps and cloud native strategy? This reliable framework is quickly becoming the standard method for deploying apps to Kubernetes. With this practical, developer-oriented book, DevOps engineers, developers, IT architects, and SREs will learn th...(0,00 zł najniższa cena z 30 dni)
262.65 zł
309.00 zł(-15%) -
Learn the essentials of working with Flutter and Dart to build full stack applications that meet the needs of a cloud-driven world. Together, the Flutter open source UI software development kit and the Dart programming language for client development provide a unified solution to building applica...(0,00 zł najniższa cena z 30 dni)
220.15 zł
259.00 zł(-15%)
Dzieki opcji "Druk na żądanie" do sprzedaży wracają tytuły Grupy Helion, które cieszyły sie dużym zainteresowaniem, a których nakład został wyprzedany.
Dla naszych Czytelników wydrukowaliśmy dodatkową pulę egzemplarzy w technice druku cyfrowego.
Co powinieneś wiedzieć o usłudze "Druk na żądanie":
- usługa obejmuje tylko widoczną poniżej listę tytułów, którą na bieżąco aktualizujemy;
- cena książki może być wyższa od początkowej ceny detalicznej, co jest spowodowane kosztami druku cyfrowego (wyższymi niż koszty tradycyjnego druku offsetowego). Obowiązująca cena jest zawsze podawana na stronie WWW książki;
- zawartość książki wraz z dodatkami (płyta CD, DVD) odpowiada jej pierwotnemu wydaniu i jest w pełni komplementarna;
- usługa nie obejmuje książek w kolorze.
W przypadku usługi "Druk na żądanie" termin dostarczenia przesyłki może obejmować także czas potrzebny na dodruk (do 10 dni roboczych)
Masz pytanie o konkretny tytuł? Napisz do nas: sklep[at]helion.pl.
Książka, którą chcesz zamówić pochodzi z końcówki nakładu. Oznacza to, że mogą się pojawić drobne defekty (otarcia, rysy, zagięcia).
Co powinieneś wiedzieć o usłudze "Końcówka nakładu":
- usługa obejmuje tylko książki oznaczone tagiem "Końcówka nakładu";
- wady o których mowa powyżej nie podlegają reklamacji;
Masz pytanie o konkretny tytuł? Napisz do nas: sklep[at]helion.pl.


Oceny i opinie klientów: Learning Rails 5. Rails from the Outside In J. Mark Locklear, Eric J Gruber, Barnabas Bulpett (0)
Weryfikacja opinii następuję na podstawie historii zamówień na koncie Użytkownika umieszczającego opinię. Użytkownik mógł otrzymać punkty za opublikowanie opinii uprawniające do uzyskania rabatu w ramach Programu Punktowego.