cloudwatch-metrics 0.1.6 → 0.1.8

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: 1c7b4c3a04dab08714fa7f31fb526c9852f915098d5e5aac435451d1a39fb432
4
- data.tar.gz: 7cc1a7aa292ba45bacd4d555f04f4c47d0dd8d8763412fad30c828505cff846f
3
+ metadata.gz: 93a69ab5c230e1d20a5e27d6bec7aef7d2ac1dfc77565ef488a00a7c5b58cd1d
4
+ data.tar.gz: 1ef2071a486021492269cd66229bf5244027e9ed653674462cafc2693df42bb9
5
5
  SHA512:
6
- metadata.gz: f0fd243beb040a3765d9a5329b7dd4057befbc0ddef84f746e295c0d470b8b687c6cab6e4afc89778dc56e4604149e13ba46f10640f8f82c6eac8c25e0f1f1a4
7
- data.tar.gz: 56a64f946197f6e579cfec577e9f885de6e7791e65955efaabdf28a7fc64e8b9f949ed96f4ca81dbc6a417958c801a2c66958472b4450e9a4683b39db82fa31e
6
+ metadata.gz: 997371f4ba7bf239ce91ef238625a3bedd84be61a9f7c1ed9c8df68bd2b09928b485d22d572e12d1079ac6f8addcc23af63c6aacd55d6302bc7110d8286a3275
7
+ data.tar.gz: '019efd24444ef901e4b5212085012bbee3f81757b7fd2bf81e7ced58a8db273b09dc872741eec4f9baacd566f18fe6fd5ea48d54b8c1c9248c44d242062828de'
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.6"
4
+ VERSION = "0.1.8"
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,9 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class CloudwatchMetrics::InitializerGenerator < Rails::Generators::Base
4
- source_root File.expand_path('templates', __dir__)
3
+ module CloudwatchMetrics
4
+ module Generators
5
+ class InitializerGenerator < Rails::Generators::Base
6
+ source_root File.expand_path('templates', __dir__)
5
7
 
6
- def copy_initializer_file
7
- copy_file "cloudwatch_metrics.rb", "config/initializers/cloudwatch_metrics.rb"
8
+ def copy_initializer_file
9
+ copy_file "cloudwatch_metrics.rb", "config/initializers/cloudwatch_metrics.rb"
10
+ end
11
+ end
8
12
  end
9
13
  end
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.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Puckett