Skip to content

Commit

Permalink
remove author notices
Browse files Browse the repository at this point in the history
  • Loading branch information
morris committed Sep 30, 2016
1 parent c244691 commit c7eee5c
Show file tree
Hide file tree
Showing 20 changed files with 4 additions and 77 deletions.
4 changes: 0 additions & 4 deletions index.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var assign = require( 'object-assign' );

module.exports = VinylFtp;
Expand Down
2 changes: 0 additions & 2 deletions lib/cache.js
@@ -1,8 +1,6 @@
/**
* A cache keeps track of async resources and actions that
* should be loaded or executed only once.
*
* @author morris
*/

module.exports = function ( fn ) {
Expand Down
4 changes: 0 additions & 4 deletions lib/clean.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var assign = require( 'object-assign' );
var through = require( 'through2' );
var Fs = require( 'fs' );
Expand Down
4 changes: 0 additions & 4 deletions lib/delete.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

module.exports = {

delete: function ( path, cb ) {
Expand Down
4 changes: 0 additions & 4 deletions lib/dest.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

module.exports = {

dest: function ( folder, options ) {
Expand Down
1 change: 0 additions & 1 deletion lib/filter.js
@@ -1,6 +1,5 @@
/**
* Filter vinyl streams based on local and remote file
* @author morris
*/

module.exports = {
Expand Down
5 changes: 0 additions & 5 deletions lib/ftp.js
@@ -1,8 +1,3 @@
/**
* FTP connection pool, methods, resource managers and helpers
* @author morris
*/

var Stream = require( 'stream' );
var Path = require( 'path' );
var Ftp = require( 'ftp' );
Expand Down
5 changes: 0 additions & 5 deletions lib/glob.js
@@ -1,8 +1,3 @@
/**
* FTP glob
* @author morris
*/

var Stream = require( 'stream' );
var minimatch = require( 'minimatch' );
var Minimatch = minimatch.Minimatch;
Expand Down
4 changes: 0 additions & 4 deletions lib/helpers.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var Path = require( 'path' );
var assign = require( 'object-assign' );
var parallel = require( 'parallel-transform' );
Expand Down
5 changes: 1 addition & 4 deletions lib/mlsd.js
@@ -1,11 +1,8 @@
/**
* MLSD method for the node ftp module
* This is mostly copied from https://github.com/mscdex/node-ftp
* Original Copyright Brian White
* Original Copyright Brian White: https://github.com/mscdex
* MLSD implemented by Morris Brodersen <mb@morrisbrodersen.de>
*
* @author Brian White
* @author morris
*/

var RE_EOL = /\r?\n/g,
Expand Down
4 changes: 0 additions & 4 deletions lib/mode.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

module.exports = {

mode: function ( folder, mode, options ) {
Expand Down
4 changes: 0 additions & 4 deletions lib/src.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var assign = require( 'object-assign' );
var through = require( 'through2' );

Expand Down
6 changes: 2 additions & 4 deletions test/clean.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var VinylFs = require( 'vinyl-fs' );
var VinylFtp = require( '../' );
Expand All @@ -14,10 +10,12 @@ describe( 'clean', function () {
this.timeout( 10000 );

it( '(preparing: create files to clean up later)', function ( done ) {

VinylFs.src( 'test/fixtures/**' )
.pipe( VinylFs.dest( 'test/fixtures/cleaning' ) )
.on( 'error', done )
.on( 'end', done );

} );

it( '(preparing: upload all files)', function ( done ) {
Expand Down
4 changes: 0 additions & 4 deletions test/concurrent.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var suite = require( './suite' );
var vfs = require( 'vinyl-fs' );
Expand Down
4 changes: 0 additions & 4 deletions test/delete.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var suite = require( './suite' );

Expand Down
4 changes: 0 additions & 4 deletions test/dest.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var VinylFs = require( 'vinyl-fs' );
var VinylFtp = require( '../' );
Expand Down
4 changes: 0 additions & 4 deletions test/mkdirp.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var suite = require( './suite' );

Expand Down
4 changes: 0 additions & 4 deletions test/mode.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var fs = require( 'fs' );
var File = require( 'vinyl' );
Expand Down
4 changes: 0 additions & 4 deletions test/src.js
@@ -1,7 +1,3 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var fs = require( 'fs' );
var rmdir = require( 'rmdir' );
Expand Down
5 changes: 1 addition & 4 deletions test/suite.js
@@ -1,11 +1,8 @@
/**
* @author morris
*/

var expect = require( 'expect' );
var VinylFtp = require( '../' );

var suite = module.exports = {};

suite.config = require( './config.json' );
suite.config.log = function () {

Expand Down

0 comments on commit c7eee5c

Please sign in to comment.