cocoapods-repo-sq 0.0.1.6 → 0.0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/doc/CocoapodsRepoSq/Downloader/Extensions.html +10 -16
- data/doc/CocoapodsRepoSq/Downloader.html +16 -24
- data/doc/CocoapodsRepoSq/Repository.html +37 -68
- data/doc/CocoapodsRepoSq/RepositoryStore.html +39 -71
- data/doc/CocoapodsRepoSq/Source.html +11 -18
- data/doc/CocoapodsRepoSq.html +5 -7
- data/doc/Pod/Command/RepoSq/Add.html +34 -32
- data/doc/Pod/Command/RepoSq/List.html +9 -12
- data/doc/Pod/Command/RepoSq/Remove.html +13 -20
- data/doc/Pod/Command/RepoSq/Update.html +13 -20
- data/doc/Pod/Command/RepoSq.html +4 -6
- data/doc/Pod/Command.html +3 -3
- data/doc/Pod.html +12 -13
- data/doc/_index.html +4 -4
- data/doc/css/style.css +0 -7
- data/doc/file.README.html +65 -36
- data/doc/frames.html +1 -1
- data/doc/index.html +65 -36
- data/doc/top-level-namespace.html +3 -3
- metadata +2 -2
data/doc/index.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
File: README
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.9
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -57,74 +57,103 @@
|
|
57
57
|
<div class="clear"></div>
|
58
58
|
</div>
|
59
59
|
|
60
|
-
<div id="content"><div id='filecontents'>
|
61
|
-
<
|
60
|
+
<div id="content"><div id='filecontents'><h1 id="cocoapodsreposq">CocoapodsRepoSq</h1>
|
61
|
+
<p><a href="http://rubygems.org/gems/cocoapods-repo-sq"><img src="https://badge.fury.io/rb/cocoapods-repo-sq.svg" alt="Gem Version" /></a>
|
62
|
+
<a href="https://travis-ci.org/square/cocoapods-repo-sq"><img src="https://travis-ci.org/square/cocoapods-repo-sq.svg?branch=master" alt="Build Status" /></a>
|
63
|
+
<a href="https://github.com/square/cocoapods-repo-sq/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-Apache2-blue.svg" alt="Apache 2 licensed" /></a></p>
|
62
64
|
|
63
65
|
<p>Adds support for Square SDK Repositories to Cocoapods</p>
|
64
66
|
|
65
|
-
<h2 id="
|
67
|
+
<h2 id="installation">Installation</h2>
|
66
68
|
|
67
|
-
<
|
69
|
+
<pre class="code ruby"><code class="ruby">$ gem install cocoapods-repo-sq
|
70
|
+
</code></pre>
|
68
71
|
|
69
|
-
<h2 id="
|
72
|
+
<h2 id="usage">Usage</h2>
|
70
73
|
|
71
|
-
<
|
74
|
+
<h3 id="integrate-in-your-project">Integrate in your project</h3>
|
72
75
|
|
73
|
-
<
|
74
|
-
<
|
75
|
-
|
76
|
-
|
77
|
-
</li><li>
|
78
|
-
<p>Add <code>cocoapods-repo-sq</code> source to your <code>Podfile</code>:
|
79
|
-
“`ruby plugin 'cocoapods-repo-sq', :repository => 'NAME'</p>
|
80
|
-
</li></ol>
|
76
|
+
<p>Add a Square SDK Repository to your local cocoapods registry. <code>NAME</code> is a nickname you’ll use to refer to this repository later in your <code>Podfile</code> and other <code>pod repo-sq</code> commands:
|
77
|
+
<code>shell
|
78
|
+
$ pod repo-sq add NAME USERNAME PASSWORD
|
79
|
+
</code></p>
|
81
80
|
|
82
|
-
<p>
|
81
|
+
<p>Specify your Square SDK repository in your <code>Podfile</code>:
|
82
|
+
```ruby
|
83
|
+
plugin ‘cocoapods-repo-sq’, :repository => ‘NAME’</p>
|
83
84
|
|
84
|
-
<
|
85
|
+
<p>target ‘MyTarget’ do
|
86
|
+
pod ‘SquareSDK’
|
87
|
+
end
|
88
|
+
```</p>
|
89
|
+
|
90
|
+
<h3 id="commands">Commands</h3>
|
85
91
|
|
86
92
|
<p>Add</p>
|
87
93
|
|
88
|
-
<pre class="code ruby"><code class="ruby">$ pod repo-sq add NAME USERNAME PASSWORD
|
94
|
+
<pre class="code ruby"><code class="ruby">$ pod repo-sq add NAME USERNAME PASSWORD
|
95
|
+
</code></pre>
|
89
96
|
|
90
97
|
<p>List</p>
|
91
98
|
|
92
|
-
<pre class="code ruby"><code class="ruby">$ pod repo-sq list
|
99
|
+
<pre class="code ruby"><code class="ruby">$ pod repo-sq list
|
100
|
+
</code></pre>
|
93
101
|
|
94
102
|
<p>Update</p>
|
95
103
|
|
96
|
-
<pre class="code ruby"><code class="ruby">$ pod repo-sq update NAME
|
104
|
+
<pre class="code ruby"><code class="ruby">$ pod repo-sq update NAME
|
105
|
+
</code></pre>
|
97
106
|
|
98
107
|
<p>Remove</p>
|
99
108
|
|
100
|
-
<pre class="code ruby"><code class="ruby">$ pod repo-sq remove NAME
|
109
|
+
<pre class="code ruby"><code class="ruby">$ pod repo-sq remove NAME
|
110
|
+
</code></pre>
|
111
|
+
|
112
|
+
<h2 id="multiple-applications">Multiple Applications</h2>
|
113
|
+
|
114
|
+
<p>If you have multiple Square Applications you will have multiple SDK Repositories. <code>cocoapods-repo-sq</code> supports this by allowing you to add multiple repositories to your registry. Just remember to point your <code>Podfile</code> to the right one using the <code>plugin 'cocoapods-repo-sq', :repository => 'NAME'</code> statement.</p>
|
115
|
+
|
116
|
+
<h2 id="contributing">Contributing</h2>
|
117
|
+
|
118
|
+
<p>We are currently not accepting code contributions to this repository. If you found a bug or have a feature request please <a href="https://github.com/square/cocoapods-repo-sq/issues/new">Submit it here</a>.</p>
|
119
|
+
|
120
|
+
<p>If you are curious about Cocoapods and its plugin system take a look at the following guides:
|
121
|
+
- https://blog.cocoapods.org/CocoaPods-0.28/
|
122
|
+
- https://guides.cocoapods.org/reference.html
|
123
|
+
- https://github.com/CocoaPods/cocoapods-plugins</p>
|
124
|
+
|
125
|
+
<h2 id="building">Building</h2>
|
101
126
|
|
102
|
-
<
|
127
|
+
<pre class="code ruby"><code class="ruby">$ rake build
|
128
|
+
</code></pre>
|
103
129
|
|
104
|
-
<
|
105
|
-
Repositories. <code>cocoapods-repo-sq</code> supports this by allowing you
|
106
|
-
to add multiple repositories to your registry. Just remember to point your
|
107
|
-
<code>Podfile</code> to the right one using the <code>plugin
|
108
|
-
'cocoapods-repo-sq', :repository => 'NAME'</code>
|
109
|
-
statement.</p>
|
130
|
+
<h2 id="testing">Testing</h2>
|
110
131
|
|
111
|
-
<
|
132
|
+
<pre class="code ruby"><code class="ruby">$ rake specs
|
133
|
+
</code></pre>
|
112
134
|
|
113
|
-
<
|
135
|
+
<h2 id="license">License</h2>
|
114
136
|
|
115
|
-
<
|
137
|
+
<pre class="code ruby"><code class="ruby">Copyright 2018 Square Inc.
|
116
138
|
|
117
|
-
|
139
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
140
|
+
you may not use this file except in compliance with the License.
|
141
|
+
You may obtain a copy of the License at
|
118
142
|
|
119
|
-
|
143
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
120
144
|
|
121
|
-
|
145
|
+
Unless required by applicable law or agreed to in writing, software
|
146
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
148
|
+
See the License for the specific language governing permissions and
|
149
|
+
limitations under the License.
|
150
|
+
</code></pre>
|
122
151
|
</div></div>
|
123
152
|
|
124
153
|
<div id="footer">
|
125
|
-
Generated on
|
154
|
+
Generated on Tue May 8 15:22:22 2018 by
|
126
155
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
127
|
-
0.9.
|
156
|
+
0.9.9 (ruby-2.4.2).
|
128
157
|
</div>
|
129
158
|
|
130
159
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Top Level Namespace
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.9
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -100,9 +100,9 @@
|
|
100
100
|
</div>
|
101
101
|
|
102
102
|
<div id="footer">
|
103
|
-
Generated on
|
103
|
+
Generated on Tue May 8 15:22:22 2018 by
|
104
104
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
105
|
-
0.9.
|
105
|
+
0.9.9 (ruby-2.4.2).
|
106
106
|
</div>
|
107
107
|
|
108
108
|
</div>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-repo-sq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Square, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods
|