SlideShare a Scribd company logo
Ruby Workshop 
@alexruperez
Operations 
2 + 6 
3 * 4 
4 - 9 
10 / 5 
5 % 2
Strings 
"String with whites" 
'String' 
:symbol 
"String with whites".reverse 
"String with whites".length 
'Composite' + ' ' + 'String' 
'String' * 5
Basics 
my_array = ['Element1', 'Element2', 'Element3'] 
my_dict = {name: 'Alex', surname: 'Rupérez'} 
puts "my_array contains #{my_array.count} elements" 
puts "my_array is empty" if my_array.empty? 
puts "My name is #{my_dict[:name]}" unless 
!my_dict[:name] 
first_element = my_array.empty? ? 'Unknown' : 
my_array.first 
my_dict[:surname] ||= "Smith"
Variables 
local 
$global 
@instance 
@@class
Methods 
def sum(param1, param2) 
param1 + param2 
end 
def my_method param 
if param 
return param 
else 
return nil 
end 
end
Classes class MyClass 
def initialize(prop1, 
prop2) 
@prop1 = prop1 
@prop2 = prop2 
end 
def sum 
@prop1 + @prop2 
end 
end 
obj = MyClass.new(5, 15) 
puts obj.sum
Error Handling 
begin 
puts 1/0 
rescue => my_error 
puts my_error 
end 
value = 1/0 rescue nil
Sinatra + Unicorn + Heroku
Gemfile 
source 
'https://rubygems.org' 
gem 'unicorn' 
gem 'sinatra'
web.rb 
require 'sinatra' 
set :bind, 
'0.0.0.0' 
get '/' do 
"Hello world!" 
end
config.ru 
require './web' 
run 
Sinatra::Application
unicorn.rb 
worker_processe 
s 3 
timeout 15 
preload_app true
Procfile 
web: bundle exec unicorn -p $PORT -c 
./unicorn.rb
Thanks! 
@alexruperez

More Related Content

PDF
Array vs set in JavaScript
PDF
Python programming : List and tuples
PPTX
Python programming -Tuple and Set Data type
PDF
1. python
PPT
PPT
PHP - Introduction to String Handling
PDF
Python Workshop Part 2. LUG Maniapl
PDF
Elixir pattern matching and recursion
Array vs set in JavaScript
Python programming : List and tuples
Python programming -Tuple and Set Data type
1. python
PHP - Introduction to String Handling
Python Workshop Part 2. LUG Maniapl
Elixir pattern matching and recursion

What's hot (20)

PDF
Implode & Explode in PHP
PDF
Python Variable Types, List, Tuple, Dictionary
PPTX
Dictionary in python
PPTX
More About Strings
PDF
Python dictionary : past, present, future
PDF
Try Redis - interactive Tutorial
PDF
Class 7a: Functions
PDF
from Ruby to Objective-C
PDF
List , tuples, dictionaries and regular expressions in python
PPTX
An Introduction to Tuple List Dictionary in Python
PPTX
Learn python - for beginners - part-2
PPTX
Macrobrew: Clojure macros distilled
PDF
A Gentle Introduction to Functional Paradigms in Ruby
PPTX
Useful JMeter functions for scripting
PDF
Java 8 - project lambda
PPT
Unit vii wp ppt
PDF
iRODS Rule Language Cheat Sheet
PDF
WordCamp Portland 2018: PHP for WordPress
PPTX
Python Workshop
PDF
Frege is a Haskell for the JVM
Implode & Explode in PHP
Python Variable Types, List, Tuple, Dictionary
Dictionary in python
More About Strings
Python dictionary : past, present, future
Try Redis - interactive Tutorial
Class 7a: Functions
from Ruby to Objective-C
List , tuples, dictionaries and regular expressions in python
An Introduction to Tuple List Dictionary in Python
Learn python - for beginners - part-2
Macrobrew: Clojure macros distilled
A Gentle Introduction to Functional Paradigms in Ruby
Useful JMeter functions for scripting
Java 8 - project lambda
Unit vii wp ppt
iRODS Rule Language Cheat Sheet
WordCamp Portland 2018: PHP for WordPress
Python Workshop
Frege is a Haskell for the JVM
Ad

Viewers also liked (20)

PDF
Magister of Entrepreneurship - Social Development
PDF
最近の身の回りの電力事情
PDF
Designing for the Internet of Things : models and principles for augmented pr...
PDF
Building Web Interface On Rails
PDF
Gigigo Rails Workshop
PDF
PDF
JavaScript Library Overview
PDF
RESTful Rails2
PDF
はじめてのAmazon Web Services
PDF
Personal Branding & Culture - AIESEC - University of Antwerp - Sirous Kavehercy
KEY
Taxonomy of the Lean Startup Anti-Pivot
PDF
Google Think Real Estate Brasil 2011
PPT
Ux Week the Future of UX is Play: The 4 Keys to Fun, Emotion, and User Engage...
PDF
BJ Fogg - The New Rules of Persuasion - Brussels 2009
PPTX
Rechercher un emploi
PDF
Acessibilidade na Web: Principais problemas e Soluções - FISL14
PDF
Gigigo Keynote - Geofences & iBeacons
PPT
Hrblockresponseprocess
PDF
Gigigo Workshop - iOS Extensions
PDF
Gigigo Workshop - Create an iOS Framework, document it and not die trying
Magister of Entrepreneurship - Social Development
最近の身の回りの電力事情
Designing for the Internet of Things : models and principles for augmented pr...
Building Web Interface On Rails
Gigigo Rails Workshop
JavaScript Library Overview
RESTful Rails2
はじめてのAmazon Web Services
Personal Branding & Culture - AIESEC - University of Antwerp - Sirous Kavehercy
Taxonomy of the Lean Startup Anti-Pivot
Google Think Real Estate Brasil 2011
Ux Week the Future of UX is Play: The 4 Keys to Fun, Emotion, and User Engage...
BJ Fogg - The New Rules of Persuasion - Brussels 2009
Rechercher un emploi
Acessibilidade na Web: Principais problemas e Soluções - FISL14
Gigigo Keynote - Geofences & iBeacons
Hrblockresponseprocess
Gigigo Workshop - iOS Extensions
Gigigo Workshop - Create an iOS Framework, document it and not die trying
Ad

Similar to Gigigo Ruby Workshop (20)

PDF
Ruby Programming Language
PDF
A linguagem de programação Ruby - Robson "Duda" Sejan Soares Dornelles
PDF
Learning Perl 6 (NPW 2007)
PDF
FITC CoffeeScript 101
PDF
My First Ruby
PDF
Learning Perl 6
PDF
Powerful JavaScript Tips and Best Practices
PDF
Elm: give it a try
PDF
Selfish presentation - ruby internals
PDF
JAVASCRIPT OBJECTS.pdf
PDF
Ruby 程式語言入門導覽
PDF
Attributes Unwrapped: Lessons under the surface of active record
DOCX
findextensions(2).py#!usrlocalbinpython3import sysim.docx
PDF
Scripting3
PDF
Ruby 入門 第一次就上手
PPTX
Most common mistakes of workshops applicants
PDF
Ruby Gotchas
PDF
Getting to know Arel
PDF
Perl6 Regexen: Reduce the line noise in your code.
PDF
An introduction to property-based testing
Ruby Programming Language
A linguagem de programação Ruby - Robson "Duda" Sejan Soares Dornelles
Learning Perl 6 (NPW 2007)
FITC CoffeeScript 101
My First Ruby
Learning Perl 6
Powerful JavaScript Tips and Best Practices
Elm: give it a try
Selfish presentation - ruby internals
JAVASCRIPT OBJECTS.pdf
Ruby 程式語言入門導覽
Attributes Unwrapped: Lessons under the surface of active record
findextensions(2).py#!usrlocalbinpython3import sysim.docx
Scripting3
Ruby 入門 第一次就上手
Most common mistakes of workshops applicants
Ruby Gotchas
Getting to know Arel
Perl6 Regexen: Reduce the line noise in your code.
An introduction to property-based testing

Recently uploaded (20)

PDF
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
PDF
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
PPTX
Fundamentals of Mechanical Engineering.pptx
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPTX
Artificial Intelligence
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PDF
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
PDF
Well-logging-methods_new................
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPT
introduction to datamining and warehousing
PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
Fundamentals of safety and accident prevention -final (1).pptx
DOCX
573137875-Attendance-Management-System-original
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
Fundamentals of Mechanical Engineering.pptx
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
Foundation to blockchain - A guide to Blockchain Tech
Artificial Intelligence
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
Well-logging-methods_new................
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
introduction to datamining and warehousing
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Fundamentals of safety and accident prevention -final (1).pptx
573137875-Attendance-Management-System-original
Automation-in-Manufacturing-Chapter-Introduction.pdf
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Embodied AI: Ushering in the Next Era of Intelligent Systems

Gigigo Ruby Workshop