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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 36a27e1af21d54d1f83ca6190db9ce407b878eda
4
- data.tar.gz: 113d8143e91e87e460dcaae82ef5694a0ca7e821
3
+ metadata.gz: 1b309be01ededecda8f4a122b74ebe1321881ecf
4
+ data.tar.gz: 4df976087afbfe24dadedfa3d01dea592a39f0dd
5
5
  SHA512:
6
- metadata.gz: a6d61a028824e981d7b7e5b1fbc9e9cfc5db91fdaf5fbf40c4d9fafab8102e870382b5a7b5bdbf0679fbff53159c989d70d7a7effb3642789c355ba3dbb94de9
7
- data.tar.gz: 430121df514ab69f2fd2d2676ed51bbb994b6e25dd6112959a336b63507d1c071b9ed8b527c25c712866363aa13b14b087eb3d88ae37ae0669c7b35d7768120e
6
+ metadata.gz: 128ac380fb8511765adb409840014026eefa25d07df8f63fbbfefaad796bb69507fda78146d64f2f72747dd847ae68dc669ca5caa02344d30022c4480dbe6c4f
7
+ data.tar.gz: ba0185bd806417b7dcac1127b6afbf7aba76368697167e986fdc2776b12e0068ce5c9f3735d2c3071dbda911685f1fc2d453fc34e2671cb8b2f9868cd1c06747
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # CpOraclecloud
2
- Short description and motivation.
1
+ # CP_OracleCloud
2
+ Cloud Portal plugin to support the Oracle Cloud Platform.
3
3
 
4
4
  ## Usage
5
- How to use my plugin.
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
- You need to add some configuration options to a yml file for this plugin to correctly connect to the Cloud Platform. To do so, add the following to config/config.yml:
23
+ Configuration options need to be added to an initliazer in your app. Eg: in config/initializers/cp_oraclecloud.rb
24
24
 
25
- ```yaml
26
- ---
27
- defaults: &defaults
28
- oracle_username: <username>
29
- oracle_password: <password>
30
- oracle_domain: <identity domain>
31
- oracle_compute_api: <compute api>
32
- oracle_region: <region, remove for us data centre>
33
- oracle_storage_api: <storage api>
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
- Contribution directions go here.
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>
@@ -8,6 +8,7 @@ module CpOraclecloud
8
8
  mattr_accessor :compute_api
9
9
  mattr_accessor :storage_api
10
10
  mattr_accessor :region
11
+ mattr_accessor :active_components
11
12
 
12
13
  def self.setup
13
14
  yield self
@@ -1,3 +1,3 @@
1
1
  module CpOraclecloud
2
- VERSION = '0.1.6'
2
+ VERSION = '0.1.7'
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.6
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-23 00:00:00.000000000 Z
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