Module: Rents
- Defined in:
- lib/rents.rb,
lib/rents/status.rb,
lib/rents/version.rb,
lib/rents/connection.rb,
lib/rents/transaction.rb
Defined Under Namespace
Classes: Connection, Status, Transaction
Constant Summary
collapse
- MAJOR =
0
- MINOR =
1
- PATCH =
8
- VERSION =
"#{MAJOR}.#{MINOR}.#{PATCH}"
- @@app_id =
nil
- @@secret_key =
nil
Class Method Summary
collapse
Class Method Details
.app_id ⇒ Object
20
21
22
|
# File 'lib/rents.rb', line 20
def self.app_id
@@app_id
end
|
.app_id=(app_id) ⇒ Object
16
17
18
|
# File 'lib/rents.rb', line 16
def self.app_id=(app_id)
@@app_id = app_id
end
|
.secret_key ⇒ Object
28
29
30
|
# File 'lib/rents.rb', line 28
def self.secret_key
@@secret_key
end
|
.secret_key=(secret_key) ⇒ Object
24
25
26
|
# File 'lib/rents.rb', line 24
def self.secret_key=(secret_key)
@@secret_key = secret_key
end
|