This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Alimentos e Bebidas | |
| Arte e Antiguidades | |
| Artigos Religiosos | |
| Assinaturas e Revistas | |
| Automóveis e Veículos | |
| Bebês e Cia | |
| Blu-Ray | |
| Brindes / Materiais Promocionais | |
| Brinquedos e Games | |
| Casa e Decoração |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ramo_de_atividade_1 | |
| id: 1 | |
| nome: Alimentos e Bebidas | |
| ramo_de_atividade_2 | |
| id: 2 | |
| nome: Arte e Antiguidades | |
| ramo_de_atividade_3 | |
| id: 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # encoding: utf-8 | |
| # ramos_de_atividade.rb | |
| nomes = File.readlines("ramos_de_atividade.txt") | |
| File.open("ramos_de_atividade.yaml", "w") do |f| | |
| nomes.each_with_index do |nome, i| | |
| f.puts "ramo_de_atividade_#{i+1}" | |
| f.puts " id: #{i+1}" | |
| f.puts " nome: #{nome}\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # encoding: utf-8 | |
| # listar_contatos.rb | |
| raise ArgumentError, "=> Quantidade de argumentos incorreta. Exemplo de uso: ruby listar_contatos.rb root minhasenha" if ARGV.size != 2 | |
| mysql_user, mysql_pass = ARGV | |
| def criar_array(resultado) | |
| resultado.split("\n").drop(1) | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Saudacao | |
| def initialize(name) | |
| @name = name | |
| end | |
| def saudar | |
| "Bem vindo, #{@name}!" | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| greet { puts "Hello" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| x = 10 | |
| 5.times do |x| | |
| puts "x inside the block: #{x}" | |
| end | |
| puts "x outside the block: #{x}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Dog | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Dog | |
| def initialize(name, breed) | |
| @name, @breed = name, breed | |
| end | |
| def bark | |
| puts "#{@name}: Au, au, au!" | |
| end | |
| def sleep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Dog | |
| def initialize(name, breed) | |
| @name, @breed = name, breed | |
| end | |
| def bark | |
| puts "#{@name}: Au, au, au!" | |
| end | |
| def sleep |
OlderNewer