From 66ceb82b11ea90efacc7b79f6e8eb9b67e4f4b9d Mon Sep 17 00:00:00 2001 From: Tom Wayson Date: Mon, 27 Mar 2017 12:33:14 -0700 Subject: [PATCH] add license comments and info in README for release --- CONTRIBUTING.md | 4 ++++ README.md | 25 +++++++++++++++++++++++++ addon/services/esri-loader.js | 12 ++++++++++++ index.js | 13 +++++++++++++ LICENSE => license.txt | 0 5 files changed, 54 insertions(+) create mode 100644 CONTRIBUTING.md rename LICENSE => license.txt (100%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..c5aaa88 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,4 @@ +## Contributing + +Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing). + diff --git a/README.md b/README.md index 5f0ef10..fb5c795 100644 --- a/README.md +++ b/README.md @@ -146,3 +146,28 @@ the ArcGIS API, and you'd prefer the cleaner abstraction of being able to use * `ember build` For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/). + +## Issues + +Find a bug or want to request a new feature? Please let us know by submitting an issue. + +## Contributing + +Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing). + +## Licensing +Copyright 2017 Esri + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +A copy of the license is available in the repository's [license.txt]( ./license.txt) file. diff --git a/addon/services/esri-loader.js b/addon/services/esri-loader.js index d57388d..5fa06d3 100644 --- a/addon/services/esri-loader.js +++ b/addon/services/esri-loader.js @@ -1,3 +1,15 @@ +/* + Copyright 2017 Esri + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ import Ember from 'ember'; export default Ember.Service.extend({ diff --git a/index.js b/index.js index 1d0c5c6..09434c7 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,16 @@ +/* + Copyright 2017 Esri + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* jshint node: true */ 'use strict'; var path = require('path'); diff --git a/LICENSE b/license.txt similarity index 100% rename from LICENSE rename to license.txt