Showing 2 of 2 total issues
Method crypt
has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring. Open
Open
def crypt(cipher_method, *args) #:nodoc: options = default_options.merge(value: args.first).merge(args.last.is_a?(Hash) ? args.last : {}) raise ArgumentError.new('must specify a key') if options[:key].to_s.empty? cipher = OpenSSL::Cipher.new(options[:algorithm]) cipher.send(cipher_method)
- Read upRead up
Method crypt
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
def crypt(cipher_method, *args) #:nodoc: options = default_options.merge(value: args.first).merge(args.last.is_a?(Hash) ? args.last : {}) raise ArgumentError.new('must specify a key') if options[:key].to_s.empty? cipher = OpenSSL::Cipher.new(options[:algorithm]) cipher.send(cipher_method)