Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cake-contrib/cake.urlloaddirective.module
:cake: :wrench: A Cake module for loading arbitrary cake files from URL's via the #load directive
https://github.com/cake-contrib/cake.urlloaddirective.module
cake-build cake-module hacktoberfest
Last synced: 23 days ago
JSON representation
:cake: :wrench: A Cake module for loading arbitrary cake files from URL's via the #load directive
- Host: GitHub
- URL: https://github.com/cake-contrib/cake.urlloaddirective.module
- Owner: cake-contrib
- License: mit
- Created: 2017-09-29T13:05:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-05T20:20:20.000Z (over 3 years ago)
- Last Synced: 2024-04-29T02:05:43.399Z (8 months ago)
- Topics: cake-build, cake-module, hacktoberfest
- Language: C#
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 9
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Cake.UrlLoadDirective.Module
A Cake module for loading cake files from arbitrary URL's via the `#load` directiveBy default, the `#load` preprocessor directive only supports local file system paths.
This module will allow cake script files from any url to be loaded, for example:
```
#load url:https://someurl.com/somefile.cake
```Notice the `url:` in front of the actual url. This is required to indicate to the preprocessor directive that you want to load a url.
# Installation
Installing a Cake Module is pretty simple. Just add a file like this:
`./tools/Modules/packages.config`With the content:
```xml
```
You should now be all set and able to use it in your scripts!
## Discussion
For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/cake-build/cake/discussions/categories/extension-q-a) category.
[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)
# License
MIT License
Copyright (c) 2017 Jonathan Dick
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
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 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.