Class: Mode::Commands::Import

Inherits:
Thor
  • Object
show all
Defined in:
lib/mode/commands/import.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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(, table_name, package, resource_name)
  @account = 
  @table_name = table_name
  @package = package
  @resource_name = resource_name
end

Instance Attribute Details

#accountObject

Returns the value of attribute account.



4
5
6
# File 'lib/mode/commands/import.rb', line 4

def 
  @account
end

#packageObject

Returns the value of attribute package.



6
7
8
# File 'lib/mode/commands/import.rb', line 6

def package
  @package
end

#resource_nameObject

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_nameObject

Returns the value of attribute table_name.



5
6
7
# File 'lib/mode/commands/import.rb', line 5

def table_name
  @table_name
end