cp_oraclecloud 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a839cf27bf08b34c85237dd832567b51f4b24971
4
- data.tar.gz: 7246253711b7a7e5ab12b5243c33a26e621bc224
3
+ metadata.gz: 8ea9c22de9ddc2c1fe32131c1d85fac937560878
4
+ data.tar.gz: 6aea326ab8e31464a658abedb28e1d40de5793f8
5
5
  SHA512:
6
- metadata.gz: 201e38663ac20bc1e4a92169b0d82c1bbf3e24ffae0fb5d1c1ecc1bd130125ba144ee4ce07581bb8761e20f045e086563b0f4a506023e773a1d366d2f657b082
7
- data.tar.gz: 933a1ae6ef61e064cb7ad96e469a51c8c05e29f18a6e7fa81859c8175869722f42e6da9a3289c8568ef60d73caf1fa1051c70b7616c1c83b26c859c5d3e92d9d
6
+ metadata.gz: 1fcfdbb6ae6158a599f80811b99076281c7b958d23bf24d95b7d9adb78758f8006a4bee3195a0bdd76eb375ef501b666912c4ada040b2ac3bd605806ee60059f
7
+ data.tar.gz: fd24101e958c061955be5984a2f87a3e81da26c18d688752e189a985c269e0951645f1dfe8661df80ac94c68ef0182a69d3995ead14e3211472f61ea704bd814
@@ -0,0 +1,5 @@
1
+ module CpOraclecloud
2
+ class JavaInstancesController < CloudInstancesController
3
+
4
+ end
5
+ end
@@ -0,0 +1,37 @@
1
+ <dl class="dl-horizontal">
2
+ <% ['description', 'status', 'shape', 'level', 'edition', 'version', 'service_uri'].each { |a| %>
3
+ <% if instance.attr_get(a).present? then %>
4
+ <dt><%= a.titleize() %></dt>
5
+ <dd><%= instance.attr_get(a) %></dd>
6
+ <% end %>
7
+ <% } %>
8
+ </dl>
9
+
10
+ <ul class="nav nav-tabs">
11
+ <li role="presentation" class="active"><a href="#servers" data-toggle="tab">Servers</a></li>
12
+ </ul>
13
+
14
+ <div class="tab-content ">
15
+ <div class="tab-pane active" id="servers">
16
+ <table class="table table-striped table-hover">
17
+ <thead>
18
+ <tr>
19
+ <th>Hostname</th>
20
+ <th>Status</th>
21
+ <th>Shape</th>
22
+ <th></th>
23
+ </tr>
24
+ </thead>
25
+ <tbody>
26
+ <% instance.fog.servers.each {|i| %>
27
+ <tr>
28
+ <td><%= i.hostname %></td>
29
+ <td><%= i.status %></td>
30
+ <td><%= i.shape %></td>
31
+ <td></td>
32
+ </tr>
33
+ <% } %>
34
+ </tbody>
35
+ </table>
36
+ </div>
37
+ </div>
@@ -1,3 +1,3 @@
1
1
  module CpOraclecloud
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cp_oraclecloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Nation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-18 00:00:00.000000000 Z
11
+ date: 2016-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -58,6 +58,7 @@ files:
58
58
  - app/controllers/cp_oraclecloud/database_components_controller.rb
59
59
  - app/controllers/cp_oraclecloud/database_instances_controller.rb
60
60
  - app/controllers/cp_oraclecloud/java_components_controller.rb
61
+ - app/controllers/cp_oraclecloud/java_instances_controller.rb
61
62
  - app/models/cp_oraclecloud/database_component.rb
62
63
  - app/models/cp_oraclecloud/database_instance.rb
63
64
  - app/models/cp_oraclecloud/java_component.rb
@@ -65,6 +66,7 @@ files:
65
66
  - app/views/cp_oraclecloud/database_components/_fields.html.erb
66
67
  - app/views/cp_oraclecloud/database_instances/_show.html.erb
67
68
  - app/views/cp_oraclecloud/java_components/_fields.html.erb
69
+ - app/views/cp_oraclecloud/java_instances/_show.html.erb
68
70
  - config/routes.rb
69
71
  - lib/cp_oraclecloud.rb
70
72
  - lib/cp_oraclecloud/engine.rb