stubby 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -16
  3. data/lib/stubby.rb +0 -1
  4. metadata +15 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f38ff8f7b58794817a1c178189f880cd7b8db098
4
- data.tar.gz: b65868abd54c1c17bc55e68986c35a7bf3478343
3
+ metadata.gz: 31d17193ca522cacf8d7a1c998b03917fad252fc
4
+ data.tar.gz: 44fa077c0371cb01b6da4e7bc552b4c4ef5fc4e6
5
5
  SHA512:
6
- metadata.gz: dcedd3d647130d6bed3bad3f13274a24c5ea56cbad4b5f0f0685c0ab92d40952d4154bb41cdaac44c2d2006f9a06f92db39d029df6f3cba8c6056bf2a72a35b9
7
- data.tar.gz: 62da797f1c88e47687f3639dd77ef48c20a482c87dfafa08c15449012a98a020bfb186fe91390c66c1afb80b32afccc79d59708f58f1701d9c35f1deb69a7a2f
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. This
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 (like pow, with lethal power)
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
- * point a client to the right version of an app without editing a hosts file.
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
- I've been through several restructurings of this application so far, but
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
@@ -1,7 +1,6 @@
1
1
  STUBBY_MASTER="172.16.123.1"
2
2
 
3
3
  require 'rubygems'
4
- require 'bundler/setup'
5
4
 
6
5
  require 'oj'
7
6
  require 'multi_json'
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.9
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