cloudwatch-metrics 0.1.10 → 0.1.11

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e91c58bffeee53bb5b3272031f522133f2b3ec67ad0e1c75f81193026a4d5037
4
- data.tar.gz: 742fa5b4f52be3918d782f390babb0f0c09fe819842aafbc82807d0df4d43790
3
+ metadata.gz: dce097d501539877de89d8451ef1c4f3fe2a96cbaebee60a06292b733696e30d
4
+ data.tar.gz: c65b336e84a4ed3c6c185b582e1e3488e2e95edfd01dab02f7a7d68c3e084e04
5
5
  SHA512:
6
- metadata.gz: e0293109370d02b2ceb4d4395536336719f71bf99c974b470f2c359b134d8ec2b14432f1840da8f99cb4bac03eb51590445fe9e449aa942d79403f7f05cc5307
7
- data.tar.gz: c7290bd824d12277457f388de3541926828f7cde2dc4441b74028b2f81dd9802cd965caa1482d82e0ef12d1e3ab1ef2c3cd61fc54668a58446d3a4de934257df
6
+ metadata.gz: 5decfcc8b1023d215c7771e3548888f6c3c5cddca8f23eee819d258b811ec3b1cca4c30114da6a9cf02312b1bcc1b6034477509539e40b41c83c7e47069c2bef
7
+ data.tar.gz: 386f21b0c4efe665d3b01963c9ffc236b9e9c4a22bd33d2f0f651b25076cac4bfde3ce9e985791074b28ee97c0296ee69fd6472a9c5c9e32243a82ea87edcc88
data/README.md CHANGED
@@ -59,4 +59,16 @@ Both reporting methods accept optional parameters, which are detailed below, alo
59
59
 
60
60
  ## Cloudwatch Concepts
61
61
 
62
- Refer to the [Cloudwatch Documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html) for a general overview of custom metrics in CloudWatch.
62
+ Refer to the [Cloudwatch Documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html) for a general overview of custom metrics in CloudWatch.
63
+
64
+ ## Changing this gem
65
+
66
+ If you make changes to this gem you need to do a few things to make those updates available to clients.
67
+
68
+ **Prerequisites**: You will need an account on [rubygems.org](https://rubygems.org/) and you will need to be added as an owner of this gem. Talk to Seth for this. ([Managing Owners](https://guides.rubygems.org/managing-owners-using-ui/))
69
+
70
+ 1. Bump the version in `lib/cloudwatch_metrics/version.rb`
71
+ 2. Build the updated gem with `gem build cloudwatch_metrics.gemspec`
72
+ 3. Push the updated to gem to rubygems with `gem push ./cloudwatch-metrics-[VERSION].gem`
73
+
74
+ When the change has been published clients can update to the latest version with `bundle update cloudwatch-metrics`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudwatchMetrics
4
- VERSION = "0.1.10"
4
+ VERSION = "0.1.11"
5
5
  end
@@ -57,4 +57,4 @@ module CloudwatchMetrics
57
57
  end
58
58
  end
59
59
 
60
- CW = CloudwatchMetrics unless configuration.no_cw_alias
60
+ CW = CloudwatchMetrics unless CloudwatchMetrics.configuration.no_cw_alias
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.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Puckett