Class: Crep::App
- Inherits:
-
Object
- Object
- Crep::App
- Defined in:
- lib/crep/model/crash_model/app.rb
Overview
App represents an App
Instance Attribute Summary collapse
-
#bundle_identifier ⇒ Object
readonly
Returns the value of attribute bundle_identifier.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, bundle_identifier) ⇒ App
constructor
A new instance of App.
Constructor Details
#initialize(name, bundle_identifier) ⇒ App
Returns a new instance of App.
8 9 10 11 |
# File 'lib/crep/model/crash_model/app.rb', line 8 def initialize(name, bundle_identifier) @name = name @bundle_identifier = bundle_identifier end |
Instance Attribute Details
#bundle_identifier ⇒ Object (readonly)
Returns the value of attribute bundle_identifier.
6 7 8 |
# File 'lib/crep/model/crash_model/app.rb', line 6 def bundle_identifier @bundle_identifier end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/crep/model/crash_model/app.rb', line 6 def name @name end |