anamo 0.9.5 → 1.0.0
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 +5 -5
- data/lib/anamo/fstree/thor.rb +12 -0
- data/lib/anamo/node/thor.rb +4 -4
- data/lib/anamo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b49d96662c68b2957187ed7d410b32cb07458883825b1921e86c4fb16cb24466
|
|
4
|
+
data.tar.gz: 4cc41788415ba4211becb67495be9037b5e065df139ceca2ab8baf5c436f1262
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2333d52e25439d1b8f924c73dae2b43d85f67ca34fb277561fb4ead4c37be38e10cd2e09e60289b8769f40c06d8f9aca08bb60bbac4a00dbf867d041339bba71
|
|
7
|
+
data.tar.gz: 2cbaaeae222e5175e47bf54b853ddaa99a1711c1d7c214bc068d144429d6425675214f48cb54932b62f73d3a4bdd02ae0b2622f5b47c7cd15f1267e16b191701
|
data/lib/anamo/fstree/thor.rb
CHANGED
data/lib/anamo/node/thor.rb
CHANGED
|
@@ -70,19 +70,19 @@ module Anamo
|
|
|
70
70
|
freq = ask "How often should filesystem data be sent to server? (in seconds -- default: 240 seconds)\n", :bold
|
|
71
71
|
if freq.strip.length > 0
|
|
72
72
|
configuration['modules']['fstree'] = {
|
|
73
|
-
'frequency' => freq
|
|
73
|
+
'frequency' => freq.to_i
|
|
74
74
|
}
|
|
75
75
|
end
|
|
76
76
|
freq = ask "How often should package data be sent to server? (in seconds -- default: 60 seconds)\n", :bold
|
|
77
77
|
if freq.strip.length > 0
|
|
78
78
|
configuration['modules']['pkgver'] = {
|
|
79
|
-
'frequency' => freq
|
|
79
|
+
'frequency' => freq.to_i
|
|
80
80
|
}
|
|
81
81
|
end
|
|
82
82
|
freq = ask "How often should port data be sent to server? (in seconds -- default: 60 seconds)\n", :bold
|
|
83
83
|
if freq.strip.length > 0
|
|
84
84
|
configuration['modules']['ports'] = {
|
|
85
|
-
'frequency' => freq
|
|
85
|
+
'frequency' => freq.to_i
|
|
86
86
|
}
|
|
87
87
|
end
|
|
88
88
|
end
|
|
@@ -127,4 +127,4 @@ module Anamo
|
|
|
127
127
|
|
|
128
128
|
end
|
|
129
129
|
end
|
|
130
|
-
end
|
|
130
|
+
end
|
data/lib/anamo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: anamo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- US ProTech
|
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
136
136
|
version: '0'
|
|
137
137
|
requirements: []
|
|
138
138
|
rubyforge_project:
|
|
139
|
-
rubygems_version: 2.
|
|
139
|
+
rubygems_version: 2.7.3
|
|
140
140
|
signing_key:
|
|
141
141
|
specification_version: 4
|
|
142
142
|
summary: This gem provides a beacon that collects system telemetry for a client and
|