class Ondotori::WebAPI::Api::URI
Constants
- URI_ABROAD
- URI_JAPAN
Public Class Methods
new(id)
click to toggle source
# File lib/ondotori/webapi/api/uri.rb, line 10 def initialize(id) @id = id end
Public Instance Methods
uri()
click to toggle source
# File lib/ondotori/webapi/api/uri.rb, line 14 def uri return URI_ABROAD if @id.match?(/^td.*/) || @id.match?(/^rd.*/) URI_JAPAN end