Movatterモバイル変換


[0]ホーム

URL:


Packt
Search iconClose icon
Search icon CANCEL
Subscription
0
Cart icon
Your Cart(0 item)
Close icon
You have no products in your basket yet
Save more on your purchases!discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Profile icon
Account
Close icon

Change country

Modal Close icon
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timerSALE ENDS IN
0Days
:
00Hours
:
00Minutes
:
00Seconds
Home> Programming> Programming Language> The Ruby Workshop
The Ruby Workshop
The Ruby Workshop

The Ruby Workshop: Develop powerful applications by writing clean, expressive code with Ruby and Ruby on Rails

Arrow left icon
Profile Icon Akshat PaulProfile Icon PhilipsProfile Icon Dániel SzabóProfile Icon Wallace
Arrow right icon
$26.98$29.99
Full star iconFull star iconFull star iconHalf star iconEmpty star icon3.3(3 Ratings)
eBookOct 2019544 pages1st Edition
eBook
$26.98 $29.99
Paperback
$43.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Akshat PaulProfile Icon PhilipsProfile Icon Dániel SzabóProfile Icon Wallace
Arrow right icon
$26.98$29.99
Full star iconFull star iconFull star iconHalf star iconEmpty star icon3.3(3 Ratings)
eBookOct 2019544 pages1st Edition
eBook
$26.98 $29.99
Paperback
$43.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$26.98 $29.99
Paperback
$43.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature iconInstant access to your Digital eBook purchase
Product feature icon Download this book inEPUB andPDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature iconDRM FREE - Read whenever, wherever and however you want
Product feature iconAI Assistant (beta) to help accelerate your learning
OR

Contact Details

Modal Close icon
Payment Processing...
tickCompleted

Billing Address

Table of content iconView table of contentsPreview book icon Preview Book

The Ruby Workshop

2. Ruby Data Types and Operations

Overview

By the end of this chapter, you will be able to perform operations on arrays and hashes; use Ruby methods on arrays and hashes; create your own Ruby method and write a Ruby program for rolling dice.

Introduction

In the previous chapter, we studied variables, constants, strings, and various data types. We performed various operations on strings and numbers. We were also introduced to theInteractive Ruby Shell (IRB), which makes coding in Ruby easier.

This chapter is dedicated to bringing you up to speed with arrays, hashes, and methods in Ruby. You could say that these are among the most fundamental topics. We will take a closer look at the different ways of creating arrays and hashes, as there are a wide variety of options. We'll also look at methods, which is another essential concept in Ruby and study certain rules about arguments that you should be aware of while creating methods. After that, you have the fundamentals to become a fine Ruby developer.

Arrays

An array is a data structure that contains a list of values calledelements. Arrays can be an ordered, integer-indexed collection of any object. Ruby arrays can have objects such asInteger,String,Symbol,Fixnum, andHash, or even other arrays, as elements. In many languages, arrays are rigid in terms of their size. In Ruby, however, an array increases its size as elements are added.

When we say ordered, we mean that the array will keep track of how the elements are inserted or removed from it. While fetching the data from an array, we can retrieve the values directly based on the position of the element. This will become clearer as we dive into the depths of data extraction and manipulation using arrays.

Integer-indexed means that each element in the array is linked to an index. In Ruby, we can fetch the data from an array based on the index irrespective of the value at that location. Like most other languages, array indexes in Ruby start from zero.

Ruby is very...

Hashes

Hashes are collections that save data as key-value pairs. This means that a key will identify every value that we want to save. This also means that keys within a hash have to be unique, otherwise we will overwrite the old values.

In terms of performance, hashes have a lookup time ofO(1), which means that finding a value in a hash by its key will not be dependent on the size of the hash, nor on the order in which the hash was created.O(1) means a constant lookup time for the operation performed on a hash, irrespective of the data size. This differs from arrays, where finding a value in anO(n) operation means that the time taken to find an element in an array will be dependent on the length of an array. This means that we are looking for an element and we are going to find it on thenth location; then does not denote the size of the array, but the location of the element.

An empty hash can be created as follows:

my_hash = {}my_hash = Hash.new

The output will...

Ruby Methods

A method in Ruby is a set of expressions that return a value. These are similar to functions in other programming languages. Methods are defined using thedef keyword, followed by the method name and then by optional parameters. The method body is enclosed between the preceding definition and theend keyword at the bottom:

def my_method##method bodyend

By convention, method names should begin with a lowercase letter, otherwise Ruby might consider it to be a constant while parsing. Also, names that have multiple words should be separated by an underscore. As in the preceding examples, the method name –my_method, has an underscore between two words.

Passing Arguments to a Method

We can pass arguments to the method on which a method has to operate. There is no limit in terms of the number of parameters that we can pass to a method. The following is a simple example of how we can create our own methods in Ruby:

def add_two_numbers a, b  ...

Summary

In this chapter, we took a journey into data types and some very common operations that can be performed on them. We started out with array operations and took a closer look at adding, removing, and iterating over this data type. Then, we moved on to the hash data type and discovered the hidden magic that powers most of the web and desktop applications written in Ruby. Hashes are a very common way to store and manipulate data inside web applications. We added, removed, and iterated over hashes, and then performed some symbol-based sorting with nested hashes. Our final destination in this chapter was the methods and functions that allow us to create either functional or procedural applications in Ruby. Functions and methods in themselves are not of much use, so we imbued them with arguments. We also took a closer look at how optional and default arguments are handled in case multiple arguments are passed. This constituted a very important chapter, namely, how the extra arguments...

Left arrow icon

Page1 of 6

Right arrow icon

Key benefits

  • Learn the fundamentals of Ruby object-oriented programming (OOP)
  • Use the Ruby on Rails framework to build interactive web applications
  • Discover how to quickly build complex programs with fewer lines of code

Description

The beauty of Ruby is its readability and expressiveness. Ruby hides away a lot of the complexity of programming, allowing you to work quickly and 'do more' with fewer lines of code. This makes it a great programming language for beginners, but learning any new skill can still be a daunting task. If you want to learn to code using Ruby, but don't know where to start, The Ruby Workshop will help you cut through the noise and make sense of this fun, flexible language.You'll start by writing and running simple code snippets and Ruby source code files. After learning about strings, numbers, and booleans, you'll see how to store collections of objects with arrays and hashes. You'll then learn how to control the flow of a Ruby program using boolean logic.The book then delves into OOP and explains inheritance, encapsulation, and polymorphism. Gradually, you'll build your knowledge of advanced concepts by learning how to interact with external APIs, before finally exploring the most popular Ruby framework ? Ruby on Rails ? and using it for web development.Throughout this book, you'll work on a series of realistic projects, including simple games, a voting application, and an online blog. By the end of this Ruby book, you'll have the knowledge, skills and confidence to creatively tackle your own ambitious projects with Ruby.

Who is this book for?

The Ruby Workshop is designed for anyone who is new to Ruby and wants a practical introduction to the language. Whether you're completely new to programming, or have experience in another language and want to broaden your skillset, this book will quickly get you up and running.

What you will learn

  • Master the syntax and features of Ruby to build useful applications
  • Use common design patterns to simplify code and improve efficiency
  • Understand how to implement object-oriented programming with Ruby
  • Explore ways to fetch, process, and output data
  • Work with public APIs and create reusable RubyGems
  • Debug code to troubleshoot application behavior
  • Create interactive web applications with Ruby on Rails

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date :Oct 31, 2019
Length:544 pages
Edition :1st
Language :English
ISBN-13 :9781838648879
Category :
Languages :

What do you get with eBook?

Product feature iconInstant access to your Digital eBook purchase
Product feature icon Download this book inEPUB andPDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature iconDRM FREE - Read whenever, wherever and however you want
Product feature iconAI Assistant (beta) to help accelerate your learning
OR

Contact Details

Modal Close icon
Payment Processing...
tickCompleted

Billing Address

Product Details

Publication date :Oct 31, 2019
Length:544 pages
Edition :1st
Language :English
ISBN-13 :9781838648879
Category :
Languages :
Concepts :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99billed monthly
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconSimple pricing, no contract
$199.99billed annually
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconChoose a DRM-free eBook or Video every month to keep
Feature tick iconPLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick iconExclusive print discounts
$279.99billed in 18 months
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconChoose a DRM-free eBook or Video every month to keep
Feature tick iconPLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick iconExclusive print discounts

Frequently bought together


The Python Workshop
The Python Workshop
Read more
Nov 2019608 pages
Full star icon4.3 (36)
eBook
eBook
$44.98$49.99
$62.99
The Ruby Workshop
The Ruby Workshop
Read more
Oct 2019544 pages
Full star icon3.3 (3)
eBook
eBook
$26.98$29.99
$43.99
The PHP Workshop
The PHP Workshop
Read more
Oct 2019604 pages
Full star icon4 (4)
eBook
eBook
$23.99$26.99
$32.99
Stars icon
Total$139.97
The Python Workshop
$62.99
The Ruby Workshop
$43.99
The PHP Workshop
$32.99
Total$139.97Stars icon

Table of Contents

12 Chapters
1. Writing and Running Ruby ProgramsChevron down iconChevron up icon
1. Writing and Running Ruby Programs
Introduction
Interactive Ruby Shell (IRB)
Standard Data Types
Summary
2. Ruby Data Types and OperationsChevron down iconChevron up icon
2. Ruby Data Types and Operations
Introduction
Arrays
Hashes
Ruby Methods
Summary
3. Program FlowChevron down iconChevron up icon
3. Program Flow
Introduction
Boolean Operators
Comparison
The Ternary Operator
Loops
Summary
Ruby MethodsChevron down iconChevron up icon
Ruby Methods
Introduction
The Basic Structure of the Ruby Method
Return Values
The Splat Operator
Duck Typing
Sending a Message
Summary
5. Object-Oriented programming with RubyChevron down iconChevron up icon
5. Object-Oriented programming with Ruby
Introduction
Classes and Objects
Getters and Setters
Inheritance
Encapsulation
Summary
6. Modules and MixinsChevron down iconChevron up icon
6. Modules and Mixins
Introduction
Including Modules
extend
Module Methods
Namespaces
prepend
Summary
7. Introduction to Ruby GemsChevron down iconChevron up icon
7. Introduction to Ruby Gems
Introduction
RubyGems and the require Method
Using Gems in Your Code
File I/O
Handling CSV Data
Writing Data
Service Objects
Summary
8. Debugging with RubyChevron down iconChevron up icon
8. Debugging with Ruby
Introduction
Logging and Debugging
Basic Logging
Debugging
Summary
9. Ruby Beyond the Basics lChevron down iconChevron up icon
9. Ruby Beyond the Basics l
Introduction
Metaprogramming
Summary
10. Ruby Beyond the Basics llChevron down iconChevron up icon
10. Ruby Beyond the Basics ll
Introduction
Metaprogramming – A Deep Dive
HTTP Requests
Creating a Ruby Gem
Summary
11. Introduction to Ruby on Rails lChevron down iconChevron up icon
11. Introduction to Ruby on Rails l
Introduction
Generating Our First Rails App
Anatomy of a Rails application
Models, Migrations, and Databases
The Rails Console
Summary
12. Introduction to Ruby on Rails llChevron down iconChevron up icon
12. Introduction to Ruby on Rails ll
Introduction
Associations
Validations
Summary

Recommendations for you

Left arrow icon
Debunking C++ Myths
Debunking C++ Myths
Read more
Dec 2024226 pages
Full star icon5 (1)
eBook
eBook
$27.99$31.99
$39.99
Go Recipes for Developers
Go Recipes for Developers
Read more
Dec 2024350 pages
eBook
eBook
$27.99$31.99
$39.99
50 Algorithms Every Programmer Should Know
50 Algorithms Every Programmer Should Know
Read more
Sep 2023538 pages
Full star icon4.5 (68)
eBook
eBook
$35.98$39.99
$49.99
$49.99
Asynchronous Programming with C++
Asynchronous Programming with C++
Read more
Nov 2024424 pages
Full star icon5 (1)
eBook
eBook
$29.99$33.99
$41.99
Modern CMake for C++
Modern CMake for C++
Read more
May 2024504 pages
Full star icon4.7 (12)
eBook
eBook
$35.98$39.99
$49.99
Learn Python Programming
Learn Python Programming
Read more
Nov 2024616 pages
Full star icon5 (1)
eBook
eBook
$31.99$35.99
$39.99
Learn to Code with Rust
Learn to Code with Rust
Read more
Nov 202457hrs 40mins
Video
Video
$74.99
Modern Python Cookbook
Modern Python Cookbook
Read more
Jul 2024818 pages
Full star icon4.9 (21)
eBook
eBook
$38.99$43.99
$54.99
Right arrow icon

Customer reviews

Rating distribution
Full star iconFull star iconFull star iconHalf star iconEmpty star icon3.3
(3 Ratings)
5 star33.3%
4 star33.3%
3 star0%
2 star0%
1 star33.3%
Dave PatrickSep 11, 2020
Full star iconFull star iconFull star iconFull star iconFull star icon5
One of the best books to start your programming career as it has lot of examples and learning with examples gives confidence. The writers have explained enough theory and in a simple manner. There are also activities that further helps in implementing the concept you have studied. Overall it's an amazing book for those starting with a programming career and as advised by my teachers Ruby is wonderful language to learn and understand programming. I highly recommend this book for new developers. My next ruby book would be well-grounded Rubyist same teachers have who recommended this books have suggested it as next step.
Amazon Verified reviewAmazon
KodzoOct 22, 2024
Full star iconFull star iconFull star iconFull star iconEmpty star icon4
Great content
Subscriber reviewPackt
Jerry P. BrookJan 07, 2020
Full star iconEmpty star iconEmpty star iconEmpty star iconEmpty star icon1
I was very disappointed with this book.What I expected from a workshop, was explanations with examples and exercises.That is, explanations of the various entities of the Ruby programming language, such as the many data types; numbers, strings, collections, et cetera. What they are, and why you would use them.With examples of how to use them, and maybe even how not to use them.Exercises allowing the reader to test out that knowledge, and to become comfortable with the ways in which each data type acts, and what you get in return. Hands on testing of various scenarios, some good and some not so good, in order to build the readers understanding.I would have really appreciated the gotchas, that is, the ways that some of these items don’t work, even though one might have expected something different. Ruby is supposed to be the language of “least surprise”, however, there still are some.I haven’t seen the gotchas pointed out in any other books, and so I wasn’t expecting them here either. It’s always easier to show all the things that do work, and conveniently avoid the things that don’t. But that just causes frustration for the new learner as they think that they are doing something incorrectly, when that isn’t the case.So, what do you get?Well, the book begins in the middle of the language, expecting the reader to have a full understanding of the core concepts. From their they only provide brief descriptions of the concepts that they cover, and they follow the age old “type this and get that”.It is training not teaching, just robotic-ally do this and you will see this in return. Why do we get that? Don’t ask. How is it working? Don’t ask. What if we typed something else? Don’t bother.This neither a new, or interactive, approach to learning.To which I say don’t bother wasting your money on this book.
Amazon Verified reviewAmazon

People who bought this also bought

Left arrow icon
50 Algorithms Every Programmer Should Know
50 Algorithms Every Programmer Should Know
Read more
Sep 2023538 pages
Full star icon4.5 (68)
eBook
eBook
$35.98$39.99
$49.99
$49.99
Event-Driven Architecture in Golang
Event-Driven Architecture in Golang
Read more
Nov 2022384 pages
Full star icon4.9 (11)
eBook
eBook
$35.98$39.99
$49.99
The Python Workshop Second Edition
The Python Workshop Second Edition
Read more
Nov 2022600 pages
Full star icon4.6 (22)
eBook
eBook
$36.99$41.99
$51.99
Template Metaprogramming with C++
Template Metaprogramming with C++
Read more
Aug 2022480 pages
Full star icon4.6 (14)
eBook
eBook
$33.99$37.99
$46.99
Domain-Driven Design with Golang
Domain-Driven Design with Golang
Read more
Dec 2022204 pages
Full star icon4.4 (19)
eBook
eBook
$31.99$35.99
$44.99
Right arrow icon

About the 4 authors

Left arrow icon
Profile icon Akshat Paul
Akshat Paul
LinkedIn iconGithub icon
Akshat Paul is a programmer and is working as a lead developer at a Management Consulting firm. He has extensive experience of mobile application development and has delivered many enterprise and consumer applications. In other avatars, Akshat frequently speaks and evangelizes at conferences and meetup groups on various technologies; this way he plays his part in giving back to the community. He has given talks at RubyConfIndia and #inspect-RubyMotion Conference. He also has a strong belief in Agile methodologies for creating world-class software, and is a Certified Scrum Master (CSM).
Read more
See other products by Akshat Paul
Profile icon Philips
Philips
LinkedIn iconGithub icon
Peter Philips has been a Ruby on Rails developer since 2006. Since then he has evolved into a systems architect, CTO, and entrepreneur co-founding a silicon valley design agency called PlanetIO and the enterprise employee recognition platform, RecognizeApp. His specialty is systems architecture and clean, scalable design patterns for the enterprise. Peter is passionate about using technology to help the world and has also founded the organization, TechForProgress, to report on how technology can be used to this end. Peter is an avid rock climber and also an amateur electronics engineer prototyping all kinds of projects from led origami flowers to wireless speakers.
Read more
See other products by Philips
Profile icon Dániel Szabó
Dániel Szabó
LinkedIn iconGithub icon
Daniel Erno Szabo is a 28-year-old IT geek. He is currently working as a DevOps engineer for an American company in Hungary. His main profile is automation and custom solutions based on different languages covering Windows and Linux. His favorite language is Python, but he is also fluent in Ruby, PowerShell, and C#. He loves learning, teaching, and sharing his knowledge with other people. In his free time, he is a YouTuber and a ferret owner.
Read more
See other products by Dániel Szabó
Profile icon Wallace
Wallace
Cheyne Wallace is a full stack developer with over a decade of industry experience. He is currently working with Ruby, Rails, GoLang, JavaScript, AngularJS, D3JS, SASS, AWS EC2/RDS, Heroku, Ubuntu, Postgres, API design and cloud service architecture. Previously a Microsoft developer working with C#, PowerShell, SSIS and ASP MVC for the enterprise world, he worked in the financial services and banking sectors around Sydney and London for many years until eventually jumping ship and joining a startup in 2012. He is the creator of the encrypted note application NoteShred, the photography analytics web app The Lightroom Dashboard, and has been written about in VentureBeat and The Next Web.
Read more
See other products by Wallace
Right arrow icon
Getfree access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook?Chevron down iconChevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website?Chevron down iconChevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook?Chevron down iconChevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support?Chevron down iconChevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks?Chevron down iconChevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook?Chevron down iconChevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.


[8]ページ先頭

©2009-2025 Movatter.jp