Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # frozen_string_literal: true |
||
12 | class Purge < Action |
||
13 | attr_accessor :account |
||
14 | attr_accessor :private_key |
||
15 | |||
16 | # @param [AMA::Chef::User::Model::Account] account |
||
17 | # @param [AMA::Chef::User::Model::PrivateKey] private_key |
||
18 | def initialize(account, private_key) |
||
19 | @account = account |
||
20 | @private_key = private_key |
||
21 | end |
||
22 | |||
23 | def apply(*) |
||
24 | noop |
||
25 | end |
||
26 | end |
||
27 | end |
||
34 |