nutella_framework 0.4.16 → 0.4.17
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/tmux/tmux.rb +3 -3
- data/nutella_framework.gemspec +175 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4ec549e3031d8b2a294e8e17dc3fa9ed93ebf17
|
4
|
+
data.tar.gz: bbf54ef4fc619c95708b698e6f1ab8ab81b10e06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd7097426e8c68e4e6151a69f2d86c382aa91933f249f7c9b313f6c6735031d6fe0d0586bcdf3b8e58a1bdbed54aa2bdd1214ff230a01f77b5a71920d8238d5f
|
7
|
+
data.tar.gz: 33ad0ad9507e7fd516137c5b6157c1000de2c723211ac7625442f174d93bc7c4159356c4413ab788fa32c06f2df43d88508e0068d750f6dab781bacd4c8cb739
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.17
|
data/lib/tmux/tmux.rb
CHANGED
@@ -29,17 +29,17 @@ module Nutella
|
|
29
29
|
|
30
30
|
# Removes a run-level session associated to a particular run
|
31
31
|
def self.kill_run_session( app_id, run_id )
|
32
|
-
`tmux kill-session -t #{session_name(app_id, run_id)}
|
32
|
+
`tmux kill-session -t #{session_name(app_id, run_id)} > /dev/null 2>&1`
|
33
33
|
end
|
34
34
|
|
35
35
|
# Removes the app-level session associated to a particular application
|
36
36
|
def self.kill_app_session( app_id )
|
37
|
-
`tmux kill-session -t #{app_bot_session_name( app_id )}
|
37
|
+
`tmux kill-session -t #{app_bot_session_name( app_id )} > /dev/null 2>&1`
|
38
38
|
end
|
39
39
|
|
40
40
|
# Returns true if a tmux session with a certain id exists
|
41
41
|
def self.session_exist?( session_id )
|
42
|
-
system( "tmux has-session -t #{session_id}
|
42
|
+
system( "tmux has-session -t #{session_id} > /dev/null 2>&1" )
|
43
43
|
end
|
44
44
|
|
45
45
|
# Builds a session name for run-level session
|
data/nutella_framework.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
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_framework 0.4.
|
5
|
+
# stub: nutella_framework 0.4.17 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "nutella_framework"
|
9
|
-
s.version = "0.4.
|
9
|
+
s.version = "0.4.17"
|
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"]
|
13
13
|
s.authors = ["Alessandro Gnoli"]
|
14
|
-
s.date = "2015-
|
14
|
+
s.date = "2015-05-05"
|
15
15
|
s.description = "utella is a framework to create and run RoomApps"
|
16
16
|
s.email = "tebemis@gmail.com"
|
17
17
|
s.executables = ["nutella"]
|
@@ -104,6 +104,175 @@ Gem::Specification.new do |s|
|
|
104
104
|
"framework_components/main_interface/views/index.erb",
|
105
105
|
"framework_components/main_interface/views/not_found_404.erb",
|
106
106
|
"framework_components/order.json",
|
107
|
+
"framework_components/roomcast-bot/data/default/channels-data.json",
|
108
|
+
"framework_components/roomcast-bot/data/default/channels.json",
|
109
|
+
"framework_components/roomcast-bot/data/default/configs.json",
|
110
|
+
"framework_components/roomcast-bot/data/default/mapping.json",
|
111
|
+
"framework_components/roomcast-bot/roomcast_bot.rb",
|
112
|
+
"framework_components/roomcast-bot/startup",
|
113
|
+
"framework_components/roomcast-channel-creator/.gitignore",
|
114
|
+
"framework_components/roomcast-channel-creator/README.md",
|
115
|
+
"framework_components/roomcast-channel-creator/dist/app.js",
|
116
|
+
"framework_components/roomcast-channel-creator/dist/css/font-awesome.min.css",
|
117
|
+
"framework_components/roomcast-channel-creator/dist/css/ionicons.min.css",
|
118
|
+
"framework_components/roomcast-channel-creator/dist/fonts/FontAwesome.otf",
|
119
|
+
"framework_components/roomcast-channel-creator/dist/fonts/fontawesome-webfont.eot",
|
120
|
+
"framework_components/roomcast-channel-creator/dist/fonts/fontawesome-webfont.svg",
|
121
|
+
"framework_components/roomcast-channel-creator/dist/fonts/fontawesome-webfont.ttf",
|
122
|
+
"framework_components/roomcast-channel-creator/dist/fonts/fontawesome-webfont.woff",
|
123
|
+
"framework_components/roomcast-channel-creator/dist/fonts/fontawesome-webfont.woff2",
|
124
|
+
"framework_components/roomcast-channel-creator/dist/fonts/ionicons.eot",
|
125
|
+
"framework_components/roomcast-channel-creator/dist/fonts/ionicons.svg",
|
126
|
+
"framework_components/roomcast-channel-creator/dist/fonts/ionicons.ttf",
|
127
|
+
"framework_components/roomcast-channel-creator/dist/fonts/ionicons.woff",
|
128
|
+
"framework_components/roomcast-channel-creator/dist/main.css",
|
129
|
+
"framework_components/roomcast-channel-creator/dist/nutella_lib.js",
|
130
|
+
"framework_components/roomcast-channel-creator/gulp/config.js",
|
131
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/browserify.js",
|
132
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/build.js",
|
133
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/css.js",
|
134
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/default.js",
|
135
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/fonts.js",
|
136
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/less.js",
|
137
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/mui-fonts.js",
|
138
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/nutella.js",
|
139
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/setWatch.js",
|
140
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/svgs.js",
|
141
|
+
"framework_components/roomcast-channel-creator/gulp/tasks/watch.js",
|
142
|
+
"framework_components/roomcast-channel-creator/gulp/util/bundleLogger.js",
|
143
|
+
"framework_components/roomcast-channel-creator/gulp/util/handleErrors.js",
|
144
|
+
"framework_components/roomcast-channel-creator/gulpfile.js",
|
145
|
+
"framework_components/roomcast-channel-creator/index.html",
|
146
|
+
"framework_components/roomcast-channel-creator/nutella.json",
|
147
|
+
"framework_components/roomcast-channel-creator/package.json",
|
148
|
+
"framework_components/roomcast-channel-creator/src/app/app.js",
|
149
|
+
"framework_components/roomcast-channel-creator/src/app/components/AnimationMixin.js",
|
150
|
+
"framework_components/roomcast-channel-creator/src/app/components/CataloguePage.js",
|
151
|
+
"framework_components/roomcast-channel-creator/src/app/components/Channel.js",
|
152
|
+
"framework_components/roomcast-channel-creator/src/app/components/ColorCell.js",
|
153
|
+
"framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js",
|
154
|
+
"framework_components/roomcast-channel-creator/src/app/components/DetailPage.js",
|
155
|
+
"framework_components/roomcast-channel-creator/src/app/components/NutellaMixin.js",
|
156
|
+
"framework_components/roomcast-channel-creator/src/app/components/PageSliderMixin.js",
|
157
|
+
"framework_components/roomcast-channel-creator/src/app/components/Router.js",
|
158
|
+
"framework_components/roomcast-channel-creator/src/app/components/TopBar.js",
|
159
|
+
"framework_components/roomcast-channel-creator/src/app/components/main.js",
|
160
|
+
"framework_components/roomcast-channel-creator/src/css/font-awesome.min.css",
|
161
|
+
"framework_components/roomcast-channel-creator/src/css/ionicons.min.css",
|
162
|
+
"framework_components/roomcast-channel-creator/src/fonts/FontAwesome.otf",
|
163
|
+
"framework_components/roomcast-channel-creator/src/fonts/fontawesome-webfont.eot",
|
164
|
+
"framework_components/roomcast-channel-creator/src/fonts/fontawesome-webfont.svg",
|
165
|
+
"framework_components/roomcast-channel-creator/src/fonts/fontawesome-webfont.ttf",
|
166
|
+
"framework_components/roomcast-channel-creator/src/fonts/fontawesome-webfont.woff",
|
167
|
+
"framework_components/roomcast-channel-creator/src/fonts/fontawesome-webfont.woff2",
|
168
|
+
"framework_components/roomcast-channel-creator/src/fonts/ionicons.eot",
|
169
|
+
"framework_components/roomcast-channel-creator/src/fonts/ionicons.svg",
|
170
|
+
"framework_components/roomcast-channel-creator/src/fonts/ionicons.ttf",
|
171
|
+
"framework_components/roomcast-channel-creator/src/fonts/ionicons.woff",
|
172
|
+
"framework_components/roomcast-channel-creator/src/less/main.less",
|
173
|
+
"framework_components/roomcast-channel-creator/src/less/my_overrides.less",
|
174
|
+
"framework_components/roomcast-package-creator/.gitignore",
|
175
|
+
"framework_components/roomcast-package-creator/README.md",
|
176
|
+
"framework_components/roomcast-package-creator/dist/app.js",
|
177
|
+
"framework_components/roomcast-package-creator/dist/css/font-awesome.min.css",
|
178
|
+
"framework_components/roomcast-package-creator/dist/css/ionicons.min.css",
|
179
|
+
"framework_components/roomcast-package-creator/dist/fonts/FontAwesome.otf",
|
180
|
+
"framework_components/roomcast-package-creator/dist/fonts/fontawesome-webfont.eot",
|
181
|
+
"framework_components/roomcast-package-creator/dist/fonts/fontawesome-webfont.svg",
|
182
|
+
"framework_components/roomcast-package-creator/dist/fonts/fontawesome-webfont.ttf",
|
183
|
+
"framework_components/roomcast-package-creator/dist/fonts/fontawesome-webfont.woff",
|
184
|
+
"framework_components/roomcast-package-creator/dist/fonts/fontawesome-webfont.woff2",
|
185
|
+
"framework_components/roomcast-package-creator/dist/fonts/ionicons.eot",
|
186
|
+
"framework_components/roomcast-package-creator/dist/fonts/ionicons.svg",
|
187
|
+
"framework_components/roomcast-package-creator/dist/fonts/ionicons.ttf",
|
188
|
+
"framework_components/roomcast-package-creator/dist/fonts/ionicons.woff",
|
189
|
+
"framework_components/roomcast-package-creator/dist/fonts/material-ui-icons.eot",
|
190
|
+
"framework_components/roomcast-package-creator/dist/fonts/material-ui-icons.svg",
|
191
|
+
"framework_components/roomcast-package-creator/dist/fonts/material-ui-icons.ttf",
|
192
|
+
"framework_components/roomcast-package-creator/dist/fonts/material-ui-icons.woff",
|
193
|
+
"framework_components/roomcast-package-creator/dist/main.css",
|
194
|
+
"framework_components/roomcast-package-creator/dist/nutella_lib.js",
|
195
|
+
"framework_components/roomcast-package-creator/gulp/config.js",
|
196
|
+
"framework_components/roomcast-package-creator/gulp/tasks/browserify.js",
|
197
|
+
"framework_components/roomcast-package-creator/gulp/tasks/build.js",
|
198
|
+
"framework_components/roomcast-package-creator/gulp/tasks/css.js",
|
199
|
+
"framework_components/roomcast-package-creator/gulp/tasks/default.js",
|
200
|
+
"framework_components/roomcast-package-creator/gulp/tasks/fonts.js",
|
201
|
+
"framework_components/roomcast-package-creator/gulp/tasks/less.js",
|
202
|
+
"framework_components/roomcast-package-creator/gulp/tasks/mui-fonts.js",
|
203
|
+
"framework_components/roomcast-package-creator/gulp/tasks/nutella.js",
|
204
|
+
"framework_components/roomcast-package-creator/gulp/tasks/setWatch.js",
|
205
|
+
"framework_components/roomcast-package-creator/gulp/tasks/svgs.js",
|
206
|
+
"framework_components/roomcast-package-creator/gulp/tasks/watch.js",
|
207
|
+
"framework_components/roomcast-package-creator/gulp/util/bundleLogger.js",
|
208
|
+
"framework_components/roomcast-package-creator/gulp/util/handleErrors.js",
|
209
|
+
"framework_components/roomcast-package-creator/gulpfile.js",
|
210
|
+
"framework_components/roomcast-package-creator/index.html",
|
211
|
+
"framework_components/roomcast-package-creator/nutella.json",
|
212
|
+
"framework_components/roomcast-package-creator/package.json",
|
213
|
+
"framework_components/roomcast-package-creator/src/app/app.js",
|
214
|
+
"framework_components/roomcast-package-creator/src/app/components/ButtonInteractionsMixin.js",
|
215
|
+
"framework_components/roomcast-package-creator/src/app/components/ChannelCard.js",
|
216
|
+
"framework_components/roomcast-package-creator/src/app/components/ChannelItem.js",
|
217
|
+
"framework_components/roomcast-package-creator/src/app/components/ChannelsCatalogue.js",
|
218
|
+
"framework_components/roomcast-package-creator/src/app/components/ChannelsPanel.js",
|
219
|
+
"framework_components/roomcast-package-creator/src/app/components/ConfigField.js",
|
220
|
+
"framework_components/roomcast-package-creator/src/app/components/ConfigurationsPanel.js",
|
221
|
+
"framework_components/roomcast-package-creator/src/app/components/ContextButton.js",
|
222
|
+
"framework_components/roomcast-package-creator/src/app/components/GlobalButton.js",
|
223
|
+
"framework_components/roomcast-package-creator/src/app/components/NutellaMixin.js",
|
224
|
+
"framework_components/roomcast-package-creator/src/app/components/PoolHeader.js",
|
225
|
+
"framework_components/roomcast-package-creator/src/app/components/PoolRow.js",
|
226
|
+
"framework_components/roomcast-package-creator/src/app/components/ResourceFamilyPool.js",
|
227
|
+
"framework_components/roomcast-package-creator/src/app/components/ResourcesPanel.js",
|
228
|
+
"framework_components/roomcast-package-creator/src/app/components/main.js",
|
229
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/dialog_.jsx",
|
230
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/drop-down-menu.jsx",
|
231
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/enhanced-textarea.jsx",
|
232
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/floating-action-button_.jsx",
|
233
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/menu-item.jsx",
|
234
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/menu.jsx",
|
235
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/overlay.jsx",
|
236
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/raised-button_.jsx",
|
237
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/right-nav.jsx",
|
238
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/drop-down-arrow.jsx",
|
239
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/navigation-chevron-left.jsx",
|
240
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/navigation-chevron-right.jsx",
|
241
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/navigation-menu.jsx",
|
242
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/svg-icon.jsx",
|
243
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/toggle-check-box-checked.jsx",
|
244
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/toggle-check-box-outline-blank.jsx",
|
245
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/toggle-radio-button-off.jsx",
|
246
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/svg-icons/toggle-radio-button-on.jsx",
|
247
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/text-field.jsx",
|
248
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/utils/css-event.js",
|
249
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/utils/date-time.js",
|
250
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/utils/dom.js",
|
251
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/utils/events.js",
|
252
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/utils/key-code.js",
|
253
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/utils/key-line.js",
|
254
|
+
"framework_components/roomcast-package-creator/src/app/components/material-ui/utils/unique-id.js",
|
255
|
+
"framework_components/roomcast-package-creator/src/css/font-awesome.min.css",
|
256
|
+
"framework_components/roomcast-package-creator/src/css/ionicons.min.css",
|
257
|
+
"framework_components/roomcast-package-creator/src/fonts/FontAwesome.otf",
|
258
|
+
"framework_components/roomcast-package-creator/src/fonts/fontawesome-webfont.eot",
|
259
|
+
"framework_components/roomcast-package-creator/src/fonts/fontawesome-webfont.svg",
|
260
|
+
"framework_components/roomcast-package-creator/src/fonts/fontawesome-webfont.ttf",
|
261
|
+
"framework_components/roomcast-package-creator/src/fonts/fontawesome-webfont.woff",
|
262
|
+
"framework_components/roomcast-package-creator/src/fonts/fontawesome-webfont.woff2",
|
263
|
+
"framework_components/roomcast-package-creator/src/fonts/ionicons.eot",
|
264
|
+
"framework_components/roomcast-package-creator/src/fonts/ionicons.svg",
|
265
|
+
"framework_components/roomcast-package-creator/src/fonts/ionicons.ttf",
|
266
|
+
"framework_components/roomcast-package-creator/src/fonts/ionicons.woff",
|
267
|
+
"framework_components/roomcast-package-creator/src/less/drop-down-icon.less",
|
268
|
+
"framework_components/roomcast-package-creator/src/less/drop-down-menu.less",
|
269
|
+
"framework_components/roomcast-package-creator/src/less/enhanced-textarea.less",
|
270
|
+
"framework_components/roomcast-package-creator/src/less/main.less",
|
271
|
+
"framework_components/roomcast-package-creator/src/less/menu-item.less",
|
272
|
+
"framework_components/roomcast-package-creator/src/less/menu.less",
|
273
|
+
"framework_components/roomcast-package-creator/src/less/my_overrides.less",
|
274
|
+
"framework_components/roomcast-package-creator/src/less/svg-icon.less",
|
275
|
+
"framework_components/roomcast-package-creator/src/less/text-field.less",
|
107
276
|
"framework_components/runs_list_bot/runs_list_bot.rb",
|
108
277
|
"framework_components/runs_list_bot/startup",
|
109
278
|
"lib/commands/broker.rb",
|
@@ -164,7 +333,7 @@ Gem::Specification.new do |s|
|
|
164
333
|
s.add_runtime_dependency(%q<thin>, ["~> 1.6"])
|
165
334
|
s.add_runtime_dependency(%q<nokogiri>, ["~> 1.6"])
|
166
335
|
s.add_runtime_dependency(%q<slop>, ["~> 4.0"])
|
167
|
-
s.add_runtime_dependency(%q<nutella_lib>, [">= 0.4.
|
336
|
+
s.add_runtime_dependency(%q<nutella_lib>, [">= 0.4.12", "~> 0.4"])
|
168
337
|
s.add_development_dependency(%q<shoulda>, ["~> 3.0"])
|
169
338
|
s.add_development_dependency(%q<yard>, ["~> 0.8"])
|
170
339
|
s.add_development_dependency(%q<rdoc>, ["~> 4.0"])
|
@@ -180,7 +349,7 @@ Gem::Specification.new do |s|
|
|
180
349
|
s.add_dependency(%q<thin>, ["~> 1.6"])
|
181
350
|
s.add_dependency(%q<nokogiri>, ["~> 1.6"])
|
182
351
|
s.add_dependency(%q<slop>, ["~> 4.0"])
|
183
|
-
s.add_dependency(%q<nutella_lib>, [">= 0.4.
|
352
|
+
s.add_dependency(%q<nutella_lib>, [">= 0.4.12", "~> 0.4"])
|
184
353
|
s.add_dependency(%q<shoulda>, ["~> 3.0"])
|
185
354
|
s.add_dependency(%q<yard>, ["~> 0.8"])
|
186
355
|
s.add_dependency(%q<rdoc>, ["~> 4.0"])
|
@@ -197,7 +366,7 @@ Gem::Specification.new do |s|
|
|
197
366
|
s.add_dependency(%q<thin>, ["~> 1.6"])
|
198
367
|
s.add_dependency(%q<nokogiri>, ["~> 1.6"])
|
199
368
|
s.add_dependency(%q<slop>, ["~> 4.0"])
|
200
|
-
s.add_dependency(%q<nutella_lib>, [">= 0.4.
|
369
|
+
s.add_dependency(%q<nutella_lib>, [">= 0.4.12", "~> 0.4"])
|
201
370
|
s.add_dependency(%q<shoulda>, ["~> 3.0"])
|
202
371
|
s.add_dependency(%q<yard>, ["~> 0.8"])
|
203
372
|
s.add_dependency(%q<rdoc>, ["~> 4.0"])
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nutella_framework
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alessandro Gnoli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: semantic
|