zephyr 1.0.0 → 1.0.1

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.
Files changed (5) hide show
  1. data/README.md +20 -0
  2. data/VERSION +1 -1
  3. data/lib/zephyr.rb +0 -1
  4. data/zephyr.gemspec +1 -1
  5. metadata +3 -3
data/README.md CHANGED
@@ -1 +1,21 @@
1
1
  ## Simple HTTP client using Typheous, derived from the Riak client
2
+
3
+ ### Notes
4
+
5
+ It works for us, handles a large number operations a day. It hasn't been polished for the public yet. I wanted to get
6
+ it up on RubyGems quickly: I was fighting the consquences of Ruby's global mutable namespaces combined with the
7
+ unfortunate choice of naming our library Http and suddenly fighting with http_parser.rb for class Http vs module Http.
8
+
9
+
10
+ ### Authors
11
+
12
+ * Coda Hale
13
+ * Benjamin Kudria
14
+ * Jordi Bunster
15
+ * Matthew Knopp
16
+ * Mohammed Rafiq
17
+ * Ryan Kennedy
18
+
19
+ ### References
20
+
21
+ * Ruby Riak Client: https://bitbucket.org/basho/riak-ruby-client/src
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
data/lib/zephyr.rb CHANGED
@@ -306,7 +306,6 @@ class Zephyr
306
306
  end
307
307
  end
308
308
  end
309
- Http = YammerHttp
310
309
 
311
310
  # Represents headers from an HTTP request or response.
312
311
  # Used internally by HTTP backends for processing headers.
data/zephyr.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{zephyr}
8
- s.version = "1.0.0"
8
+ s.version = "1.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Matt Knopp"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zephyr
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matt Knopp