nutella_framework 0.4.17 → 0.4.18
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/framework_components/main_interface/views/index.erb +13 -10
- data/nutella_framework.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: f0734b827e4685a852d4450fdc3c50bd8804acf3
|
4
|
+
data.tar.gz: 8583c6ca31c9dbe49ac53c7727f3bdb119f0c43f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cd6bc6aaeb4ce404e213d44895f39fae5b62bd9bf84bbd1388b2c499b7c86f583d7dfa33a856289c7db219c4504338410a027ea66a92ccbf857aa0cd86dc263
|
7
|
+
data.tar.gz: 4dc44527005a1985c8a11618688851ee44a0771cf3b59d2e820dfc6842649ca60348b910b32f1a276eaadfccd67a0a0f037b7e020c1f994664e73f92630b42bf
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.18
|
@@ -28,19 +28,22 @@
|
|
28
28
|
<p class="lead">Use the buttons below to launch a specific interface</p>
|
29
29
|
</div>
|
30
30
|
|
31
|
-
|
32
|
-
|
33
|
-
<
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
31
|
+
<% if @interfaces.empty? %>
|
32
|
+
<p>Your interfaces will automatically be loaded here once you add them to your application </p>
|
33
|
+
<hr>
|
34
|
+
<% else %>
|
35
|
+
<!-- Run level interfaces -->
|
36
|
+
<% @interfaces.each do |i| %>
|
37
|
+
<div class="row">
|
38
|
+
<div class="col-xs-1 col-sm-1 col-lg-1"><a href="runs/<%= i[:url] %>" target="_blank" type="button" class="btn btn-danger">Launch!</a></div>
|
39
|
+
<div class="col-xs-2 col-sm-2 col-lg-2 text-center"><strong><%= i[:name] %></strong></div>
|
40
|
+
<div class="col-xs-9 col-sm-9 col-lg-9"><%= i[:description] %></div>
|
41
|
+
</div>
|
42
|
+
<% end %>
|
41
43
|
<hr>
|
42
44
|
<% end %>
|
43
45
|
|
46
|
+
|
44
47
|
<!-- Framework level interfaces -->
|
45
48
|
<div class="row">
|
46
49
|
<h2>Framework level interfaces</h2>
|
data/nutella_framework.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_framework 0.4.
|
5
|
+
# stub: nutella_framework 0.4.18 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.18"
|
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"]
|