Class: Mode::Commands::Import
- Inherits:
-
Thor
- Object
- Thor
- Mode::Commands::Import
- Defined in:
- lib/mode/commands/import.rb
Instance Attribute Summary collapse
-
#account ⇒ Object
Returns the value of attribute account.
-
#package ⇒ Object
Returns the value of attribute package.
-
#resource_name ⇒ Object
Returns the value of attribute resource_name.
-
#table_name ⇒ Object
Returns the value of attribute table_name.
Instance Method Summary collapse
-
#initialize(account, table_name, package, resource_name) ⇒ Import
constructor
A new instance of Import.
Constructor Details
#initialize(account, table_name, package, resource_name) ⇒ Import
Returns a new instance of Import.
9 10 11 12 13 14 |
# File 'lib/mode/commands/import.rb', line 9 def initialize(account, table_name, package, resource_name) @account = account @table_name = table_name @package = package @resource_name = resource_name end |
Instance Attribute Details
#account ⇒ Object
Returns the value of attribute account.
4 5 6 |
# File 'lib/mode/commands/import.rb', line 4 def account @account end |
#package ⇒ Object
Returns the value of attribute package.
6 7 8 |
# File 'lib/mode/commands/import.rb', line 6 def package @package end |
#resource_name ⇒ Object
Returns the value of attribute resource_name.
7 8 9 |
# File 'lib/mode/commands/import.rb', line 7 def resource_name @resource_name end |
#table_name ⇒ Object
Returns the value of attribute table_name.
5 6 7 |
# File 'lib/mode/commands/import.rb', line 5 def table_name @table_name end |