nutella_framework 0.6.11 → 0.6.12
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/Gemfile +1 -1
- data/VERSION +1 -1
- data/framework_components/room-places-bot/room_places_bot.rb +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce75b7fb3791c3d9efb202b41a4ef2f80a98d102
|
|
4
|
+
data.tar.gz: 9405e96d98c17a367fd354b08d5d044c5a97de6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ef2201f0e9ccb6e54c51ba8ed3715b05b0da38c35ecd10b5dd5502a9ef5b00816abb8f0a060c0efd6057fe4d0f497c3dcfc522160184d6b4cceec39a4d47738
|
|
7
|
+
data.tar.gz: 87949e257e379834d363fcaa72f2aa8002f586da060f429a3147c285fae947b4a673121283552fdc8fab1e67d2b06a29d5b19ed169925ee5f51c0aa31c2efd92
|
data/Gemfile
CHANGED
|
@@ -8,7 +8,7 @@ gem 'sinatra-cross_origin', '~> 0.3.2'
|
|
|
8
8
|
gem 'thin', '~>1.6'
|
|
9
9
|
gem 'nokogiri', '~>1.6'
|
|
10
10
|
gem 'slop', '~>4.0'
|
|
11
|
-
gem 'nutella_lib','~>0.4', '>=0.4.
|
|
11
|
+
gem 'nutella_lib','~>0.4', '>=0.4.24'
|
|
12
12
|
gem 'activesupport', '~>4.2'
|
|
13
13
|
gem 'mandrill-api', '~>1.0', '>=1.0.53'
|
|
14
14
|
gem 'bson', '~> 3.0'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.12
|
|
@@ -728,6 +728,7 @@ while sleep 0.5
|
|
|
728
728
|
Nutella.runlist.runs_for_app(app_id).each do |run_id|
|
|
729
729
|
baseStations = []
|
|
730
730
|
resources = nutella.f.persist.get_run_mongo_object_store(app_id, run_id, 'resources')
|
|
731
|
+
resources.set_auto_save(false)
|
|
731
732
|
|
|
732
733
|
resources.to_h.each do |_, resource|
|
|
733
734
|
if resource['proximity'] != nil && resource['proximity']['timestamp'] != nil
|
|
@@ -754,6 +755,8 @@ while sleep 0.5
|
|
|
754
755
|
cache.publish_update
|
|
755
756
|
cache.publish_exit
|
|
756
757
|
cache.publish_enter
|
|
758
|
+
|
|
759
|
+
resources.save # Save the resource on the DB
|
|
757
760
|
end
|
|
758
761
|
end
|
|
759
762
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nutella_framework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alessandro Gnoli
|
|
@@ -128,7 +128,7 @@ dependencies:
|
|
|
128
128
|
requirements:
|
|
129
129
|
- - ">="
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: 0.4.
|
|
131
|
+
version: 0.4.24
|
|
132
132
|
- - "~>"
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
134
|
version: '0.4'
|
|
@@ -138,7 +138,7 @@ dependencies:
|
|
|
138
138
|
requirements:
|
|
139
139
|
- - ">="
|
|
140
140
|
- !ruby/object:Gem::Version
|
|
141
|
-
version: 0.4.
|
|
141
|
+
version: 0.4.24
|
|
142
142
|
- - "~>"
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
144
|
version: '0.4'
|