meter 0.0.3 → 0.0.4

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.
@@ -14,7 +14,7 @@ module Meter
14
14
  @primary_backend.port = options[:primary_port] || default_port
15
15
  @primary_backend.namespace = options[:namespace] || default_namespace
16
16
  @secondary_backend = Backend.new
17
- @secondary_backend.host = options[:secondary_host] || default_host
17
+ @secondary_backend.host = options[:secondary_host] || ENV['METER_SECONDARY_HOST'] || default_host
18
18
  @secondary_backend.port = options[:secondary_port] || default_secondary_port
19
19
  @secondary_backend.namespace = options[:namespace] || default_namespace
20
20
 
data/lib/meter/version.rb CHANGED
@@ -2,7 +2,7 @@ module Meter
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].compact.join('.')
8
8
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: meter
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - bukowskis