Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-check-gems

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-check-gems

Check the presence of a RubyGem in your system and execute a task

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-check-gems

Build Status Dependencies npm module downloads per month

Check the presence of a RubyGem in your system and execute a task

Install

NPM

$ npm install --save-dev gulp-check-gems

This plugin requires Ruby and your path configured.

Usage

var gulp = require('gulp');
var sass = require('gulp-sass');
var scsslint = require('gulp-scss-lint');
var checkGem = require('gulp-check-gems');

gulp.task('sass', function () {
  return gulp.src('sass/global.scss')
    .pipe(checkGem({gemfile: 'scss-lint'},
      scsslint()
    ))
    .pipe(sass())
    .pipe(gulp.dest('dist'));
});

API

gemfile

  • Type: String
checkgem({
    gemfile: 'scss-lint'
});

Changelog

0.0.1 Initial release

  • initial code

License

MIT © 2015 David Dias

Keywords

FAQs

Package last updated on 29 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc