| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 100 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | # frozen_string_literal: true |
||
| 11 | class Add < Action |
||
| 12 | attr_accessor :account |
||
| 13 | attr_accessor :key |
||
| 14 | |||
| 15 | # @param [AMA::Chef::User::Model::Account] account |
||
| 16 | # @param [AMA::Chef::User::Model::PublicKey] public_key |
||
| 17 | def initialize(account, public_key) |
||
| 18 | @account = account |
||
| 19 | @key = public_key |
||
| 20 | end |
||
| 21 | |||
| 22 | def apply(resource_factory) |
||
| 23 | account = @account |
||
| 24 | key = @key |
||
| 25 | id = "#{account.id}:#{key.owner}:#{key.id}" |
||
| 26 | resource_factory.ssh_authorize_key id do |
||
| 27 | user account.id.to_s |
||
| 28 | key key.content |
||
| 29 | keytype key.type.to_s |
||
| 30 | comment "#{key.owner}:#{key.id}" |
||
| 31 | validate_key key.validate |
||
| 32 | end |
||
| 33 | end |
||
| 34 | end |
||
| 35 | end |
||
| 41 |