copperegg 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +4 -0
- data/copperegg.gemspec +1 -1
- data/lib/copperegg/metric_group.rb +2 -2
- data/lib/copperegg/ver.rb +1 -1
- metadata +37 -36
- data/copperegg-0.6.0.gem +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4091d2e26520972ae8388fef9e588c0d1d2589e6
|
4
|
+
data.tar.gz: 3e5709ab6f6fbc6899015a55ad1cd9b311322c8b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a3707dd557bca8419954965971d1c0054d90a397f64f9f75405ed7cdd7a339213571d15ff9813087db213414f7a56a3fa90480ce0fd0621c6982208a26a6421a
|
7
|
+
data.tar.gz: 2664bc9d05598abbbf779a8bed7c3c1aa8ba581ce9f13fd291fac672a3d88b32c155555a3ab9a63fd642d9667253a22d16799697a8c3474d0e72bec8c842fcfd
|
data/CHANGELOG.md
CHANGED
data/copperegg.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.test_files = Dir.glob("{test,spec,features}/*")
|
18
18
|
s.executables = Dir.glob("bin/*")
|
19
19
|
|
20
|
-
s.
|
20
|
+
s.add_runtime_dependency('json_pure', '~> 1.7', '>= 1.7.6')
|
21
21
|
|
22
22
|
s.rdoc_options = ['--line-numbers', '--inline-source', '--title', 'copperegg-ruby', '--main', 'README.md']
|
23
23
|
end
|
@@ -1,10 +1,10 @@
|
|
1
1
|
module CopperEgg
|
2
2
|
class MetricGroup
|
3
3
|
include CopperEgg::Mixins::Persistence
|
4
|
-
|
4
|
+
|
5
5
|
resource "metric_groups"
|
6
6
|
|
7
|
-
attr_accessor :name, :label, :frequency, :metrics
|
7
|
+
attr_accessor :name, :label, :frequency, :metrics, :service
|
8
8
|
|
9
9
|
def load_attributes(attributes)
|
10
10
|
@metrics = []
|
data/lib/copperegg/ver.rb
CHANGED
metadata
CHANGED
@@ -1,30 +1,33 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: copperegg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
5
|
-
prerelease:
|
4
|
+
version: 0.6.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Eric Anderson
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2017-04-20 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: json_pure
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
- - ">="
|
20
21
|
- !ruby/object:Gem::Version
|
21
22
|
version: 1.7.6
|
22
23
|
type: :runtime
|
23
24
|
prerelease: false
|
24
25
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
26
|
requirements:
|
27
|
-
- - ~>
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.7'
|
30
|
+
- - ">="
|
28
31
|
- !ruby/object:Gem::Version
|
29
32
|
version: 1.7.6
|
30
33
|
description: Library for using the CopperEgg REST API
|
@@ -33,59 +36,57 @@ executables: []
|
|
33
36
|
extensions: []
|
34
37
|
extra_rdoc_files: []
|
35
38
|
files:
|
36
|
-
- ./CHANGELOG.md
|
37
|
-
- ./Gemfile
|
38
|
-
- ./LICENSE
|
39
|
-
- ./README.md
|
40
|
-
- ./Rakefile
|
41
|
-
- ./copperegg
|
42
|
-
- ./copperegg.
|
43
|
-
- ./lib/copperegg/api.rb
|
44
|
-
- ./lib/copperegg/custom_dashboard.rb
|
45
|
-
- ./lib/copperegg/metric_group.rb
|
46
|
-
- ./lib/copperegg/metric_sample.rb
|
47
|
-
- ./lib/copperegg/mixins/persistence.rb
|
48
|
-
- ./lib/copperegg/ver.rb
|
49
|
-
- ./
|
50
|
-
- ./
|
51
|
-
- ./test/
|
52
|
-
- ./test/
|
53
|
-
- ./test/metric_sample_test.rb
|
39
|
+
- "./CHANGELOG.md"
|
40
|
+
- "./Gemfile"
|
41
|
+
- "./LICENSE"
|
42
|
+
- "./README.md"
|
43
|
+
- "./Rakefile"
|
44
|
+
- "./copperegg.gemspec"
|
45
|
+
- "./lib/copperegg.rb"
|
46
|
+
- "./lib/copperegg/api.rb"
|
47
|
+
- "./lib/copperegg/custom_dashboard.rb"
|
48
|
+
- "./lib/copperegg/metric_group.rb"
|
49
|
+
- "./lib/copperegg/metric_sample.rb"
|
50
|
+
- "./lib/copperegg/mixins/persistence.rb"
|
51
|
+
- "./lib/copperegg/ver.rb"
|
52
|
+
- "./supplemental/release_version.sh"
|
53
|
+
- "./test/custom_dashboard_test.rb"
|
54
|
+
- "./test/metric_group_test.rb"
|
55
|
+
- "./test/metric_sample_test.rb"
|
54
56
|
- test/custom_dashboard_test.rb
|
55
57
|
- test/metric_group_test.rb
|
56
58
|
- test/metric_sample_test.rb
|
57
59
|
homepage: http://github.com/copperegg/copperegg-ruby
|
58
60
|
licenses:
|
59
61
|
- MIT
|
62
|
+
metadata: {}
|
60
63
|
post_install_message:
|
61
64
|
rdoc_options:
|
62
|
-
- --line-numbers
|
63
|
-
- --inline-source
|
64
|
-
- --title
|
65
|
+
- "--line-numbers"
|
66
|
+
- "--inline-source"
|
67
|
+
- "--title"
|
65
68
|
- copperegg-ruby
|
66
|
-
- --main
|
69
|
+
- "--main"
|
67
70
|
- README.md
|
68
71
|
require_paths:
|
69
72
|
- lib
|
70
73
|
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
-
none: false
|
72
74
|
requirements:
|
73
|
-
- -
|
75
|
+
- - ">="
|
74
76
|
- !ruby/object:Gem::Version
|
75
77
|
version: '0'
|
76
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
-
none: false
|
78
79
|
requirements:
|
79
|
-
- -
|
80
|
+
- - ">="
|
80
81
|
- !ruby/object:Gem::Version
|
81
82
|
version: '0'
|
82
83
|
requirements: []
|
83
84
|
rubyforge_project:
|
84
|
-
rubygems_version:
|
85
|
+
rubygems_version: 2.4.8
|
85
86
|
signing_key:
|
86
|
-
specification_version:
|
87
|
+
specification_version: 4
|
87
88
|
summary: Library for using the CopperEgg REST API
|
88
89
|
test_files:
|
89
|
-
- test/custom_dashboard_test.rb
|
90
90
|
- test/metric_group_test.rb
|
91
|
+
- test/custom_dashboard_test.rb
|
91
92
|
- test/metric_sample_test.rb
|
data/copperegg-0.6.0.gem
DELETED
Binary file
|