xero 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/lib/xero/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Xero
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -171,7 +171,6 @@ files:
171
171
  - Rakefile
172
172
  - lib/active_support/inflection_config.rb
173
173
  - lib/active_support/inflections.rb
174
- - lib/oauth/consumer.rb
175
174
  - lib/xero.rb
176
175
  - lib/xero/associations.rb
177
176
  - lib/xero/associations/belongs_to.rb
@@ -1,13 +0,0 @@
1
- module OAuth
2
- class Consumer
3
-
4
- def http_with_ssl_client_certificates(*args)
5
- @http ||= http_without_ssl_client_certificates(*args).tap do |http|
6
- http.cert = options[:ssl_client_cert]
7
- http.key = options[:ssl_client_key]
8
- end
9
- end
10
-
11
- alias_method_chain :http, :ssl_client_certificates
12
- end
13
- end