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.
data/doc/index.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  File: README
8
8
 
9
- &mdash; Documentation by YARD 0.9.12
9
+ &mdash; 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
- <h1 id="label-CocoapodsRepoSq">CocoapodsRepoSq</h1>
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="label-Brief">Brief</h2>
67
+ <h2 id="installation">Installation</h2>
66
68
 
67
- <p>TODO</p>
69
+ <pre class="code ruby"><code class="ruby">$ gem install cocoapods-repo-sq
70
+ </code></pre>
68
71
 
69
- <h2 id="label-Installation">Installation</h2>
72
+ <h2 id="usage">Usage</h2>
70
73
 
71
- <pre class="code ruby"><code class="ruby">$ gem install cocoapods-repo-sq</code></pre>
74
+ <h3 id="integrate-in-your-project">Integrate in your project</h3>
72
75
 
73
- <h1 id="label-Usage">Usage</h1>
74
- <ol><li>
75
- <p>Add a Square SDK Repository to your local cocoapods registry: <code>shell $
76
- pod repo-sq add NAME USERNAME PASSWORD </code></p>
77
- </li><li>
78
- <p>Add <code>cocoapods-repo-sq</code> source to your <code>Podfile</code>:
79
- “`ruby plugin &#39;cocoapods-repo-sq&#39;, :repository =&gt; &#39;NAME&#39;</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>target &#39;MyTarget&#39; do pod &#39;SquareReaderSDK&#39; end “`</p>
81
+ <p>Specify your Square SDK repository in your <code>Podfile</code>:
82
+ ```ruby
83
+ plugin ‘cocoapods-repo-sq’, :repository =&gt; ‘NAME’</p>
83
84
 
84
- <h2 id="label-Commands">Commands</h2>
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</code></pre>
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</code></pre>
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</code></pre>
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</code></pre>
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 =&gt; '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
- <h1 id="label-Multiple+Applications">Multiple Applications</h1>
127
+ <pre class="code ruby"><code class="ruby">$ rake build
128
+ </code></pre>
103
129
 
104
- <p>If you have multiple Square Applications you will have multiple SDK
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
- &#39;cocoapods-repo-sq&#39;, :repository =&gt; &#39;NAME&#39;</code>
109
- statement.</p>
130
+ <h2 id="testing">Testing</h2>
110
131
 
111
- <h2 id="label-Contributing">Contributing</h2>
132
+ <pre class="code ruby"><code class="ruby">$ rake specs
133
+ </code></pre>
112
134
 
113
- <p>WIP</p>
135
+ <h2 id="license">License</h2>
114
136
 
115
- <h2 id="label-Building">Building</h2>
137
+ <pre class="code ruby"><code class="ruby">Copyright 2018 Square Inc.
116
138
 
117
- <p>WIP</p>
139
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
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
- <h2 id="label-Installing">Installing</h2>
143
+ http://www.apache.org/licenses/LICENSE-2.0
120
144
 
121
- <p>WIP</p>
145
+ Unless required by applicable law or agreed to in writing, software
146
+ distributed under the License is distributed on an &quot;AS IS&quot; 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 Fri Apr 27 10:49:52 2018 by
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.12 (ruby-2.4.0).
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
- &mdash; Documentation by YARD 0.9.12
9
+ &mdash; 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 Fri Apr 27 10:49:52 2018 by
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.12 (ruby-2.4.0).
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.6
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-04 00:00:00.000000000 Z
11
+ date: 2018-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods