artifice-excon 0.1.2 → 0.1.3

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 (2) hide show
  1. data/lib/artifice/excon.rb +2 -1
  2. metadata +2 -2
@@ -10,7 +10,8 @@ module Artifice
10
10
  #
11
11
  # activate_for('google.com', rack_endpoint)
12
12
  def self.activate_for(host, endpoint)
13
- Excon::Connection.endpoints[host] = endpoint
13
+ # support both hosts of http://google.com or google.com
14
+ Excon::Connection.endpoints[URI.parse(host).host || host] = endpoint
14
15
 
15
16
  # activate only after the first stub is added
16
17
  replace_connection(Artifice::Excon::Connection) \
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: artifice-excon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-10 00:00:00.000000000 Z
12
+ date: 2012-09-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: excon