lmc 0.6.1 → 0.6.2
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 +4 -4
- data/.gitignore +2 -0
- data/lib/lmc.rb +12 -11
- data/lib/lmc/version.rb +1 -1
- metadata +2 -4
- data/.idea/misc.xml +0 -4
- data/.idea/modules.xml +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de2309803c8cca606f470eeb197c6e8fb45e39ae
|
|
4
|
+
data.tar.gz: f78ff690a0a5e95524c203a33df9711f11d2a80e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f3ac4a105e3176947c34761e398e94d094de93bc07f4b51a153a04dfc623341b635240f657c74320890dde31084e058011cb42a54a244dae967e4ec553fd8dd
|
|
7
|
+
data.tar.gz: aac984d524ce6d9c76ac4f75cd1b97680d96c899ddd4c08b0f3117ebdb9fc8821b5d56e7aaf5e62a945c3389dcaf12c93371beb32c1fad3655e4544e2854538d
|
data/.gitignore
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
/tmp/
|
|
8
8
|
.idea/workspace.xml
|
|
9
9
|
.idea/tasks.xml
|
|
10
|
+
.idea/misc.xml
|
|
11
|
+
.idea/modules.xml
|
|
10
12
|
.idea/.rakeTasks
|
|
11
13
|
#When developing a gem, use the gemspec method in your Gemfile to avoid duplication. In general, a gem's Gemfile should contain the Rubygems source and a single gemspec line. Do not check your Gemfile.lock into version control, since it enforces precision that does not exist in the gem command, which is used to install gems in practice.
|
|
12
14
|
Gemfile.lock
|
data/lib/lmc.rb
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
require 'json'
|
|
2
2
|
require 'restclient'
|
|
3
3
|
|
|
4
|
+
module LMC
|
|
5
|
+
SERVICELIST = ['cloud-service-auth',
|
|
6
|
+
'cloud-service-devices',
|
|
7
|
+
'cloud-service-monitoring',
|
|
8
|
+
'cloud-service-config',
|
|
9
|
+
'cloud-service-licenses']
|
|
10
|
+
|
|
11
|
+
def self.useful
|
|
12
|
+
return true
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
4
16
|
Dir.glob(File.expand_path("../lmc/mixins/*.rb", __FILE__)).each do |file|
|
|
5
17
|
require file
|
|
6
18
|
end
|
|
@@ -15,14 +27,3 @@ end
|
|
|
15
27
|
end
|
|
16
28
|
end
|
|
17
29
|
|
|
18
|
-
module LMC
|
|
19
|
-
SERVICELIST = ['cloud-service-auth',
|
|
20
|
-
'cloud-service-devices',
|
|
21
|
-
'cloud-service-monitoring',
|
|
22
|
-
'cloud-service-config',
|
|
23
|
-
'cloud-service-licenses']
|
|
24
|
-
|
|
25
|
-
def self.useful
|
|
26
|
-
return true
|
|
27
|
-
end
|
|
28
|
-
end
|
data/lib/lmc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lmc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- erpel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
11
|
+
date: 2018-10-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -145,8 +145,6 @@ extra_rdoc_files: []
|
|
|
145
145
|
files:
|
|
146
146
|
- ".gitignore"
|
|
147
147
|
- ".idea/inspectionProfiles/Project_Default.xml"
|
|
148
|
-
- ".idea/misc.xml"
|
|
149
|
-
- ".idea/modules.xml"
|
|
150
148
|
- ".idea/runConfigurations/tests.xml"
|
|
151
149
|
- ".idea/vcs.xml"
|
|
152
150
|
- ".ruby-version"
|
data/.idea/misc.xml
DELETED
data/.idea/modules.xml
DELETED