nutella_lib 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/nutella_lib/app_core.rb +2 -2
- 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: 25072166ecae9ae559f4b840e182cd7bd98d0214
|
4
|
+
data.tar.gz: 7a92ee424cc7dc05d652367a130c8e9503e3ef50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67fd2436b2c681b701507fb3bea9b6117f86469f02e72555ba02888f25f842541fa691c09ef484774c6d5688f08aee90f264ba94781fd25da3949ce314a8defc
|
7
|
+
data.tar.gz: 8fe08e8d12a9ad440c169a5795d6b1cb63de0fe81a313b91354bb390ba4fedc8f3e357cff776b5d0b796ba302e72a0a1a0974fb8a6e68adce4225a940c22e2e8
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.2
|
data/lib/nutella_lib/app_core.rb
CHANGED
@@ -12,8 +12,8 @@ module Nutella
|
|
12
12
|
Nutella.resource_id = nil
|
13
13
|
Nutella.mqtt = SimpleMQTTClient.new broker_hostname
|
14
14
|
# Fetch the `run_id`s list for this application and subscribe to its updates
|
15
|
-
|
16
|
-
|
15
|
+
@app_runs_list = net.sync_request('app_runs_list')
|
16
|
+
self.net.subscribe('app_runs_list', lambda {|message, _| Nutella.app.app_runs_list = message })
|
17
17
|
end
|
18
18
|
|
19
19
|
# Setter/getter for runs_list
|
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.2 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.2"
|
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"]
|