Class: Imap::Backup::CLI::Migrate

Inherits:
Thor
  • Object
show all
Includes:
Helpers, Thor::Actions
Defined in:
lib/imap/backup/cli/migrate.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Helpers

#account, included, #load_config, #options, #requested_accounts

Constructor Details

#initialize(source_email, destination_email, config: nil, destination_delimiter: "/", destination_prefix: "", reset: false, source_delimiter: "/", source_prefix: "") ⇒ Migrate

Returns a new instance of Migrate.



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/imap/backup/cli/migrate.rb', line 20

def initialize(
  source_email,
  destination_email,
  config: nil,
  destination_delimiter: "/",
  destination_prefix: "",
  reset: false,
  source_delimiter: "/",
  source_prefix: ""
)
  super([])
  @destination_delimiter = destination_delimiter
  @destination_email = destination_email
  @destination_prefix = destination_prefix
  @config_path = config
  @reset = reset
  @source_delimiter = source_delimiter
  @source_email = source_email
  @source_prefix = source_prefix
end

Instance Attribute Details

#config_pathObject (readonly)

Returns the value of attribute config_path.



14
15
16
# File 'lib/imap/backup/cli/migrate.rb', line 14

def config_path
  @config_path
end

#destination_delimiterObject (readonly)

Returns the value of attribute destination_delimiter.



11
12
13
# File 'lib/imap/backup/cli/migrate.rb', line 11

def destination_delimiter
  @destination_delimiter
end

#destination_emailObject (readonly)

Returns the value of attribute destination_email.



12
13
14
# File 'lib/imap/backup/cli/migrate.rb', line 12

def destination_email
  @destination_email
end

#destination_prefixObject (readonly)

Returns the value of attribute destination_prefix.



13
14
15
# File 'lib/imap/backup/cli/migrate.rb', line 13

def destination_prefix
  @destination_prefix
end

#resetObject (readonly)

Returns the value of attribute reset.



15
16
17
# File 'lib/imap/backup/cli/migrate.rb', line 15

def reset
  @reset
end

#source_delimiterObject (readonly)

Returns the value of attribute source_delimiter.



16
17
18
# File 'lib/imap/backup/cli/migrate.rb', line 16

def source_delimiter
  @source_delimiter
end

#source_emailObject (readonly)

Returns the value of attribute source_email.



17
18
19
# File 'lib/imap/backup/cli/migrate.rb', line 17

def source_email
  @source_email
end

#source_prefixObject (readonly)

Returns the value of attribute source_prefix.



18
19
20
# File 'lib/imap/backup/cli/migrate.rb', line 18

def source_prefix
  @source_prefix
end