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 Rouxo | |
| def initialize(xroma, ufasma, onoma) | |
| @xroma = xroma | |
| @ufasma= ufasma | |
| @onoma= onoma | |
| end | |
| def xroma | |
| @xroma | |
| 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
| rouxa = ["blouza", "panteloni", "poukamisoo", "sentoni", "fousta"] | |
| def pline(rouxo) | |
| p "plenw to #{rouxo}" | |
| p "anigw to nero" | |
| p "trivw ta rouxa" | |
| p "vazw sapouni " | |
| p "================================================================== " |
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
| master_keys = [] | |
| ["US", | |
| "CA", | |
| "AU", | |
| "DK", | |
| "NO", | |
| "SE", | |
| "FI", | |
| "JP", |
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
| irb(main):041:0> account.legal_entity.verification.status | |
| => "verified" | |
| irb(main):042:0> account.legal_entity.address.city | |
| => "Corfu" | |
| irb(main):043:0> account.legal_entity.verification.status | |
| => "verified" | |
| irb(main):044:0> account.legal_entity.address.city | |
| => "Corfu" | |
| irb(main):045:0> account.legal_entity.address.city = "Ioannina" | |
| => "Ioannina" |
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
| [12] pry(#<Grape::Endpoint>)> object.legal_entity.business_tax_id_provided | |
| => false | |
| [13] pry(#<Grape::Endpoint>)> object.legal_entity.business_tax_id = 234567896 | |
| => 234567896 | |
| [14] pry(#<Grape::Endpoint>)> object.save | |
| [15] pry(#<Grape::Endpoint>)> object.legal_entity.business_tax_id_provided | |
| => false | |
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
| yannis [1:39 PM] | |
| kanei twra Ντεπλόι | |
| georgia [1:40 PM] | |
| έκανε ντεπλόι? | |
| yannis [1:40 PM] | |
| ναι έκανε |
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
| #<Stripe::CountrySpec:0x3fe5564f8578 id=JP> JSON: { | |
| "id": "JP", | |
| "object": "country_spec", | |
| "supported_bank_account_currencies": {"jpy":["JP"]}, | |
| "supported_payment_currencies": [ | |
| "jpy" | |
| ], | |
| "supported_payment_methods": [ | |
| "card", | |
| "stripe" |
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
| # Add multiple formatters to formater | |
| RSpec.configure do |c| | |
| c.add_formatter(:documentation) | |
| c.add_formatter(:json) | |
| c.add_formatter(:progress) | |
| end | |
| json_formatter = RSpec::Core::Formatters::JsonFormatter.new($stdout) | |
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
| # Define Music: | |
| # Vocal or instrumental sounds (or both) combined in such a way as to produce beauty of form, harmony, and expression of emotion. | |
| class Music | |
| has_many :sounds | |
| has_many :notes , through: :sounds | |
| sequences_of_emotions = [] | |
| def good user |
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
| Stripe::CountrySpec | |
| "minimum": [ | |
| "external_account", | |
| "legal_entity.address.city", | |
| "legal_entity.address.line1", | |
| "legal_entity.address.postal_code", | |
| "legal_entity.address.state", | |
| "legal_entity.dob.day", | |
| "legal_entity.dob.month", | |
| "legal_entity.dob.year", |