plugin.delete_account(account)
puts "Removed: #{account} (#{account_description})"
end
-
+
leftover_domains.each do |domain|
# Get the description before we delete the domain.
domain_description = plugin.describe_domain(domain)
# one. The parameter given is the name of the class or module
# that included us.
@includers ||= []
- @includers << c
+ @includers << c
end
def Plugin.includers
end
def get_leftover_domains(db_domains)
- # Given a list of domains, determine which domains belonging to this plugin
- # are not contained in the given list.
+ # Given a list of domains, determine which domains belonging to
+ # this plugin are not contained in the given list.
raise NotImplementedError
end
def get_leftover_accounts(db_accounts)
- # Given a list of accounts, determine which accounts belonging to this plugin
- # are not contained in the given list.
+ # Given a list of accounts, determine which accounts belonging to
+ # this plugin are not contained in the given list.
raise NotImplementedError
end
end