Class: TakuhaiStatus::FedEx

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key) ⇒ FedEx

Returns a new instance of FedEx.



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

def initialize(key)
	@key = key
	@time, @state = check
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



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

def key
  @key
end

#stateObject (readonly)

Returns the value of attribute state.



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

def state
  @state
end

#timeObject (readonly)

Returns the value of attribute time.



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

def time
  @time
end

Instance Method Details

#finish?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/takuhai_status/fedex.rb', line 14

def finish?
	return !!(@state =~ /認可済み業者に委託|配達完了|貨物情報はFedExに送信されました/)
end