cocoapods-azure-universal-packages2 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/cocoapods-azure-universal-packages2/gem_version.rb +1 -1
- metadata +2 -3
- data/LICENSE +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffbd0718a0df12f65ee7045940ab567929b6a30512357c8d2ce9b70d5c3d3715
|
4
|
+
data.tar.gz: aa778525d6ba8bb5dd295f62917487327e967d92129948e7d1ae9ea030f66212
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06d82699c7f75b29fe652defef8e2bae33af8d458848f1ee081702deb21423981570c6a41d7ecf09178a62c6e558e229406a76c62f5c06d6bd98f5599b2d1d24
|
7
|
+
data.tar.gz: 2123ab70a46d8029ef9124dfb56c921a9ab36e0e6e4b9919ee6ef4b2fdcef8ceb80601f789def0e0583b9d590891a0f0b637483121cda1f45887ee27bc6a9910
|
data/README.md
CHANGED
@@ -32,7 +32,7 @@ _Note:_ The plugin will install the Azure CLI [DevOps extension](https://github.
|
|
32
32
|
Add to your Podfile
|
33
33
|
```Ruby
|
34
34
|
plugin 'cocoapods-azure-universal-packages2', {
|
35
|
-
:
|
35
|
+
organization: '{{ORGANIZATION_URL}}'
|
36
36
|
}
|
37
37
|
```
|
38
38
|
replacing `{{ORGANIZATION_URL}}` with the base URL of your Azure Artifacts feed (for example: `https://pkgs.dev.azure.com/myorg`).
|
@@ -40,10 +40,10 @@ replacing `{{ORGANIZATION_URL}}` with the base URL of your Azure Artifacts feed
|
|
40
40
|
Then, in your podspec set the pod's source to
|
41
41
|
```Ruby
|
42
42
|
# For project scoped feeds:
|
43
|
-
spec.source = { :
|
43
|
+
spec.source = { http: '{{ORGANIZATION_URL}}/{{PROJECT}}/_apis/packaging/feeds/{{FEED}}/upack/packages/{{PACKAGE}}/versions/{{VERSION}}' }
|
44
44
|
|
45
45
|
# For organization scoped feeds:
|
46
|
-
spec.source = { :
|
46
|
+
spec.source = { http: '{{ORGANIZATION_URL}}/_apis/packaging/feeds/{{FEED}}/upack/packages/{{PACKAGE}}/versions/{{VERSION}}' }
|
47
47
|
```
|
48
48
|
where:
|
49
49
|
- `{{ORGANIZATION_URL}}` is the URL of your feed's organization
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-azure-universal-packages2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aurimas Šeputis
|
@@ -100,14 +100,13 @@ executables: []
|
|
100
100
|
extensions: []
|
101
101
|
extra_rdoc_files: []
|
102
102
|
files:
|
103
|
-
- LICENSE
|
104
103
|
- README.md
|
105
104
|
- lib/cocoapods-azure-universal-packages2.rb
|
106
105
|
- lib/cocoapods-azure-universal-packages2/azure_universal_package_downloader.rb
|
107
106
|
- lib/cocoapods-azure-universal-packages2/gem_version.rb
|
108
107
|
- lib/cocoapods-azure-universal-packages2/pre_install.rb
|
109
108
|
- lib/cocoapods_plugin.rb
|
110
|
-
homepage: https://github.com/rbviz/cocoapods-azure-universal-
|
109
|
+
homepage: https://github.com/rbviz/cocoapods-azure-universal-packages2
|
111
110
|
licenses:
|
112
111
|
- MIT
|
113
112
|
metadata: {}
|
data/LICENSE
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) Microsoft Corporation.
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE
|