cp_oraclecloud 0.1.11 → 0.1.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/app/assets/javascripts/cp_oraclecloud/admin.js +2 -0
- data/app/assets/stylesheets/cp_oraclecloud/admin.css +4 -0
- data/app/controllers/cp_oraclecloud/admin_controller.rb +31 -0
- data/app/controllers/cp_oraclecloud/images_controller.rb +70 -0
- data/app/controllers/cp_oraclecloud/ssh_keys_controller.rb +16 -14
- data/app/helpers/cp_oraclecloud/admin_helper.rb +2 -0
- data/app/models/cp_oraclecloud/compute_instance.rb +5 -1
- data/app/models/cp_oraclecloud/database_component.rb +1 -1
- data/app/models/cp_oraclecloud/database_instance.rb +15 -3
- data/app/models/cp_oraclecloud/image.rb +77 -0
- data/app/models/cp_oraclecloud/java_instance.rb +7 -4
- data/app/models/cp_oraclecloud/soa_instance.rb +5 -1
- data/app/models/cp_oraclecloud/ssh_key.rb +31 -14
- data/app/policies/cp_oraclecloud/image_policy.rb +26 -0
- data/app/views/cp_oraclecloud/admin/dashboard.html.erb +178 -0
- data/app/views/cp_oraclecloud/database_instances/_show.html.erb +149 -107
- data/app/views/cp_oraclecloud/java_components/_fields.html.erb +8 -6
- data/app/views/cp_oraclecloud/java_instances/_show.html.erb +82 -34
- data/app/views/cp_oraclecloud/ssh_keys/_form.html.erb +1 -1
- data/app/views/cp_oraclecloud/ssh_keys/edit.html.erb +19 -4
- data/app/views/cp_oraclecloud/ssh_keys/new.html.erb +19 -4
- data/app/views/products/_cp_oraclecloud_component_menu.html.erb +18 -6
- data/config/initializers/fog.rb +3 -0
- data/config/routes.rb +2 -0
- data/lib/cp_oraclecloud.rb +4 -0
- data/lib/cp_oraclecloud/compute_mixin.rb +2 -1
- data/lib/cp_oraclecloud/database_mixin.rb +5 -4
- data/lib/cp_oraclecloud/engine.rb +2 -3
- data/lib/cp_oraclecloud/java_mixin.rb +6 -5
- data/lib/cp_oraclecloud/soa_mixin.rb +4 -3
- data/lib/cp_oraclecloud/version.rb +1 -1
- metadata +38 -15
@@ -1,10 +1,12 @@
|
|
1
|
-
<
|
1
|
+
<div class="bd-callout bd-callout-danger">
|
2
|
+
<p>Required fields are on the General and Database tabs. You can ignore the rest if needed</p>
|
3
|
+
</div>
|
2
4
|
<ul class="nav nav-tabs">
|
3
|
-
<li role="presentation" class="
|
4
|
-
<li role="presentation"><a href="#database" data-toggle="tab"> * Database</a></li>
|
5
|
-
<li role="presentation"><a href="#storage" data-toggle="tab"> Storage</a></li>
|
6
|
-
<li role="presentation"><a href="#networking" data-toggle="tab"> Networking</a></li>
|
7
|
-
<li role="presentation"><a href="#config" data-toggle="tab">Server Config</a></li>
|
5
|
+
<li role="presentation" class="nav-item"><a href="#general" class="nav-link" data-toggle="tab">* General</a></li>
|
6
|
+
<li role="presentation" class="nav-item"><a href="#database" class="nav-link" data-toggle="tab"> * Database</a></li>
|
7
|
+
<li role="presentation" class="nav-item"><a href="#storage" class="nav-link" data-toggle="tab"> Storage</a></li>
|
8
|
+
<li role="presentation" class="nav-item"><a href="#networking" class="nav-link" data-toggle="tab"> Networking</a></li>
|
9
|
+
<li role="presentation" class="nav-item"><a href="#config" class="nav-link" data-toggle="tab">Server Config</a></li>
|
8
10
|
</ul>
|
9
11
|
|
10
12
|
|
@@ -1,37 +1,85 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
<
|
11
|
-
|
12
|
-
</
|
1
|
+
</div>
|
2
|
+
</div>
|
3
|
+
<div class="row">
|
4
|
+
<div class="col-md-8">
|
5
|
+
<div class="row">
|
6
|
+
<div class="col-xs-6 col-lg-4">
|
7
|
+
<div class="card">
|
8
|
+
<div class="card-block p-a-0 clearfix">
|
9
|
+
<i class="fa fa-dollar bg-primary p-a-2 font-2xl m-r-1 pull-left"></i>
|
10
|
+
<div class="h5 text-primary m-b-0 p-t-1"><%= number_to_currency(instance.month_cost) %></div>
|
11
|
+
<div class="text-muted text-uppercase font-weight-bold font-xs">Cost Per Month</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
<div class="col-xs-6 col-lg-4">
|
16
|
+
<div class="card">
|
17
|
+
<div class="card-block p-a-0 clearfix">
|
18
|
+
<i class="fa fa-heartbeat bg-<%= instance.attr_get('status') == 'Running' ? 'success' : 'danger' %> p-a-2 font-2xl m-r-1 pull-left"></i>
|
19
|
+
<div class="h5 text-<%= instance.attr_get('status') == 'Running' ? 'success' : 'danger' %> m-b-0 p-t-1"><%= instance.attr_get('status') %></div>
|
20
|
+
<div class="text-muted text-uppercase font-weight-bold font-xs">Status</div>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
<div class="col-xs-6 col-lg-4">
|
25
|
+
<div class="card">
|
26
|
+
<div class="card-block p-a-0 clearfix">
|
27
|
+
<i class="fa fa-list-alt bg-info p-a-2 font-2xl m-r-1 pull-left"></i>
|
28
|
+
<div class="h5 text-info m-b-0 p-t-1"><%= instance.attr_get('shape').upcase %> - <%= instance.attr_get('edition') %></div>
|
29
|
+
<div class="text-muted text-uppercase font-weight-bold font-xs">Type</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
<div class="row">
|
35
|
+
<div class="col-xs-12">
|
36
|
+
<div class="card">
|
37
|
+
<div class="card-block">
|
38
|
+
<div class="row">
|
39
|
+
<ul class="nav nav-tabs">
|
40
|
+
<li role="presentation" class="nav-item active"><a href="#servers" data-toggle="tab" class="nav-link">Servers</a></li>
|
41
|
+
</ul>
|
42
|
+
<div class="tab-content ">
|
43
|
+
<div class="tab-pane active" id="servers">
|
44
|
+
<table class="table table-striped table-hover">
|
45
|
+
<thead>
|
46
|
+
<tr>
|
47
|
+
<th>Hostname</th>
|
48
|
+
<th>Status</th>
|
49
|
+
<th>Shape</th>
|
50
|
+
<th></th>
|
51
|
+
</tr>
|
52
|
+
</thead>
|
53
|
+
<tbody>
|
54
|
+
<% instance.fog.servers.each {|i| %>
|
55
|
+
<tr>
|
56
|
+
<td><%= i.hostname %></td>
|
57
|
+
<td><%= i.status %></td>
|
58
|
+
<td><%= i.shape %></td>
|
59
|
+
<td></td>
|
60
|
+
</tr>
|
61
|
+
<% } %>
|
62
|
+
</tbody>
|
63
|
+
</table>
|
64
|
+
</div>
|
65
|
+
</div>
|
66
|
+
</div>
|
67
|
+
</div>
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
</div>
|
71
|
+
</div>
|
72
|
+
<div class="col-md-4">
|
73
|
+
<div class="card">
|
74
|
+
<div class="card-header">Actions</div>
|
75
|
+
<div class="card-block">
|
76
|
+
<button type="button" class="btn btn-outline-primary btn-lg btn-block">Go to Console</button>
|
77
|
+
<button type="button" class="btn btn-outline-primary btn-lg btn-block">Scale Up</button>
|
78
|
+
<button type="button" class="btn btn-outline-primary btn-lg btn-block">Scale Out</button>
|
79
|
+
<button type="button" class="btn btn-outline-primary btn-lg btn-block">Backup</button>
|
80
|
+
<button type="button" class="btn btn-outline-primary btn-lg btn-block">Restore</button>
|
13
81
|
|
14
|
-
|
15
|
-
|
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>
|
82
|
+
</div>
|
83
|
+
</div>
|
36
84
|
</div>
|
37
85
|
</div>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%= simple_form_for(ssh_key) do |f| %>
|
2
2
|
|
3
3
|
<%= f.input :name %>
|
4
|
-
<%= f.input :enabled, as: :boolean %>
|
4
|
+
<%= f.input :enabled, as: :boolean, checked_value: "true", unchecked_value: "false"%>
|
5
5
|
<%= f.input :key, as: :text %>
|
6
6
|
|
7
7
|
<%= f.button :submit, class: "btn-primary" %>
|
@@ -1,4 +1,19 @@
|
|
1
|
-
<
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
<ol class="breadcrumb">
|
2
|
+
<li class="breadcrumb-item"><%= link_to "Home", root_path %></li>
|
3
|
+
<li class="breadcrumb-item"><%= link_to "Oracle Cloud", cp_oraclecloud_admin_path %></li>
|
4
|
+
<li class="breadcrumb-item active">Edit SSH Key</li>
|
5
|
+
|
6
|
+
</ol>
|
7
|
+
<div class="card">
|
8
|
+
<div class="card-header">
|
9
|
+
<i class="fa fa-edit"></i>Edit SSH Key
|
10
|
+
<div class="card-actions">
|
11
|
+
<%= link_to cp_oraclecloud_admin_path do %>
|
12
|
+
<i class="fa fa-close"></i>
|
13
|
+
<% end %>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
<div class="card-block">
|
17
|
+
<%= render "form", ssh_key: @ssh_key %>
|
18
|
+
</div>
|
19
|
+
</div>
|
@@ -1,4 +1,19 @@
|
|
1
|
-
<
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
<ol class="breadcrumb">
|
2
|
+
<li class="breadcrumb-item"><%= link_to "Home", root_path %></li>
|
3
|
+
<li class="breadcrumb-item"><%= link_to "Oracle Cloud", cp_oraclecloud_admin_path %></li>
|
4
|
+
<li class="breadcrumb-item active">New</li>
|
5
|
+
|
6
|
+
</ol>
|
7
|
+
<div class="card">
|
8
|
+
<div class="card-header">
|
9
|
+
<i class="fa fa-edit"></i>New SSH Key
|
10
|
+
<div class="card-actions">
|
11
|
+
<%= link_to cp_oraclecloud_admin_path do %>
|
12
|
+
<i class="fa fa-close"></i>
|
13
|
+
<% end %>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
<div class="card-block">
|
17
|
+
<%= render "form", ssh_key: @ssh_key %>
|
18
|
+
</div>
|
19
|
+
</div>
|
@@ -1,16 +1,28 @@
|
|
1
|
-
<button type="button" class="btn btn-
|
1
|
+
<button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Oracle Cloud Platform<span class="caret"></span>
|
2
2
|
</button>
|
3
3
|
<ul class="dropdown-menu">
|
4
4
|
<% CpOraclecloud.active_components.each do | comp | %>
|
5
|
-
<li>
|
5
|
+
<li class="dropdown-item">
|
6
6
|
<% if comp == 'Database' %>
|
7
|
-
<%= link_to
|
7
|
+
<%= link_to [@product, CpOraclecloud::DatabaseComponent, action: :new], {title: "Create Oracle Database Cloud Service"} do %>
|
8
|
+
<i class="fa fa-database"></i>
|
9
|
+
Database
|
10
|
+
<% end %>
|
8
11
|
<% elsif comp == 'Java' %>
|
9
|
-
<%= link_to
|
12
|
+
<%= link_to [@product, CpOraclecloud::JavaComponent, action: :new] do %>
|
13
|
+
<i class="fa fae-java"></i>
|
14
|
+
WebLogic
|
15
|
+
<% end %>
|
10
16
|
<% elsif comp == 'SOA' %>
|
11
|
-
<%= link_to
|
17
|
+
<%= link_to [@product, CpOraclecloud::SoaComponent, action: :new] do %>
|
18
|
+
<i class="fa fa-code-fork"></i>
|
19
|
+
SOA Suite
|
20
|
+
<% end %>
|
12
21
|
<% elsif comp == 'Compute' %>
|
13
|
-
<%= link_to
|
22
|
+
<%= link_to [@product, CpOraclecloud::ComputeComponent, action: :new] do %>
|
23
|
+
<i class="fa fa-desktop"></i>
|
24
|
+
Compute Instance
|
25
|
+
<% end %>
|
14
26
|
<% end %>
|
15
27
|
</li>
|
16
28
|
<% end %>
|
data/config/routes.rb
CHANGED
data/lib/cp_oraclecloud.rb
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
module CpOraclecloud
|
2
2
|
module DatabaseMixin
|
3
|
-
def calculate_monthly_cost(
|
3
|
+
def calculate_monthly_cost(override=nil)
|
4
|
+
if override.nil? then override = config end
|
4
5
|
cost = 0
|
5
|
-
if %w(oc3 oc4 oc5 oc6).include?
|
6
|
+
if %w(oc3 oc4 oc5 oc6).include? override['shape']
|
6
7
|
# General Compute
|
7
8
|
rates = CpOraclecloud.rate_card[:database]['general']
|
8
9
|
else
|
9
10
|
# High Memory
|
10
11
|
rates = CpOraclecloud.rate_card[:database]['high']
|
11
12
|
end
|
12
|
-
case
|
13
|
+
case override['edition']
|
13
14
|
when 'SE'
|
14
15
|
edition_rate = rates['standard']
|
15
16
|
when 'EE'
|
@@ -19,7 +20,7 @@ module CpOraclecloud
|
|
19
20
|
when 'EE_XP'
|
20
21
|
edition_rate = rates['xp']
|
21
22
|
end
|
22
|
-
if
|
23
|
+
if override['subscription_type'] == 'MONTHLY' then cost = edition_rate['monthly']
|
23
24
|
else cost = 30 * 24 * edition_rate['hourly'] end
|
24
25
|
cost
|
25
26
|
end
|
@@ -1,14 +1,15 @@
|
|
1
1
|
module CpOraclecloud
|
2
2
|
module JavaMixin
|
3
|
-
def calculate_monthly_cost(
|
4
|
-
if
|
3
|
+
def calculate_monthly_cost(override=nil)
|
4
|
+
if override.nil? then override = config end
|
5
|
+
if %w(oc3 oc4 oc5 oc6).include? override['shape']
|
5
6
|
# General Compute
|
6
7
|
rates = CpOraclecloud.rate_card[:java]['general']
|
7
8
|
else
|
8
9
|
# High Memory
|
9
10
|
rates = CpOraclecloud.rate_card[:java]['high']
|
10
11
|
end
|
11
|
-
case
|
12
|
+
case override['edition']
|
12
13
|
when 'SE'
|
13
14
|
edition_rate = rates['standard']
|
14
15
|
when 'EE'
|
@@ -16,9 +17,9 @@ module CpOraclecloud
|
|
16
17
|
when 'Suite'
|
17
18
|
edition_rate = rates['suite']
|
18
19
|
end
|
19
|
-
if
|
20
|
+
if override['subscription_type'] == 'MONTHLY' then cost = edition_rate['monthly']
|
20
21
|
else cost = 30 * 24 * edition_rate['hourly'] end
|
21
|
-
cost = cost *
|
22
|
+
cost = cost * override['num_nodes'].to_f
|
22
23
|
cost
|
23
24
|
end
|
24
25
|
end
|
@@ -1,9 +1,10 @@
|
|
1
1
|
module CpOraclecloud
|
2
2
|
module SoaMixin
|
3
|
-
def calculate_monthly_cost(
|
3
|
+
def calculate_monthly_cost(override=nil)
|
4
|
+
if override.nil? then override = config end
|
4
5
|
cost = 0
|
5
|
-
if
|
6
|
-
elsif
|
6
|
+
if override['topology'] == 'mft' then cost = CpOraclecloud.rate_card[:soa]['mft']
|
7
|
+
elsif override['topology'] == 'apim' then cost = CpOraclecloud.rate_card[:soa]['api']
|
7
8
|
else cost = CpOraclecloud.rate_card[:soa]['full'] end
|
8
9
|
cost
|
9
10
|
end
|
metadata
CHANGED
@@ -1,47 +1,61 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cp_oraclecloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Nation
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 5.0.0
|
20
|
-
- -
|
20
|
+
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 5.0.0.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - ~>
|
27
|
+
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 5.0.0
|
30
|
-
- -
|
30
|
+
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 5.0.0.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: fog-oraclecloud
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
33
47
|
- !ruby/object:Gem::Dependency
|
34
48
|
name: sqlite3
|
35
49
|
requirement: !ruby/object:Gem::Requirement
|
36
50
|
requirements:
|
37
|
-
- -
|
51
|
+
- - ">="
|
38
52
|
- !ruby/object:Gem::Version
|
39
53
|
version: '0'
|
40
54
|
type: :development
|
41
55
|
prerelease: false
|
42
56
|
version_requirements: !ruby/object:Gem::Requirement
|
43
57
|
requirements:
|
44
|
-
- -
|
58
|
+
- - ">="
|
45
59
|
- !ruby/object:Gem::Version
|
46
60
|
version: '0'
|
47
61
|
description: Plugin for Cloud_Portal to add support for the Oracle Cloud Platform
|
@@ -51,20 +65,29 @@ executables: []
|
|
51
65
|
extensions: []
|
52
66
|
extra_rdoc_files: []
|
53
67
|
files:
|
68
|
+
- MIT-LICENSE
|
69
|
+
- README.md
|
70
|
+
- Rakefile
|
54
71
|
- app/assets/config/cp_oraclecloud_manifest.js
|
72
|
+
- app/assets/javascripts/cp_oraclecloud/admin.js
|
73
|
+
- app/assets/stylesheets/cp_oraclecloud/admin.css
|
74
|
+
- app/controllers/cp_oraclecloud/admin_controller.rb
|
55
75
|
- app/controllers/cp_oraclecloud/compute_components_controller.rb
|
56
76
|
- app/controllers/cp_oraclecloud/compute_instances_controller.rb
|
57
77
|
- app/controllers/cp_oraclecloud/database_components_controller.rb
|
58
78
|
- app/controllers/cp_oraclecloud/database_instances_controller.rb
|
79
|
+
- app/controllers/cp_oraclecloud/images_controller.rb
|
59
80
|
- app/controllers/cp_oraclecloud/java_components_controller.rb
|
60
81
|
- app/controllers/cp_oraclecloud/java_instances_controller.rb
|
61
82
|
- app/controllers/cp_oraclecloud/soa_components_controller.rb
|
62
83
|
- app/controllers/cp_oraclecloud/soa_instances_controller.rb
|
63
84
|
- app/controllers/cp_oraclecloud/ssh_keys_controller.rb
|
85
|
+
- app/helpers/cp_oraclecloud/admin_helper.rb
|
64
86
|
- app/models/cp_oraclecloud/compute_component.rb
|
65
87
|
- app/models/cp_oraclecloud/compute_instance.rb
|
66
88
|
- app/models/cp_oraclecloud/database_component.rb
|
67
89
|
- app/models/cp_oraclecloud/database_instance.rb
|
90
|
+
- app/models/cp_oraclecloud/image.rb
|
68
91
|
- app/models/cp_oraclecloud/java_component.rb
|
69
92
|
- app/models/cp_oraclecloud/java_instance.rb
|
70
93
|
- app/models/cp_oraclecloud/soa_component.rb
|
@@ -74,11 +97,13 @@ files:
|
|
74
97
|
- app/policies/cp_oraclecloud/compute_instance_policy.rb
|
75
98
|
- app/policies/cp_oraclecloud/database_component_policy.rb
|
76
99
|
- app/policies/cp_oraclecloud/database_instance_policy.rb
|
100
|
+
- app/policies/cp_oraclecloud/image_policy.rb
|
77
101
|
- app/policies/cp_oraclecloud/java_component_policy.rb
|
78
102
|
- app/policies/cp_oraclecloud/java_instance_policy.rb
|
79
103
|
- app/policies/cp_oraclecloud/soa_component_policy.rb
|
80
104
|
- app/policies/cp_oraclecloud/soa_instance_policy.rb
|
81
105
|
- app/policies/cp_oraclecloud/ssh_key_policy.rb
|
106
|
+
- app/views/cp_oraclecloud/admin/dashboard.html.erb
|
82
107
|
- app/views/cp_oraclecloud/compute_components/_fields.html.erb
|
83
108
|
- app/views/cp_oraclecloud/compute_instances/_show.html.erb
|
84
109
|
- app/views/cp_oraclecloud/database_components/_fields.html.erb
|
@@ -92,18 +117,16 @@ files:
|
|
92
117
|
- app/views/cp_oraclecloud/ssh_keys/index.html.erb
|
93
118
|
- app/views/cp_oraclecloud/ssh_keys/new.html.erb
|
94
119
|
- app/views/products/_cp_oraclecloud_component_menu.html.erb
|
120
|
+
- config/initializers/fog.rb
|
95
121
|
- config/routes.rb
|
122
|
+
- lib/cp_oraclecloud.rb
|
96
123
|
- lib/cp_oraclecloud/compute_mixin.rb
|
97
124
|
- lib/cp_oraclecloud/database_mixin.rb
|
98
125
|
- lib/cp_oraclecloud/engine.rb
|
99
126
|
- lib/cp_oraclecloud/java_mixin.rb
|
100
127
|
- lib/cp_oraclecloud/soa_mixin.rb
|
101
128
|
- lib/cp_oraclecloud/version.rb
|
102
|
-
- lib/cp_oraclecloud.rb
|
103
129
|
- lib/tasks/cp_oraclecloud_tasks.rake
|
104
|
-
- MIT-LICENSE
|
105
|
-
- Rakefile
|
106
|
-
- README.md
|
107
130
|
homepage: http://github.com/Joelith
|
108
131
|
licenses:
|
109
132
|
- MIT
|
@@ -114,17 +137,17 @@ require_paths:
|
|
114
137
|
- lib
|
115
138
|
required_ruby_version: !ruby/object:Gem::Requirement
|
116
139
|
requirements:
|
117
|
-
- -
|
140
|
+
- - ">="
|
118
141
|
- !ruby/object:Gem::Version
|
119
142
|
version: '0'
|
120
143
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
144
|
requirements:
|
122
|
-
- -
|
145
|
+
- - ">="
|
123
146
|
- !ruby/object:Gem::Version
|
124
147
|
version: '0'
|
125
148
|
requirements: []
|
126
149
|
rubyforge_project:
|
127
|
-
rubygems_version: 2.
|
150
|
+
rubygems_version: 2.5.1
|
128
151
|
signing_key:
|
129
152
|
specification_version: 4
|
130
153
|
summary: Plugin for Cloud_Portal to add support for the Oracle Cloud Platform
|