fog/fog-azure-rm

View on GitHub
lib/fog/azurerm/requests/network/set_connection_shared_key.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
45%

Do not prefix writer method names with set_.
Open

        def set_connection_shared_key(*)

This cop makes sure that accessor methods are named properly.

Example:

# bad
def set_attribute(value)
end

# good
def attribute=(value)
end

# bad
def get_attribute
end

# good
def attribute
end

There are no issues that match your filters.

Category
Status