Skip to content

Commit

Permalink
update copyright notices and license
Browse files Browse the repository at this point in the history
  • Loading branch information
rmg committed May 6, 2016
1 parent f47a3ba commit 0bf341b
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 8 deletions.
17 changes: 10 additions & 7 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
The MIT License (MIT)
Copyright (c) IBM Corp. 2015,2016. All Rights Reserved.
Node module: loopback-sdk-ios-codegen
This project is licensed under the MIT License, full text below.

Copyright (c) 2015 StrongLoop, Inc.
--------

MIT license

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -9,14 +13,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
5 changes: 5 additions & 0 deletions lib/objc-codegen.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright IBM Corp. 2015,2016. All Rights Reserved.
// Node module: loopback-sdk-ios-codegen
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

var fs = require('fs');
var ejs = require('ejs');
var pascalCase = require('pascal-case');
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
"name": "loopback-sdk-ios-codegen",
"version": "0.0.0",
"description": "Tool for auto-generating iOS client source code for LoopBack App",
"keywords": [ "StrongLoop Labs", "LoopBack", "client", "SDK", "iOS", "codegen" ],
"keywords": [
"StrongLoop Labs",
"LoopBack",
"client",
"SDK",
"iOS",
"codegen"
],
"bin": {
"lb-ios": "bin/lb-ios"
},
Expand Down
5 changes: 5 additions & 0 deletions test-env/common/models/book.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright IBM Corp. 2015. All Rights Reserved.
// Node module: loopback-sdk-ios-codegen
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

module.exports = function(Book) {

};
5 changes: 5 additions & 0 deletions test-env/server/boot/authentication.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright IBM Corp. 2015. All Rights Reserved.
// Node module: loopback-sdk-ios-codegen
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

module.exports = function enableAuthentication(server) {
// enable authentication
server.enableAuth();
Expand Down
5 changes: 5 additions & 0 deletions test-env/server/boot/root.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright IBM Corp. 2015. All Rights Reserved.
// Node module: loopback-sdk-ios-codegen
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

module.exports = function(server) {
// Install a `/` route that returns server status
var router = server.loopback.Router();
Expand Down
5 changes: 5 additions & 0 deletions test-env/server/server.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright IBM Corp. 2015. All Rights Reserved.
// Node module: loopback-sdk-ios-codegen
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

var loopback = require('loopback');
var boot = require('loopback-boot');

Expand Down

0 comments on commit 0bf341b

Please sign in to comment.