cloud_connect 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,2 +1,2 @@
1
- source :gemcutter
1
+ source "http://rubygems.org"
2
2
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cloud_connect (0.0.1)
4
+ cloud_connect (0.0.2)
5
5
  faraday (~> 0.5.0)
6
6
  faraday_middleware (~> 0.1.6)
7
7
  hashie (~> 0.4.0)
data/HISTORY.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.0.2 - March 22, 2011
2
+ ----------------------
3
+ * [Removed HTTP status debug log](https://github.com/mobile-devices/cloud_connect/commit/1d032259d16b82749fe595bfa0a15f05bb8af65a) (@dohzya[http://twitter.com/#!/dohzya])
4
+ * [Fixed bad links in README](https://github.com/mobile-devices/cloud_connect/commit/326416c0dcc3e444f6bb4cefbd5a63d83f2e5aa0)
5
+
1
6
  0.0.1 - February 16, 2011
2
7
  -------------------------
3
8
  * Initial release
data/README.md CHANGED
@@ -69,15 +69,15 @@ Here are some ways *you* can contribute:
69
69
  * by writing specifications
70
70
  * by writing code (**no patch is too small**: fix typos, add comments, clean up inconsistent whitespace)
71
71
  * by refactoring code
72
- * by closing [issues](http://github.com/mobiledevices/cloud_connect/issues)
72
+ * by closing [issues](http://github.com/mobile-devices/cloud_connect/issues)
73
73
  * by reviewing patches
74
74
 
75
- All contributors will be added to the [HISTORY](https://github.com/mobiledevices/cloud_connect/blob/master/HISTORY.md)
75
+ All contributors will be added to the [HISTORY](https://github.com/mobile-devices/cloud_connect/blob/master/HISTORY.md)
76
76
  file and will receive the respect and gratitude of the community.
77
77
 
78
78
  Submitting an Issue
79
79
  -------------------
80
- We use the [GitHub issue tracker](http://github.com/mobiledevices/cloud_connect/issues) to track bugs and
80
+ We use the [GitHub issue tracker](http://github.com/mobile-devices/cloud_connect/issues) to track bugs and
81
81
  features. Before submitting a bug report or feature request, check to make sure it hasn't already
82
82
  been submitted. You can indicate support for an existing issuse by voting it up. When submitting a
83
83
  bug report, please include a [Gist](http://gist.github.com/) that includes a stack trace and any
@@ -1,3 +1,3 @@
1
1
  module CloudConnect
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -2,7 +2,6 @@ module Faraday
2
2
  class Response::RaiseHttp4xx < Response::Middleware
3
3
  def self.register_on_complete(env)
4
4
  env[:response].on_complete do |response|
5
- puts "STATUS: <<<<<<<<< #{response[:status]} >>>>>>>>>>>>"
6
5
  case response[:status].to_i
7
6
  when 400
8
7
  raise CloudConnect::BadRequest, error_message(response)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud_connect
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jean-Paul Bonnetouche
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-16 00:00:00 +01:00
18
+ date: 2011-03-22 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency