cp_oraclecloud 0.1.6 → 0.1.7
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/README.md +18 -22
- data/app/views/products/_cp_oraclecloud_component_menu.html.erb +13 -0
- data/lib/cp_oraclecloud.rb +1 -0
- data/lib/cp_oraclecloud/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b309be01ededecda8f4a122b74ebe1321881ecf
|
4
|
+
data.tar.gz: 4df976087afbfe24dadedfa3d01dea592a39f0dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 128ac380fb8511765adb409840014026eefa25d07df8f63fbbfefaad796bb69507fda78146d64f2f72747dd847ae68dc669ca5caa02344d30022c4480dbe6c4f
|
7
|
+
data.tar.gz: ba0185bd806417b7dcac1127b6afbf7aba76368697167e986fdc2776b12e0068ce5c9f3735d2c3071dbda911685f1fc2d453fc34e2671cb8b2f9868cd1c06747
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# CP_OracleCloud
|
2
|
+
Cloud Portal plugin to support the Oracle Cloud Platform.
|
3
3
|
|
4
4
|
## Usage
|
5
|
-
|
5
|
+
This is included by default in the Cloud Portal project. It relies on that project and will not work stand-alone.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
Add this line to your application's Gemfile:
|
@@ -20,28 +20,24 @@ Or install it yourself as:
|
|
20
20
|
```bash
|
21
21
|
$ gem install cp_oraclecloud
|
22
22
|
```
|
23
|
-
|
23
|
+
Configuration options need to be added to an initliazer in your app. Eg: in config/initializers/cp_oraclecloud.rb
|
24
24
|
|
25
|
-
```
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
development:
|
35
|
-
<<: *defaults
|
36
|
-
|
37
|
-
test:
|
38
|
-
<<: *defaults
|
39
|
-
|
40
|
-
production:
|
41
|
-
<<: *defaults
|
25
|
+
```ruby
|
26
|
+
CpOraclecloud.setup do |config|
|
27
|
+
config.username = <username>
|
28
|
+
config.password = <password>
|
29
|
+
config.domain = <domain>
|
30
|
+
config.region = <region, remove if using US data centres>
|
31
|
+
config.compute_api = <compute url>
|
32
|
+
config.storage_api = <storage url>
|
33
|
+
end
|
42
34
|
```
|
43
35
|
## Contributing
|
44
|
-
|
36
|
+
1. Fork it ( https://github.com/Joelith/cp_oraclecloud )
|
37
|
+
2. Create your feature branch (git checkout -b my-new-feature)
|
38
|
+
3. Commit your changes (git commit -am 'Add some feature')
|
39
|
+
4. Push to the branch (git push origin my-new-feature)
|
40
|
+
5. Create a new Pull Request
|
45
41
|
|
46
42
|
## License
|
47
43
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Oracle Cloud Platform<span class="caret"></span>
|
2
|
+
</button>
|
3
|
+
<ul class="dropdown-menu">
|
4
|
+
<% CpOraclecloud.active_components.each do | comp | %>
|
5
|
+
<li>
|
6
|
+
<% if comp == 'Database' %>
|
7
|
+
<%= link_to "Create Database", [@product, CpOraclecloud::DatabaseComponent, action: :new]%>
|
8
|
+
<% elsif comp == 'Java' %>
|
9
|
+
<%= link_to "Create WebLogic", [@product, CpOraclecloud::JavaComponent, action: :new]%>
|
10
|
+
<% end %>
|
11
|
+
</li>
|
12
|
+
<% end %>
|
13
|
+
</ul>
|
data/lib/cp_oraclecloud.rb
CHANGED
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.
|
4
|
+
version: 0.1.7
|
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-
|
11
|
+
date: 2016-10-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -71,6 +71,7 @@ files:
|
|
71
71
|
- app/views/cp_oraclecloud/database_instances/_show.html.erb
|
72
72
|
- app/views/cp_oraclecloud/java_components/_fields.html.erb
|
73
73
|
- app/views/cp_oraclecloud/java_instances/_show.html.erb
|
74
|
+
- app/views/products/_cp_oraclecloud_component_menu.html.erb
|
74
75
|
- config/routes.rb
|
75
76
|
- lib/cp_oraclecloud.rb
|
76
77
|
- lib/cp_oraclecloud/engine.rb
|