Class: Rnote::App
- Inherits:
-
Object
- Object
- Rnote::App
- Defined in:
- lib/rnote.rb
Instance Attribute Summary collapse
-
#auth ⇒ Object
readonly
Returns the value of attribute auth.
-
#persister ⇒ Object
readonly
Returns the value of attribute persister.
Instance Method Summary collapse
- #client ⇒ Object
-
#initialize ⇒ App
constructor
A new instance of App.
Constructor Details
#initialize ⇒ App
Returns a new instance of App.
42 43 44 45 |
# File 'lib/rnote.rb', line 42 def initialize @persister = Persister.new @auth = Auth.new(@persister) end |
Instance Attribute Details
#auth ⇒ Object (readonly)
Returns the value of attribute auth.
40 41 42 |
# File 'lib/rnote.rb', line 40 def auth @auth end |
#persister ⇒ Object (readonly)
Returns the value of attribute persister.
40 41 42 |
# File 'lib/rnote.rb', line 40 def persister @persister end |
Instance Method Details
#client ⇒ Object
47 48 49 |
# File 'lib/rnote.rb', line 47 def client auth.client end |