Class: Frap::CreateApp
- Inherits:
-
Object
- Object
- Frap::CreateApp
- Defined in:
- lib/frap/create_app.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
- #build ⇒ Object
-
#initialize(name) ⇒ CreateApp
constructor
A new instance of CreateApp.
Constructor Details
#initialize(name) ⇒ CreateApp
Returns a new instance of CreateApp.
5 6 7 |
# File 'lib/frap/create_app.rb', line 5 def initialize(name) @name = name.downcase end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'lib/frap/create_app.rb', line 3 def name @name end |
Instance Method Details
#build ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/frap/create_app.rb', line 9 def build setup_parent_directory create_rails_api_server create_flutter_app setup_bloc_pattern show_completed_notes end |