capistrano/capistrano

View on GitHub

Showing 115 of 115 total issues

Function un_expose has 48 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    un_expose : function () {
      var exposeId,
          el,
          expose ,
          origCSS,
Severity: Minor
Found in docs/assets/js/foundation/foundation.joyride.js - About 1 hr to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

          exposeCover.css({
            top: el.offset().top,
            left: el.offset().left,
            width: this.outerWidth(el, true),
            height: this.outerHeight(el, true)
    Severity: Major
    Found in docs/assets/js/foundation/foundation.joyride.js and 1 other location - About 1 hr to fix
    docs/assets/js/foundation/foundation.joyride.js on lines 589..594

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 72.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

          expose.css({
            top: el.offset().top,
            left: el.offset().left,
            width: this.outerWidth(el, true),
            height: this.outerHeight(el, true)
    Severity: Major
    Found in docs/assets/js/foundation/foundation.joyride.js and 1 other location - About 1 hr to fix
    docs/assets/js/foundation/foundation.joyride.js on lines 615..620

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 72.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

          if (typeof method !== 'string') {
            if (!this.settings.init) { this.events(); }
    
            return this.settings.init;
          } else {
    Severity: Major
    Found in docs/assets/js/foundation/foundation.alerts.js and 1 other location - About 1 hr to fix
    docs/assets/js/foundation/foundation.dropdown.js on lines 26..35

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 71.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

          if (typeof method !== 'string') {
    
            if (!this.settings.init) {
              this.events();
            }
    Severity: Major
    Found in docs/assets/js/foundation/foundation.dropdown.js and 1 other location - About 1 hr to fix
    docs/assets/js/foundation/foundation.alerts.js on lines 23..29

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 71.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function events has 42 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        events : function () {
          var self = this;
    
          $(this.scope)
            .off('.fndtn.reveal')
    Severity: Minor
    Found in docs/assets/js/foundation/foundation.reveal.js - About 1 hr to fix

      Identical blocks of code found in 2 locations. Consider refactoring.
      Open

              $slides_container.animate(properties, self.settings.animation_speed, 'linear', function() {
                $container.removeClass(self.settings.orbit_transition_class);
                $slides_container.trigger('orbit:after-slide-change', [{slide_number: active_index, total_slides: $slides_container.children().length - 2}]);
                callback();
              });
      Severity: Major
      Found in docs/assets/js/foundation/foundation.orbit.js and 1 other location - About 1 hr to fix
      docs/assets/js/foundation/foundation.orbit.js on lines 374..378

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 68.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Identical blocks of code found in 2 locations. Consider refactoring.
      Open

            if ($slides_container.css(margin_position) === new_margin_left) {
              $container.removeClass(self.settings.orbit_transition_class);
              $slides_container.trigger('orbit:after-slide-change', [{slide_number: active_index, total_slides: $slides_container.children().length - 2}]);
              callback();
            } else {
      Severity: Major
      Found in docs/assets/js/foundation/foundation.orbit.js and 1 other location - About 1 hr to fix
      docs/assets/js/foundation/foundation.orbit.js on lines 382..386

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 68.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Function resize has 41 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          resize : function () {
            var self = Foundation.libs.section,
                sections = $(self.settings.section_selector);
      
            sections.each(function() {
      Severity: Minor
      Found in docs/assets/js/foundation/foundation.section.js - About 1 hr to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                if (self.small($this)) {
                  active_section.attr('style', '');
                } else {
                  active_section.css('padding-top', self.outerHeight(active_section
                    .children(self.settings.title_selector)));
        Severity: Major
        Found in docs/assets/js/foundation/foundation.section.js and 1 other location - About 1 hr to fix
        docs/assets/js/foundation/foundation.section.js on lines 185..190

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 67.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                  if (self.small($this)) {
                    first.attr('style', '');
                  } else {
                    first.css('padding-top', self.outerHeight(first
                      .children(self.settings.title_selector)));
        Severity: Major
        Found in docs/assets/js/foundation/foundation.section.js and 1 other location - About 1 hr to fix
        docs/assets/js/foundation/foundation.section.js on lines 193..198

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 67.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                  var data = {
                        start_page_x: e.touches[0].pageX,
                        start_page_y: e.touches[0].pageY,
                        start_time: (new Date()).getTime(),
                        delta_x: 0,
        Severity: Major
        Found in docs/assets/js/foundation/foundation.clearing.js and 1 other location - About 1 hr to fix
        docs/assets/js/foundation/foundation.orbit.js on lines 212..218

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 67.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                  var data = {
                    start_page_x: e.touches[0].pageX,
                    start_page_y: e.touches[0].pageY,
                    start_time: (new Date()).getTime(),
                    delta_x: 0,
        Severity: Major
        Found in docs/assets/js/foundation/foundation.orbit.js and 1 other location - About 1 hr to fix
        docs/assets/js/foundation/foundation.clearing.js on lines 116..122

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 67.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Function open has 40 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            open : function (target, ajax_settings) {
              if (target) {
                if (typeof target.selector !== 'undefined') {
                  var modal = $('#' + target.data('reveal-id'));
                } else {
        Severity: Minor
        Found in docs/assets/js/foundation/foundation.reveal.js - About 1 hr to fix

          Function init has 39 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              init : function (scope, method, options) {
                Foundation.inherit(this, 'data_options');
                var self = this;
          
                if (typeof method === 'object') {
          Severity: Minor
          Found in docs/assets/js/foundation/foundation.tooltips.js - About 1 hr to fix

            Function reposition has 39 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                reposition : function (target, tip, classes) {
                  var width, nub, nubHeight, nubWidth, column, objPos;
            
                  tip.css('visibility', 'hidden').show();
            
            
            Severity: Minor
            Found in docs/assets/js/foundation/foundation.tooltips.js - About 1 hr to fix

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                      } else {
              
                        this.settings.$next_tip.offset({top: this.settings.$target.offset().top + target_height + nub_height});
                        $nub.addClass('top');
              
              
              Severity: Major
              Found in docs/assets/js/foundation/foundation.joyride.js and 1 other location - About 1 hr to fix
              docs/assets/js/foundation/foundation.joyride.js on lines 520..525

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 66.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                      if (this.top()) {
              
                          this.settings.$next_tip.offset({top: this.settings.$target.offset().top - tip_height - nub_height});
                          $nub.addClass('bottom');
              
              
              Severity: Major
              Found in docs/assets/js/foundation/foundation.joyride.js and 1 other location - About 1 hr to fix
              docs/assets/js/foundation/foundation.joyride.js on lines 525..530

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 66.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Function events has 38 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  events : function () {
                    var self = this;
              
                    $(this.scope)
                      .on('click.joyride', '.joyride-next-tip, .joyride-modal-bg', function (e) {
              Severity: Minor
              Found in docs/assets/js/foundation/foundation.joyride.js - About 1 hr to fix

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                      if (target.next().length > 0) {
                        visible_image
                          .find('.clearing-main-next')
                          .removeClass('disabled');
                      } else {
                Severity: Major
                Found in docs/assets/js/foundation/foundation.clearing.js and 1 other location - About 1 hr to fix
                docs/assets/js/foundation/foundation.clearing.js on lines 291..299

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 64.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Severity
                Category
                Status
                Source
                Language