cloudwatchtographite 0.0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7c6d5b72b7d6ded25895e8dce6783a86ace67219
4
+ data.tar.gz: 0455ae9002e6b54e70d4c4fcaaae116e3eaf44f8
5
+ SHA512:
6
+ metadata.gz: bbfa0dde05925b27fd6ef38c8463d50dbe8de7b2bee5defd6b79ae42981ed164251681d4a6ebb51788124ebb05f664e34795cf5fe1976297aff64a6bd8bf7c1b
7
+ data.tar.gz: 223af26bd56359333eddd804fd62527035d011bb3f37937fcdfb47aedb0680a7844c78cc1a45be36d81f767073a72ae00cb00bd2acb6950dbe8c5a0ea8be6409
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 1.9.3-p448
1
+ 2.3.3
data/.travis.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.0.0
4
- - 1.9.3
3
+ - 2.3.3
4
+ - 2.2.6
data/Gemfile CHANGED
@@ -1,26 +1,21 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
3
  # Required gems
4
- gem 'bundler'
5
- gem 'unf'
6
- gem "fog", "~> 1.19.0"
7
- gem 'hashifiable', '>= 0.1.3'
8
- gem 'log4r', '~> 1.1.10'
4
+ gem 'bundler', '~> 1.13'
5
+ gem 'unf', '~> 0.1'
6
+ gem 'fog', '~> 1.19', '>= 1.19.0'
7
+ gem 'hashifiable', '~> 0.1', '>= 0.1.3'
8
+ gem 'log4r', '~> 1.1', '>= 1.1.10'
9
9
 
10
10
  # Add dependencies to develop your gem here.
11
11
  # Include everything needed to run rake, tests, features, etc.
12
12
  group :development do
13
- gem 'rdoc'
14
- gem 'rspec'
15
- gem 'rspec-mocks'
16
- gem 'jeweler'
17
- gem 'cane'
18
- gem "factory_girl"
19
- end
20
-
21
- group :test do
22
- gem 'rspec'
23
- gem 'rspec-mocks'
24
- gem "factory_girl"
25
- gem 'coveralls', require: false
13
+ gem 'rdoc', '~> 5.0'
14
+ gem 'jeweler', '~> 2.3'
15
+ gem 'cane', '~> 3.0'
16
+ gem 'rspec', '~> 3.5'
17
+ gem 'rspec-mocks', '~> 3.5'
18
+ gem 'rspec-collection_matchers', '~> 1.1'
19
+ gem 'factory_girl', '~> 4'
20
+ gem 'coveralls', '~> 0', require: false
26
21
  end
data/README.md CHANGED
@@ -31,6 +31,7 @@ Usage
31
31
  -g, --graphite-server=host Graphite Server (Default: localhost)
32
32
  -P, --graphite-port=port Graphite Port (Default: 2003)
33
33
  -c, --carbon-prefix Carbon Prefix (Default: cloudwatch)
34
+ -l, --logfile=prefix Log file (Default: stderr)
34
35
  -v, --verbose Increase verbosity
35
36
  -V, --version Print version and exit
36
37
  -h, --help help
@@ -98,7 +99,7 @@ Contributing
98
99
  * Look at the [test coverage](https://coveralls.io/r/zsprackett/cloudwatchtographite) for code in need of rspec tests.
99
100
  * Do something else cool!
100
101
  * Fork the project and do your work in a topic branch.
101
- * Make sure your changes will work on both Ruby 1.9.3 and Ruby 2.0
102
+ * Make sure your changes will work on both Ruby 2.2 and Ruby 2.3
102
103
  * Add tests to prove your code works and run all the tests using `bundle exec rake`.
103
104
  * Rebase your branch against `zsprackett/cloudwatchtographite` to make sure everything is up to date.
104
105
  * Commit your changes and send a pull request.
@@ -113,7 +114,7 @@ Copyright
113
114
 
114
115
  (The MIT License)
115
116
 
116
- Copyright (c) 2013 [zsprackett (S. Zachariah Sprackett)](http://github.com/zsprackett)
117
+ Copyright (c) 2013-2016 [zsprackett (S. Zachariah Sprackett)](http://github.com/zsprackett)
117
118
 
118
119
  Permission is hereby granted, free of charge, to any person obtaining
119
120
  a copy of this software and associated documentation files (the
@@ -133,7 +134,3 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
133
134
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
134
135
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
135
136
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
136
-
137
-
138
- [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/zsprackett/cloudwatchtographite/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
139
-
@@ -75,7 +75,7 @@ opt_parser = OptionParser.new do |opt|
75
75
  opt.on("-c","--carbon-prefix=prefix","Carbon Prefix (Default: #{options[:carbon_prefix]})") do |prefix|
76
76
  options[:carbon_prefix] = prefix
77
77
  end
78
- opt.on("-l","--logfile=prefix","Log file (Default: stderr") do |logfile|
78
+ opt.on("-l","--logfile=prefix","Log file (Default: stderr)") do |logfile|
79
79
  f = Log4r::FileOutputter.new(
80
80
  'logfile',
81
81
  :filename => logfile,
@@ -15,7 +15,7 @@
15
15
  module CloudwatchToGraphite
16
16
  class VERSION
17
17
  MAJOR = 0
18
- MINOR = 0
18
+ MINOR = 1
19
19
  PATCH = 1
20
20
  BUILD = ''
21
21
 
@@ -7,7 +7,7 @@ describe CloudwatchToGraphite::Base do
7
7
 
8
8
  describe ".new" do
9
9
  it "takes three parameters and returns a CloudwatchToGraphite::Base" do
10
- @base.should be_an_instance_of CloudwatchToGraphite::Base
10
+ expect(@base).to be_an_instance_of(CloudwatchToGraphite::Base)
11
11
  end
12
12
  end
13
13
 
@@ -21,7 +21,7 @@ describe CloudwatchToGraphite::Base do
21
21
  expect { @base.carbon_prefix = '' }.to \
22
22
  raise_error(CloudwatchToGraphite::ArgumentLengthError)
23
23
  @base.carbon_prefix = "the_prefix"
24
- @base.carbon_prefix.should eql "the_prefix"
24
+ expect(@base.carbon_prefix).to eql("the_prefix")
25
25
  end
26
26
  end
27
27
  end
@@ -15,8 +15,8 @@ describe CloudwatchToGraphite::MetricDefinition do
15
15
 
16
16
  describe ".create_and_fill" do
17
17
  it "should be a MetricDefinition" do
18
- @definition.should be_an_instance_of \
19
- CloudwatchToGraphite::MetricDefinition
18
+ expect(@definition).to \
19
+ be_an_instance_of(CloudwatchToGraphite::MetricDefinition)
20
20
  end
21
21
  it "should require valid arguments" do
22
22
  expect {
@@ -30,13 +30,13 @@ describe CloudwatchToGraphite::MetricDefinition do
30
30
  describe ".new" do
31
31
  it "takes no parameters and returns a MetricDefinition" do
32
32
  d = CloudwatchToGraphite::MetricDefinition.new
33
- d.should be_an_instance_of CloudwatchToGraphite::MetricDefinition
33
+ expect(d).to be_an_instance_of(CloudwatchToGraphite::MetricDefinition)
34
34
  end
35
35
  end
36
36
 
37
37
  describe ".Namespace" do
38
38
  it "returns the correct namespace" do
39
- @definition.Namespace.should eql 'foonamespace'
39
+ expect(@definition.Namespace).to eql('foonamespace')
40
40
  end
41
41
  end
42
42
 
@@ -49,13 +49,13 @@ describe CloudwatchToGraphite::MetricDefinition do
49
49
  @definition.Namespace = @invalid_string
50
50
  }.to raise_error(CloudwatchToGraphite::ArgumentLengthError)
51
51
  @definition.Namespace = @valid_string
52
- @definition.Namespace.should eql @valid_string
52
+ expect(@definition.Namespace).to eql(@valid_string)
53
53
  end
54
54
  end
55
55
 
56
56
  describe ".MetricName" do
57
57
  it "returns the correct metricname" do
58
- @definition.MetricName.should eql 'foometricname'
58
+ expect(@definition.MetricName).to eql('foometricname')
59
59
  end
60
60
  end
61
61
 
@@ -68,17 +68,17 @@ describe CloudwatchToGraphite::MetricDefinition do
68
68
  @definition.MetricName = @invalid_string
69
69
  }.to raise_error(CloudwatchToGraphite::ArgumentLengthError)
70
70
  @definition.MetricName = @valid_string
71
- @definition.MetricName.should eql @valid_string
71
+ expect(@definition.MetricName).to eql(@valid_string)
72
72
  end
73
73
  end
74
74
 
75
75
  describe ".Statistics" do
76
76
  it "returns the correct statistics" do
77
77
  statistics = @definition.Statistics
78
- statistics.should be_an Array
79
- statistics.should include 'Sum'
80
- statistics.should include 'Average'
81
- statistics.should have(2).items
78
+ expect(statistics).to be_an(Array)
79
+ expect(statistics).to include('Sum')
80
+ expect(statistics).to include('Average')
81
+ expect(statistics).to have_exactly(2).items
82
82
  end
83
83
  end
84
84
 
@@ -104,7 +104,7 @@ describe CloudwatchToGraphite::MetricDefinition do
104
104
 
105
105
  describe ".Period" do
106
106
  it "returns the correct period" do
107
- @definition.Period.should eql 90
107
+ expect(@definition.Period).to eql(90)
108
108
  end
109
109
  end
110
110
 
@@ -114,7 +114,7 @@ describe CloudwatchToGraphite::MetricDefinition do
114
114
  @definition.Period = 'abc'
115
115
  }.to raise_error(CloudwatchToGraphite::ArgumentTypeError)
116
116
  @definition.Period = 1
117
- @definition.Period.should eql 1
117
+ expect(@definition.Period).to eql(1)
118
118
  end
119
119
  end
120
120
 
@@ -125,19 +125,19 @@ describe CloudwatchToGraphite::MetricDefinition do
125
125
  @definition.add_dimension(d)
126
126
  end
127
127
  dimensions = @definition.Dimensions
128
- dimensions.should be_an Array
129
- dimensions.should have(2).items
128
+ expect(dimensions).to be_a(Array)
129
+ expect(dimensions).to have_exactly(2).items
130
130
  dimensions.each do |d|
131
- d.should be_a Hash
132
- d.should have_key('Name')
133
- d.should have_key('Value')
131
+ expect(d).to be_a(Hash)
132
+ expect(d).to have_key('Name')
133
+ expect(d).to have_key('Value')
134
134
  end
135
135
  end
136
136
  end
137
137
 
138
138
  describe ".Unit" do
139
139
  it "returns the correct unit" do
140
- @definition.Unit.should eql 'Bits'
140
+ expect(@definition.Unit).to eql('Bits')
141
141
  end
142
142
  end
143
143
  end
@@ -13,8 +13,8 @@ describe CloudwatchToGraphite::MetricDimension do
13
13
 
14
14
  describe ".new" do
15
15
  it "takes two parameters and returns a MetricDimension" do
16
- @dimension.should be_an_instance_of \
17
- CloudwatchToGraphite::MetricDimension
16
+ expect(@dimension).to \
17
+ be_an_instance_of(CloudwatchToGraphite::MetricDimension)
18
18
  end
19
19
  end
20
20
 
@@ -23,7 +23,7 @@ describe CloudwatchToGraphite::MetricDimension do
23
23
  d = CloudwatchToGraphite::MetricDimension.create_from_hash(
24
24
  {'name' => 'a', 'value' => 'b'}
25
25
  )
26
- d.should be_an_instance_of CloudwatchToGraphite::MetricDimension
26
+ expect(d).to be_an_instance_of(CloudwatchToGraphite::MetricDimension)
27
27
  end
28
28
  it "should require valid arguments" do
29
29
  expect {
@@ -36,7 +36,7 @@ describe CloudwatchToGraphite::MetricDimension do
36
36
 
37
37
  describe ".Name" do
38
38
  it "returns the correct name" do
39
- @dimension.Name.should eql 'testname'
39
+ expect(@dimension.Name).to eql('testname')
40
40
  end
41
41
  end
42
42
 
@@ -49,13 +49,13 @@ describe CloudwatchToGraphite::MetricDimension do
49
49
  @dimension.Name = @invalid_string
50
50
  }.to raise_error(CloudwatchToGraphite::ArgumentLengthError)
51
51
  @dimension.Name = @valid_string
52
- @dimension.Name.should eql @valid_string
52
+ expect(@dimension.Name).to eql(@valid_string)
53
53
  end
54
54
  end
55
55
 
56
56
  describe ".Name" do
57
57
  it "returns the correct value" do
58
- @dimension.Value.should eql 'testval'
58
+ expect(@dimension.Value).to eql('testval')
59
59
  end
60
60
  end
61
61
 
@@ -68,7 +68,7 @@ describe CloudwatchToGraphite::MetricDimension do
68
68
  @dimension.Value = @invalid_string
69
69
  }.to raise_error(CloudwatchToGraphite::ArgumentLengthError)
70
70
  @dimension.Value = @valid_string
71
- @dimension.Value.should eql @valid_string
71
+ expect(@dimension.Value).to eql(@valid_string)
72
72
  end
73
73
  end
74
74
  end
data/spec/spec_helper.rb CHANGED
@@ -2,6 +2,8 @@ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
2
  require 'coveralls'
3
3
  require 'rspec'
4
4
  require 'factory_girl'
5
+ require 'rspec/collection_matchers'
6
+
5
7
  RSpec.configure do |config|
6
8
  config.include FactoryGirl::Syntax::Methods
7
9
  end
data/spec/version_spec.rb CHANGED
@@ -2,6 +2,6 @@ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
2
 
3
3
  describe "CloudwatchToGraphite::VERSION" do
4
4
  it "STRING must be defined" do
5
- CloudwatchToGraphite::VERSION::STRING.should_not be_empty
5
+ expect(CloudwatchToGraphite::VERSION::STRING).not_to be_empty
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,190 +1,213 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudwatchtographite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
5
- prerelease:
4
+ version: 0.1.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - S. Zachariah Sprackett
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-12-22 00:00:00.000000000 Z
11
+ date: 2016-12-28 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: bundler
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
- version: '0'
19
+ version: '1.13'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '0'
26
+ version: '1.13'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: unf
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
- version: '0'
33
+ version: '0.1'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
- version: '0'
40
+ version: '0.1'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: fog
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: 1.19.0
48
+ - - "~>"
49
+ - !ruby/object:Gem::Version
50
+ version: '1.19'
54
51
  type: :runtime
55
52
  prerelease: false
56
53
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
54
  requirements:
59
- - - ~>
55
+ - - ">="
60
56
  - !ruby/object:Gem::Version
61
57
  version: 1.19.0
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.19'
62
61
  - !ruby/object:Gem::Dependency
63
62
  name: hashifiable
64
63
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
64
  requirements:
67
- - - ! '>='
65
+ - - ">="
68
66
  - !ruby/object:Gem::Version
69
67
  version: 0.1.3
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '0.1'
70
71
  type: :runtime
71
72
  prerelease: false
72
73
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
74
  requirements:
75
- - - ! '>='
75
+ - - ">="
76
76
  - !ruby/object:Gem::Version
77
77
  version: 0.1.3
78
+ - - "~>"
79
+ - !ruby/object:Gem::Version
80
+ version: '0.1'
78
81
  - !ruby/object:Gem::Dependency
79
82
  name: log4r
80
83
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
84
  requirements:
83
- - - ~>
85
+ - - ">="
84
86
  - !ruby/object:Gem::Version
85
87
  version: 1.1.10
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '1.1'
86
91
  type: :runtime
87
92
  prerelease: false
88
93
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
94
  requirements:
91
- - - ~>
95
+ - - ">="
92
96
  - !ruby/object:Gem::Version
93
97
  version: 1.1.10
98
+ - - "~>"
99
+ - !ruby/object:Gem::Version
100
+ version: '1.1'
94
101
  - !ruby/object:Gem::Dependency
95
102
  name: rdoc
96
103
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
104
  requirements:
99
- - - ! '>='
105
+ - - "~>"
100
106
  - !ruby/object:Gem::Version
101
- version: '0'
107
+ version: '5.0'
102
108
  type: :development
103
109
  prerelease: false
104
110
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
111
  requirements:
107
- - - ! '>='
112
+ - - "~>"
108
113
  - !ruby/object:Gem::Version
109
- version: '0'
114
+ version: '5.0'
115
+ - !ruby/object:Gem::Dependency
116
+ name: jeweler
117
+ requirement: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - "~>"
120
+ - !ruby/object:Gem::Version
121
+ version: '2.3'
122
+ type: :development
123
+ prerelease: false
124
+ version_requirements: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - "~>"
127
+ - !ruby/object:Gem::Version
128
+ version: '2.3'
129
+ - !ruby/object:Gem::Dependency
130
+ name: cane
131
+ requirement: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - "~>"
134
+ - !ruby/object:Gem::Version
135
+ version: '3.0'
136
+ type: :development
137
+ prerelease: false
138
+ version_requirements: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - "~>"
141
+ - !ruby/object:Gem::Version
142
+ version: '3.0'
110
143
  - !ruby/object:Gem::Dependency
111
144
  name: rspec
112
145
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
146
  requirements:
115
- - - ! '>='
147
+ - - "~>"
116
148
  - !ruby/object:Gem::Version
117
- version: '0'
149
+ version: '3.5'
118
150
  type: :development
119
151
  prerelease: false
120
152
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
153
  requirements:
123
- - - ! '>='
154
+ - - "~>"
124
155
  - !ruby/object:Gem::Version
125
- version: '0'
156
+ version: '3.5'
126
157
  - !ruby/object:Gem::Dependency
127
158
  name: rspec-mocks
128
159
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
160
  requirements:
131
- - - ! '>='
161
+ - - "~>"
132
162
  - !ruby/object:Gem::Version
133
- version: '0'
163
+ version: '3.5'
134
164
  type: :development
135
165
  prerelease: false
136
166
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
167
  requirements:
139
- - - ! '>='
168
+ - - "~>"
140
169
  - !ruby/object:Gem::Version
141
- version: '0'
170
+ version: '3.5'
142
171
  - !ruby/object:Gem::Dependency
143
- name: jeweler
172
+ name: rspec-collection_matchers
144
173
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
174
  requirements:
147
- - - ! '>='
175
+ - - "~>"
148
176
  - !ruby/object:Gem::Version
149
- version: '0'
177
+ version: '1.1'
150
178
  type: :development
151
179
  prerelease: false
152
180
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
181
  requirements:
155
- - - ! '>='
182
+ - - "~>"
156
183
  - !ruby/object:Gem::Version
157
- version: '0'
184
+ version: '1.1'
158
185
  - !ruby/object:Gem::Dependency
159
- name: cane
186
+ name: factory_girl
160
187
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
188
  requirements:
163
- - - ! '>='
189
+ - - "~>"
164
190
  - !ruby/object:Gem::Version
165
- version: '0'
191
+ version: '4'
166
192
  type: :development
167
193
  prerelease: false
168
194
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
195
  requirements:
171
- - - ! '>='
196
+ - - "~>"
172
197
  - !ruby/object:Gem::Version
173
- version: '0'
198
+ version: '4'
174
199
  - !ruby/object:Gem::Dependency
175
- name: factory_girl
200
+ name: coveralls
176
201
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
202
  requirements:
179
- - - ! '>='
203
+ - - "~>"
180
204
  - !ruby/object:Gem::Version
181
205
  version: '0'
182
206
  type: :development
183
207
  prerelease: false
184
208
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
209
  requirements:
187
- - - ! '>='
210
+ - - "~>"
188
211
  - !ruby/object:Gem::Version
189
212
  version: '0'
190
213
  description: Pull statistics from Amazon CloudWatch into Graphite
@@ -196,9 +219,9 @@ extra_rdoc_files:
196
219
  - LICENSE
197
220
  - README.md
198
221
  files:
199
- - .coveralls.yml
200
- - .ruby-version
201
- - .travis.yml
222
+ - ".coveralls.yml"
223
+ - ".ruby-version"
224
+ - ".travis.yml"
202
225
  - Gemfile
203
226
  - LICENSE
204
227
  - README.md
@@ -224,29 +247,25 @@ files:
224
247
  homepage: http://github.com/zsprackett/cloudwatchtographite
225
248
  licenses:
226
249
  - MIT
250
+ metadata: {}
227
251
  post_install_message:
228
252
  rdoc_options: []
229
253
  require_paths:
230
254
  - lib
231
255
  required_ruby_version: !ruby/object:Gem::Requirement
232
- none: false
233
256
  requirements:
234
- - - ! '>='
257
+ - - ">="
235
258
  - !ruby/object:Gem::Version
236
259
  version: '0'
237
- segments:
238
- - 0
239
- hash: -2454461472709138499
240
260
  required_rubygems_version: !ruby/object:Gem::Requirement
241
- none: false
242
261
  requirements:
243
- - - ! '>='
262
+ - - ">="
244
263
  - !ruby/object:Gem::Version
245
264
  version: '0'
246
265
  requirements: []
247
266
  rubyforge_project:
248
- rubygems_version: 1.8.23
267
+ rubygems_version: 2.5.2
249
268
  signing_key:
250
- specification_version: 3
269
+ specification_version: 4
251
270
  summary: CloudWatch Metrics to Graphite
252
271
  test_files: []