===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
compass-breakpoint-plugin-2.7.1/.bump.js-28-if (args.major) {
compass-breakpoint-plugin-2.7.1/.bump.js:29:  version = `${version.major + 1}.0.0`;
compass-breakpoint-plugin-2.7.1/.bump.js-30-}
compass-breakpoint-plugin-2.7.1/.bump.js-31-else if (args.minor) {
compass-breakpoint-plugin-2.7.1/.bump.js:32:  version = `${version.major}.${version.minor + 1}.0`;
compass-breakpoint-plugin-2.7.1/.bump.js-33-}
compass-breakpoint-plugin-2.7.1/.bump.js-34-else if (args.patch) {
compass-breakpoint-plugin-2.7.1/.bump.js:35:  version = `${version.major}.${version.minor}.${version.patch + 1}`;
compass-breakpoint-plugin-2.7.1/.bump.js-36-}
compass-breakpoint-plugin-2.7.1/.bump.js-37-else {
compass-breakpoint-plugin-2.7.1/.bump.js:38:  version = `${version.major}.${version.minor}.${version.patch}`;
compass-breakpoint-plugin-2.7.1/.bump.js-39-}
##############################################
compass-breakpoint-plugin-2.7.1/.bump.js-54-
compass-breakpoint-plugin-2.7.1/.bump.js:55:exec(`git commit -am "Release v${version}"`);
compass-breakpoint-plugin-2.7.1/.bump.js:56:exec(`git tag v${version}`);
##############################################
compass-breakpoint-plugin-2.7.1/.gembuild.js-7-  'gem build breakpoint.gemspec',
compass-breakpoint-plugin-2.7.1/.gembuild.js:8:  `gem push breakpoint-${version}.gem`,
compass-breakpoint-plugin-2.7.1/.gembuild.js:9:  `rm breakpoint-${version}.gem`
compass-breakpoint-plugin-2.7.1/.gembuild.js-10-];
##############################################
compass-breakpoint-plugin-2.7.1/CHANGELOG.md-4-* **Change** Moved variable settings to new Breakpoint settings. Future versions will deprecate variable settings. Use `@include breakpoint-set()` or `@include bkpt-set()` to change settings, `@include breakpoint-reset()` or `@include bkpt-reset()` to reset settings to their default state. Please update your settings as followins:
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:5:  * `$breakpoint-default-media: value;` should become `@include bkpt-set('default media', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:6:  * `$breakpoint-default-feature: value;` should become `@include bkpt-set('default feature', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:7:  * `$breakpoint-default-pair: value;` should become `@include bkpt-set('default pair', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:8:  * `$breakpoint-force-media-all: value;` should become `@include bkpt-set('force all media type', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:9:  * `$breakpoint-to-ems: value;` should become `@include bkpt-set('to ems', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:10:  * `$breakpoint-resolutions: value;` should become `@include bkpt-set('transform resolutions', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:11:  * `$breakpoint-no-queries: value;` should become `@include bkpt-set('no queries', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:12:  * `$breakpoint-no query fallbacks: value;` should become `@include bkpt-set('no query fallbacks', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:13:  * `$breakpoint-base-font-size: value;` should become `@include bkpt-set('base font size', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:14:  * `$breakpoint-legacy-syntax: value;` should become `@include bkpt-set('legacy syntax', value);`
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:15:* **Change** Adding breakpoints for `respond-to` should now be done through the mixin `@include add-breakpoint()` instead of the function call `$breakpoints: add-breakpoint()`. Future versions will deprecate function.
compass-breakpoint-plugin-2.7.1/CHANGELOG.md-16-* **New** Initial support for Libsass 3.1
##############################################
compass-breakpoint-plugin-2.7.1/CHANGELOG.md-44-### August 16th, 2012
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:45:* Added ability to force the 'all' media type to be written by setting `$breakpoint-force-media-all: true;`. Defaults to `false`.
compass-breakpoint-plugin-2.7.1/CHANGELOG.md-46-* Added ability to generate no query fallback code. See the README for full documentaiton.
##############################################
compass-breakpoint-plugin-2.7.1/CHANGELOG.md-54-### July 29, 2012
compass-breakpoint-plugin-2.7.1/CHANGELOG.md:55:* Added function `breakpoint-get-context($feature)` to allow users to get the current media query context
compass-breakpoint-plugin-2.7.1/CHANGELOG.md-56-
##############################################
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_context.scss-54-  @if $current and length($current) == $private-breakpoint-query-count {
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_context.scss:55:    @warn "You have already queried against `#{$feature}`. Unexpected things may happen if you query against the same feature more than once in the same `and` query. Breakpoint is overwriting the current context with `#{$value}`";
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_context.scss-56-  }
##############################################
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_legacy-settings.scss-15-    @if global-variable-exists('breakpoint-' + $legacy) {
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_legacy-settings.scss:16:      @warn "In order to avoid variable namspace collisions, we have updated the way to change settings for Breakpoint. Please change all instances of `$breakpoint-#{$legacy}: {{setting}}` to `@include breakpoint-set('#{$new}', {{setting}})`. Variable settings, as well as this warning will be deprecated in a future release."
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_legacy-settings.scss-17-    }
##############################################
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-11-  @if length($breakpoints) > 0 and length($BREAKPOINTS) == 0 {
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss:12:    @warn "In order to avoid variable namespace collisions, we have updated the way to add breakpoints for respond-to. Please change all instances of `$breakpoints: add-breakpoint()` to `@include add-breakpoint()`. The `add-breakpoint()` function will be deprecated in a future release.";
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-13-    $BREAKPOINTS: $breakpoints !global;
##############################################
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-27-  @else if not map-has-key($BREAKPOINTS, $context) {
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss:28:    @warn "`#{$context}` isn't a defined breakpoint! Please add it using `$breakpoints: add-breakpoint(`#{$context}`, $value);`";
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-29-    @content;
##############################################
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-31-  @else {
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss:32:    @warn "You haven't created any breakpoints yet! Make some already! `@include add-breakpoint($name, $bkpt)`";
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-33-    @content;
##############################################
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-48-    @if map-has-key($breakpoints, $name) and $overwrite != true {
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss:49:      @warn "You already have a breakpoint named `#{$name}`, please choose another breakpoint name, or pass in `$overwrite: true` to overwrite the previous breakpoint.";
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-50-      @return $breakpoints;
##############################################
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-65-    @if map-has-key($BREAKPOINTS, $name) and $overwrite != true {
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss:66:      @warn "You already have a breakpoint named `#{$name}`, please choose another breakpoint name, or pass in `$overwrite: true` to overwrite the previous breakpoint.";
compass-breakpoint-plugin-2.7.1/stylesheets/breakpoint/_respond-to.scss-67-      $BREAKPOINTS: $BREAKPOINTS !global;