nutella_lib 0.4.4 → 0.4.5
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/VERSION +1 -1
- data/lib/nutella_lib/app_core.rb +1 -0
- data/lib/nutella_lib/core.rb +1 -0
- data/nutella_lib.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f6e22dc80f2fa1a04b13c6285c5ab2eba470713
|
4
|
+
data.tar.gz: a8a46742e94c7e8bbe15a52071c42fb5904f0cba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f4fc82775d70c1a5eb35f53d1b8e415f91da7c74f94541ed3e1cdd29f75ed7a123be54fc0addadaf265615fdfaba78ec3275c50aee06c2a56f0f271c30db530
|
7
|
+
data.tar.gz: a5834403b96d5946f571aeb35085470f788d0709f516aaff128f0509ba46dc6d820fbbff3de30e2ec51af572b33cd92cf39b1e8f84013412f6a91a0790d9818c
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.5
|
data/lib/nutella_lib/app_core.rb
CHANGED
@@ -10,6 +10,7 @@ module Nutella
|
|
10
10
|
Nutella.run_id = nil
|
11
11
|
Nutella.component_id = component_id
|
12
12
|
Nutella.resource_id = nil
|
13
|
+
Nutella.mongo_host = broker_hostname
|
13
14
|
Nutella.mqtt = SimpleMQTTClient.new broker_hostname
|
14
15
|
# Fetch the `run_id`s list for this application and subscribe to its updates
|
15
16
|
net.async_request('app_runs_list', lambda { |res| Nutella.app.app_runs_list = res })
|
data/lib/nutella_lib/core.rb
CHANGED
data/nutella_lib.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: nutella_lib 0.4.
|
5
|
+
# stub: nutella_lib 0.4.5 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "nutella_lib"
|
9
|
-
s.version = "0.4.
|
9
|
+
s.version = "0.4.5"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|