skybox 0.2.3.1 → 0.3.0

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.
@@ -1,22 +0,0 @@
1
- <div class="content row">
2
- <div class="span12">
3
- <h3>Manage Actions</h3>
4
-
5
- <table class="table table-striped">
6
- <thead>
7
- <tr>
8
- <th>Name</td>
9
- </tr>
10
- </thead>
11
-
12
- <tbody>
13
- <% @actions.sort{|a,b| a['name'] <=> b['name']}.each do |action| %>
14
- <tr>
15
- <td><%= action['name'] %></td>
16
- </tr>
17
- <% end %>
18
- </tbody>
19
- </table>
20
- </div>
21
- </div>
22
-
@@ -1,26 +0,0 @@
1
- <div class="content row">
2
- <div class="span12">
3
- <h3>Manage Properties</h3>
4
-
5
- <table class="table table-striped">
6
- <thead>
7
- <tr>
8
- <th>Name</td>
9
- <th>Type</td>
10
- <th>Data Type</td>
11
- </tr>
12
- </thead>
13
-
14
- <tbody>
15
- <% @properties.sort{|a,b| a['name'] <=> b['name']}.each do |property| %>
16
- <tr>
17
- <td><%= property['name'] %></td>
18
- <td><%= (property['type'] == 1 ? 'Object' : 'Action') %></td>
19
- <td><%= property['dataType'] %></td>
20
- </tr>
21
- <% end %>
22
- </tbody>
23
- </table>
24
- </div>
25
- </div>
26
-