cloudwatch-metrics 0.1.7 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8fb68586c8d6e7fd44f5db65b31ee64d1ba6d1d8d002020c8970d3b07566c77a
4
- data.tar.gz: 99bd2846d53be024ad53a55e169db488ba2866025685eaf60b86024aa1cf7abd
3
+ metadata.gz: 586e6288f7bb28dc0f45870852ea72130d9451fbdf5c9156014cfcfa153c0589
4
+ data.tar.gz: c47d772e45bbe741b1a8ea3579000d893c4318b74a64b361ee2663e3954d837c
5
5
  SHA512:
6
- metadata.gz: 3682d76828e310595720c636455b7b1257a0a0132db341d88b82455394fb5c26b30e61d133c7afeb22725d236da9544d98b63136082a96edca811fe0a6d20ea8
7
- data.tar.gz: 8072681bc2ac5bd7fcdea34f7fc8f0e8212e35330227b52c7c04f604b136c503f69805db133cb8f184983a1da2fa96ef077db972de14fdb11d17b1fc672445b6
6
+ metadata.gz: 7c899e1748bbc566958933a8a2ea7cc0082c64ebf65ce4ad726e2d327778140da564ce49a6afef6d0e264b84296c9a548542583c2b44fcd4eecaad1d7cdf5239
7
+ data.tar.gz: 5d2c76ec9505340252ed5eb3273c30ca759777eccc02062902a6e0b6fa489a98ed38931c81bfdafcfd93b5499a59853bee8da26d25655a08cf9ca772879dc4d7
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cloudwatch-metrics (0.1.0)
4
+ cloudwatch-metrics (0.1.7)
5
5
  aws-sdk-cloudwatch (~> 1.73)
6
6
  rake (~> 13.0)
7
7
  rspec (~> 3.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudwatchMetrics
4
- VERSION = "0.1.7"
4
+ VERSION = "0.1.9"
5
5
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "cloudwatch_metrics/version"
3
+ require_relative "cloudwatch_metrics/configuration"
4
4
 
5
5
  module CloudwatchMetrics
6
6
  class Error < StandardError; end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'cloudwatch_metrics'
4
+
3
5
  CloudwatchMetrics.configure do |config|
4
6
  # This is the default namespace that all metrics from this application will be published to.
5
7
  # It should most likely be the name of the application/service.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudwatch-metrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Puckett