brianmario-streamly 0.1.1 → 0.1.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.2 (July 28th, 2009)
4
+ * Fixed a bug regarding user credentials being forcefully set to NULL even if they weren't being used.
5
+
3
6
  ## 0.1.1 (July 27th, 2009)
4
7
  * Version bump for Github's gem builder
5
8
 
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 1
3
- :patch: 1
3
+ :patch: 2
4
4
  :major: 0
data/ext/streamly.c CHANGED
@@ -263,7 +263,7 @@ VALUE rb_streamly_init(int argc, VALUE * argv, VALUE self) {
263
263
  curl_easy_setopt(instance->handle, CURLOPT_WRITEDATA, instance->response_body_handler);
264
264
  }
265
265
 
266
- curl_easy_setopt(instance, CURLOPT_USERPWD, NULL);
266
+ // curl_easy_setopt(instance, CURLOPT_USERPWD, NULL);
267
267
  if (!NIL_P(username) || !NIL_P(password)) {
268
268
  credentials = rb_str_new2("");
269
269
  rb_str_buf_cat(credentials, RSTRING_PTR(username), RSTRING_LEN(username));
data/lib/streamly.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  require 'streamly_ext'
3
3
 
4
4
  module Streamly
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
 
7
7
  class Request
8
8
  # A helper method to make your fire-and-forget requests easier
data/streamly.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{streamly}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Brian Lopez"]
9
- s.date = %q{2009-07-27}
9
+ s.date = %q{2009-07-28}
10
10
  s.email = %q{seniorlopez@gmail.com}
11
11
  s.extensions = ["ext/extconf.rb"]
12
12
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brianmario-streamly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Lopez
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-27 00:00:00 -07:00
12
+ date: 2009-07-28 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15