http_api_client 0.2.1 → 0.2.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/README.md CHANGED
@@ -167,3 +167,6 @@ This will install `/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt`
167
167
 
168
168
  ### 0.2.1 - 2014-04-08
169
169
  * A couple of code cleanup actions
170
+
171
+ ### 0.2.2 - 2014-04-08
172
+ * TimedResult class is now no longer in the global namespace. It is in the HttpApiClient namespace now. Fixes problems with name collisions
@@ -1,30 +1,32 @@
1
1
  # encoding: utf-8
2
- class TimedResult
2
+ module HttpApiClient
3
+ class TimedResult
3
4
 
4
- def self.time(event, log_data = {})
5
- start_time = Time.now
6
- yield
7
- ensure
5
+ def self.time(event, log_data = {})
6
+ start_time = Time.now
7
+ yield
8
+ ensure
8
9
 
9
- time = millis_since(start_time)
10
+ time = millis_since(start_time)
10
11
 
11
- log_entries = ["event_name=#{event}"]
12
- log_entries << "request_id=#{Thread.current[:request_id]}" if Thread.current[:request_id]
13
- log_entries << "timing=#{time}"
14
- log_entries.concat(as_log_entries(log_data))
12
+ log_entries = ["event_name=#{event}"]
13
+ log_entries << "request_id=#{Thread.current[:request_id]}" if Thread.current[:request_id]
14
+ log_entries << "timing=#{time}"
15
+ log_entries.concat(as_log_entries(log_data))
15
16
 
16
- HttpApiClient.logger.info(log_entries.join(", "))
17
+ HttpApiClient.logger.info(log_entries.join(", "))
17
18
 
18
- end
19
+ end
19
20
 
20
- def self.millis_since(start_time)
21
- (Time.now - start_time) * 1000
22
- end
21
+ def self.millis_since(start_time)
22
+ (Time.now - start_time) * 1000
23
+ end
23
24
 
24
- def self.as_log_entries(hash)
25
- hash.inject [] do |result, entry|
26
- result << "#{entry[0]}=#{entry[1]}"
25
+ def self.as_log_entries(hash)
26
+ hash.inject [] do |result, entry|
27
+ result << "#{entry[0]}=#{entry[1]}"
28
+ end
27
29
  end
28
- end
29
30
 
30
- end
31
+ end
32
+ end
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module HttpApiClient
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
 
3
- require 'http_api_client/timed_result'
3
+ require 'http_api_client'
4
4
 
5
5
  module HttpApiClient
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: