Showing 6 of 8 total issues
Method embeddable_styles
has 87 lines of code (exceeds 25 allowed). Consider refactoring. Open
def self.embeddable_styles
%Q{
<style type="text/css">
body {
Method tab_link_with_subtabs
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def tab_link_with_subtabs(tab)
html = ''
html << %Q{<a class="dropdown-toggle" data-toggle="dropdown" href="#">#{tab_text(tab)}<b class="caret"></b></a>}
html << %Q{<ul class="dropdown-menu">}
for subtab in tab.subtabs
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method check_for_conflicting_active_actions
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
def check_for_conflicting_active_actions
for tab in @tabset.tabs
for other_tab in @tabset.tabs
next if tab == other_tab
if tab.active_actions_overlap?(other_tab)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method tab_html
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
def tab_html(tab)
return '' unless tab.visible?(@view)
html = ''
klass = ''
klass << 'active' if tab.active?(@view)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method tab_html
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def tab_html(tab)
return '' unless tab.visible?(@view)
html = ''
klass = ''
klass << 'active' if tab.active?(@view)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method active_actions_overlap?
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def active_actions_overlap?(tab)
for controller in @active_actions.keys
other_actions = tab.active_actions[controller]
if other_actions
these_actions = @active_actions[controller]
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"