Class: TakuhaiStatus::JapanPost

Inherits:
Object
  • Object
show all
Defined in:
lib/takuhai_status/japanpost.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key) ⇒ JapanPost

Returns a new instance of JapanPost.

Raises:



9
10
11
12
13
# File 'lib/takuhai_status/japanpost.rb', line 9

def initialize(key)
  @key = key.strip
  raise NotMyKey.new('invalid key format') unless @key =~ /\A[a-zA-Z0-9]+\Z/
  @time, @state = check
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



6
7
8
# File 'lib/takuhai_status/japanpost.rb', line 6

def key
  @key
end

#stateObject (readonly)

Returns the value of attribute state.



6
7
8
# File 'lib/takuhai_status/japanpost.rb', line 6

def state
  @state
end

#timeObject (readonly)

Returns the value of attribute time.



6
7
8
# File 'lib/takuhai_status/japanpost.rb', line 6

def time
  @time
end

Instance Method Details

#finish?Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/takuhai_status/japanpost.rb', line 15

def finish?
  return !!(@state =~ /差出人に返送済み|お届け済み|コンビニエンスストアに引渡|窓口でお渡し|転送|配達局から出発/)
end