lorj 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.gitreview +4 -0
- data/Gemfile +25 -0
- data/Gemfile.lock +34 -0
- data/LICENSE.txt +14 -0
- data/README.md +652 -0
- data/Rakefile +24 -0
- data/bin/cloud_test.rb +81 -0
- data/example/students_1/process/Students.rb +20 -0
- data/example/students_1/students.rb +16 -0
- data/example/students_2/process/Students.rb +27 -0
- data/example/students_2/students.rb +36 -0
- data/example/students_3/controller/yaml_students.rb +94 -0
- data/example/students_3/controller/yaml_students_controller.rb +123 -0
- data/example/students_3/process/students.rb +118 -0
- data/example/students_3/students.rb +93 -0
- data/example/students_4/controller/yaml_students.rb +82 -0
- data/example/students_4/controller/yaml_students_controller.rb +141 -0
- data/example/students_4/process/students.rb +112 -0
- data/example/students_4/students.rb +103 -0
- data/example/yaml_students/students.rb +78 -0
- data/example/yaml_students/yaml_students.rb +115 -0
- data/lib/concept.md +111 -0
- data/lib/core/core.rb +723 -0
- data/lib/core/definition.rb +505 -0
- data/lib/core/definition_internal.rb +338 -0
- data/lib/core/lorj-basecontroller.rb +90 -0
- data/lib/core/lorj-basedefinition.rb +1079 -0
- data/lib/core/lorj-baseprocess.rb +231 -0
- data/lib/core/lorj-data.rb +567 -0
- data/lib/core/lorj-keypath.rb +115 -0
- data/lib/core_process/CloudProcess.rb +334 -0
- data/lib/core_process/global_process.rb +406 -0
- data/lib/core_process/network_process.rb +603 -0
- data/lib/img/.directory +4 -0
- data/lib/img/account_data_access.png +0 -0
- data/lib/img/config_data_access.png +0 -0
- data/lib/img/forj-lib-concept.png +0 -0
- data/lib/lorj/version.rb +3 -0
- data/lib/lorj.rb +51 -0
- data/lib/prc-account.rb +339 -0
- data/lib/prc-config.rb +1023 -0
- data/lib/prc-logging.rb +183 -0
- data/lib/prc.rb +108 -0
- data/lib/providers/hpcloud/Hpcloud.rb +419 -0
- data/lib/providers/hpcloud/compute.rb +108 -0
- data/lib/providers/hpcloud/network.rb +117 -0
- data/lib/providers/hpcloud/security_groups.rb +67 -0
- data/lib/providers/mock/Mock.rb +141 -0
- data/lib/providers/openstack/Openstack.rb +47 -0
- data/lib/providers/templates/compute.rb +42 -0
- data/lib/providers/templates/core.rb +61 -0
- data/lib/providers/templates/network.rb +33 -0
- data/lorj-spec/defaults.yaml +26 -0
- data/lorj.gemspec +39 -0
- data/spec/forj-account_spec.rb +75 -0
- data/spec/forj-config_spec.rb +196 -0
- metadata +164 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 585c6c4b0aa26950efa49b136783616c2beb4f9b
|
4
|
+
data.tar.gz: abab8d4bf4bbf1fdb4c20c91138e6581945e66b5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1c1cd5afda8dd06b00b51416e59fd0e9bf1d380037a39a9b20430dc3288328843a653e73668be6f44a0d0e04df27a637c4974979081c81d0ba0f6a72b8b8323d
|
7
|
+
data.tar.gz: 525fcd57165a83dc6100b60dabba0be2b3b2753bab245468e7f7b223b2b1fae4e9c9222e5e7c4442f14cb393a7278c5ad2d2ea44bb7e778fb1e4a9df53819905
|
data/.gitignore
ADDED
data/.gitreview
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in procontrol.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
#group(:development, :test) do
|
7
|
+
# gem 'rake'
|
8
|
+
# gem 'debugger'
|
9
|
+
# gem 'byebug'
|
10
|
+
# gem 'rspec', "~> 3.1.0", :require => false
|
11
|
+
#end
|
12
|
+
|
13
|
+
#gem 'mime-types','1.25.1'
|
14
|
+
#gem 'excon','0.31.0'
|
15
|
+
#gem 'json','1.7.5'
|
16
|
+
#gem 'nokogiri','1.5.11'
|
17
|
+
#gem 'fog', '1.19.0'
|
18
|
+
#gem 'git', '>=1.2.7'
|
19
|
+
#gem 'rainbow'
|
20
|
+
#gem 'rbx-require-relative', '~> 0.0.7'
|
21
|
+
#gem 'thor', '>=0.16.0'
|
22
|
+
#gem 'hpcloud', '~>2.0.9'
|
23
|
+
#gem 'highline','>=1.6.21'
|
24
|
+
#gem 'ansi','>=1.4.3'
|
25
|
+
#gem 'encryptor','>=1.3.0'
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
lorj (0.1.0)
|
5
|
+
ansi (>= 1.4.3)
|
6
|
+
bundler
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
ansi (1.4.3)
|
12
|
+
diff-lcs (1.2.5)
|
13
|
+
rake (10.4.2)
|
14
|
+
rspec (3.1.0)
|
15
|
+
rspec-core (~> 3.1.0)
|
16
|
+
rspec-expectations (~> 3.1.0)
|
17
|
+
rspec-mocks (~> 3.1.0)
|
18
|
+
rspec-core (3.1.7)
|
19
|
+
rspec-support (~> 3.1.0)
|
20
|
+
rspec-expectations (3.1.2)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.1.0)
|
23
|
+
rspec-mocks (3.1.3)
|
24
|
+
rspec-support (~> 3.1.0)
|
25
|
+
rspec-support (3.1.2)
|
26
|
+
|
27
|
+
PLATFORMS
|
28
|
+
ruby
|
29
|
+
|
30
|
+
DEPENDENCIES
|
31
|
+
bundler (~> 1.7)
|
32
|
+
lorj!
|
33
|
+
rake (~> 10.0)
|
34
|
+
rspec (~> 3.1.0)
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
(c) Copyright 2014 Hewlett-Packard Development Company, L.P.
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
14
|
+
|