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 MemberRegistered | |
| attr_reader :id, :name, :email, :registered_at | |
| def initialize(id, name, email, registered_at) | |
| @id = id | |
| @name = name | |
| @email = email | |
| @registered_at = registered_at | |
| 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
| require "time" | |
| class Timestamp | |
| attr_reader :time | |
| private_class_method :new | |
| def initialize(time) | |
| fail TypeError.new("String required") unless time.is_a?(String) | |
| @time = Time.parse(time) |
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
| require "securerandom" | |
| class OrderId | |
| attr_reader :id | |
| def initialize(id) | |
| fail TypeError.new("String required") unless id.is_a?(String) | |
| @id = id | |
| 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
| /* ============================================================= | |
| * bootstrap-typeahead.js v2.2.2 | |
| * http://twitter.github.com/bootstrap/javascript.html#typeahead | |
| * ============================================================= | |
| * Copyright 2012 Twitter, Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * |
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
| [11:56:59] daniel:platform git:(master*) $ rvm reinstall --trace ree | |
| --trace ree | |
| rvm 1.10.3 by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> [https://rvm.beginrescueend.com/] | |
| +__rvm_parse_args:750> [[ -n 4.3.11 ]] | |
| +__rvm_parse_args:782> [[ -z reinstall ]] | |
| +__rvm_parse_args:784> [[ 0 -eq 1 || -n '' ]] | |
| +__rvm_parse_args:20> [[ -n ree ]] | |
| +__rvm_parse_args:22> rvm_token=ree |