Skip to content

Commit

Permalink
Added Y! license string to source files
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Aug 20, 2012
1 parent 17e2159 commit fd8dbd9
Show file tree
Hide file tree
Showing 15 changed files with 77 additions and 4 deletions.
6 changes: 6 additions & 0 deletions bin/shifter
@@ -1,5 +1,11 @@
#!/usr/bin/env node

/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/

var path = require('path');
var shifter = require(path.join('../lib'));

Expand Down
6 changes: 6 additions & 0 deletions lib/ant.js
@@ -1,3 +1,9 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/

var log = require('./log'),
path = require('path'),
pack = require('./pack'),
Expand Down
5 changes: 5 additions & 0 deletions lib/builder.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var path = require('path'),
fs = require('fs'),
log = require('./log'),
Expand Down
5 changes: 5 additions & 0 deletions lib/index.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var log = require('./log'),
fs = require('fs'),
path = require('path'),
Expand Down
5 changes: 5 additions & 0 deletions lib/log.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
require('colors');


Expand Down
5 changes: 5 additions & 0 deletions lib/module.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var Stack = require('./stack').Stack,
path = require('path'),
fs = require('fs'),
Expand Down
5 changes: 5 additions & 0 deletions lib/pack.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var path = require('path'),
fs = require('fs'),
log = require('./log'),
Expand Down
5 changes: 5 additions & 0 deletions lib/stack.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var Stack = function () {
this.errors = [];
this.finished = 0;
Expand Down
6 changes: 5 additions & 1 deletion lib/tasks.js
@@ -1,4 +1,8 @@

/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var fs = require('fs'),
path = require('path');

Expand Down
6 changes: 5 additions & 1 deletion lib/tasks/compressor.js
@@ -1,4 +1,8 @@

/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var compressor = require('yuicompressor');
var path = require('path');
var jar = path.join(__dirname, '../../', 'files', 'yuicompressor-2.4.4.jar');
Expand Down
6 changes: 5 additions & 1 deletion lib/tasks/coverage.js
@@ -1,4 +1,8 @@

/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var coverage = require('yuitest-coverage');

exports.coverage = function(options, blob, done) {
Expand Down
6 changes: 5 additions & 1 deletion lib/tasks/cssstamp.js
@@ -1,4 +1,8 @@

/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/

exports.cssstamp = function(options, blob, done) {
options = options || {};
Expand Down
5 changes: 5 additions & 0 deletions lib/tasks/jsstamp.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/

exports.jsstamp = function(options, blob, done) {
options = options || {};
Expand Down
5 changes: 5 additions & 0 deletions lib/tasks/wrap.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var Stack = require('../stack').Stack,
path = require('path'),
fs = require('fs'),
Expand Down
5 changes: 5 additions & 0 deletions lib/timer.js
@@ -1,3 +1,8 @@
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
exports.calc = function(start, end) {
var total = end - start,
diff = {}, str = '';
Expand Down

0 comments on commit fd8dbd9

Please sign in to comment.