stubby 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -16
- data/lib/stubby.rb +0 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31d17193ca522cacf8d7a1c998b03917fad252fc
|
4
|
+
data.tar.gz: 44fa077c0371cb01b6da4e7bc552b4c4ef5fc4e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0de8b3fe22829a4e368d2aa1d6a9b10c88a302b63b47c82828f471a7ad40974b3228b2e0fdaa0f1a0505fe406782ee046737850b42b4d17717e9f20c97ccc914
|
7
|
+
data.tar.gz: 2da5bc931b2d5cf97945f22cda129c4fe801f0103909298e33d27d2b2e5c7debf2330bb94ea7b770a6735d61e6acd691fe9b51b17f427936b7efe37dccd4141a
|
data/README.md
CHANGED
@@ -1,31 +1,22 @@
|
|
1
1
|
# Stubby
|
2
2
|
|
3
3
|
A local DNS and HTTP server combo that provides a package manager
|
4
|
-
solution to configuring network systems on a development machine.
|
5
|
-
is currently only designed to run on OS X.
|
4
|
+
solution to configuring network systems on a development machine.
|
6
5
|
|
7
6
|
Use it to:
|
8
7
|
|
9
|
-
* manage your dev domains
|
8
|
+
* manage your .dev domains
|
10
9
|
|
11
10
|
* distribute a spec for your API so developers can run basic tests without
|
12
11
|
hitting your dev server.
|
13
12
|
|
14
|
-
*
|
15
|
-
|
16
|
-
* lock down access to a dev system only to users running a stubby.json config
|
17
|
-
from your project.
|
18
|
-
|
19
|
-
|
13
|
+
* get your team on the right system with the proper hosts settings.
|
14
|
+
|
20
15
|
## Development Status
|
21
16
|
|
22
|
-
|
23
|
-
I finally feel that the Stubfile.json format and the extension / adapter
|
17
|
+
The Stubfile.json format and the extension / adapter
|
24
18
|
organization is clear and complete enough to handle the majority of use
|
25
|
-
cases.
|
26
|
-
|
27
|
-
I don't expect major changes to the format from this point forward. Any
|
28
|
-
such changes will be delegated to a major revision change.
|
19
|
+
cases. No major changes to the general system or configuration formats.
|
29
20
|
|
30
21
|
## Installation
|
31
22
|
|
@@ -138,7 +129,7 @@ interfaces and will shut down the stubby server.
|
|
138
129
|
- example: https://github.com/jkassemi/example-stubby.git
|
139
130
|
|
140
131
|
To contribute a stub, just add your stub to the list above and issue a pull
|
141
|
-
request.
|
132
|
+
request. There is no automated central index.
|
142
133
|
|
143
134
|
## Environment Verification
|
144
135
|
|
data/lib/stubby.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stubby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Kassemi
|
@@ -221,6 +221,20 @@ dependencies:
|
|
221
221
|
- - '='
|
222
222
|
- !ruby/object:Gem::Version
|
223
223
|
version: 0.5.12
|
224
|
+
- !ruby/object:Gem::Dependency
|
225
|
+
name: curb
|
226
|
+
requirement: !ruby/object:Gem::Requirement
|
227
|
+
requirements:
|
228
|
+
- - '>='
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: '0'
|
231
|
+
type: :runtime
|
232
|
+
prerelease: false
|
233
|
+
version_requirements: !ruby/object:Gem::Requirement
|
234
|
+
requirements:
|
235
|
+
- - '>='
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
version: '0'
|
224
238
|
- !ruby/object:Gem::Dependency
|
225
239
|
name: rspec
|
226
240
|
requirement: !ruby/object:Gem::Requirement
|