occi-core 5.0.0.beta.18 → 5.0.0
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/.travis.yml +19 -3
- data/AUTHORS +9 -4
- data/README.md +7 -11
- data/lib/occi/core/version.rb +1 -1
- data/occi-core.gemspec +5 -5
- metadata +9 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ee5d882ffc4b2bbd1303e37307911dc65cf1ecd
|
|
4
|
+
data.tar.gz: b1d1b4fce539e518607ae2ffe5f74c92347b913c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 993fa9077687fc522635f593f37cc565686be0fed8c022ff7affe640cb31bfef8a7bd89df1c5e260246a828760d8b51fc0f0d65da5a0d5e4b227b92fcb6815b5
|
|
7
|
+
data.tar.gz: 6962b980323f9d2f43f75901e07f8d3c353ca6e3f76829e4ea6a71ede49a813128a47820faa6812ae84533cd32c9be639ff18bb7a6b704b7cf48a4a0271501b5
|
data/.travis.yml
CHANGED
|
@@ -5,10 +5,26 @@ rvm:
|
|
|
5
5
|
- 2.3.4
|
|
6
6
|
- 2.4.1
|
|
7
7
|
- ruby-head
|
|
8
|
+
- jruby
|
|
9
|
+
- jruby-head
|
|
10
|
+
|
|
11
|
+
jdk:
|
|
12
|
+
- openjdk7
|
|
13
|
+
- openjdk8
|
|
8
14
|
|
|
9
15
|
matrix:
|
|
16
|
+
exclude:
|
|
17
|
+
- rvm: 2.2.7
|
|
18
|
+
jdk: openjdk8
|
|
19
|
+
- rvm: 2.3.4
|
|
20
|
+
jdk: openjdk8
|
|
21
|
+
- rvm: 2.4.1
|
|
22
|
+
jdk: openjdk8
|
|
23
|
+
- rvm: ruby-head
|
|
24
|
+
jdk: openjdk8
|
|
10
25
|
allow_failures:
|
|
11
26
|
- rvm: ruby-head
|
|
27
|
+
- rvm: jruby-head
|
|
12
28
|
fast_finish: true
|
|
13
29
|
|
|
14
30
|
branches:
|
|
@@ -19,8 +35,8 @@ branches:
|
|
|
19
35
|
env:
|
|
20
36
|
- ON_TRAVIS_CI=yes
|
|
21
37
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
script:
|
|
38
|
+
before_install: gem install bundler -v ">= 1.15"
|
|
39
|
+
install: bundle install --jobs=15
|
|
40
|
+
script: bundle exec rake acceptance
|
|
25
41
|
|
|
26
42
|
sudo: false
|
data/AUTHORS
CHANGED
|
@@ -2,10 +2,15 @@ rOCCI was originally designed by Florian Feldhaus (GWDG) and Piotr Kasprzak
|
|
|
2
2
|
(GWDG) in Germany. The project is currently being developed by CESNET, mainly
|
|
3
3
|
for EGI Federated Cloud.
|
|
4
4
|
|
|
5
|
+
* Boris Parák - lead developer
|
|
6
|
+
* Zdeněk Šustr - contributor
|
|
7
|
+
|
|
5
8
|
Special thanks goes to the following extraordinary individuals, without whom
|
|
6
9
|
rOCCI would not be possible:
|
|
7
10
|
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
11
|
+
* Florian Feldhaus - designing and coding early components
|
|
12
|
+
* Piotr Kasprzak - contributing to early components
|
|
13
|
+
* Hayati Bice - initial version of a server for rOCCI
|
|
14
|
+
* Max Günther - initial EC2 backend
|
|
15
|
+
* Andre Thevapalan - input regarding the JSON rendering
|
|
16
|
+
* The OCCI WG - devising the OCCI standard
|
data/README.md
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
# rOCCI-core - A Ruby OCCI Framework
|
|
2
|
-
[](http://travis-ci.org/the-rocci-project/rOCCI-core)
|
|
3
|
+
[](https://gemnasium.com/the-rocci-project/rOCCI-core)
|
|
4
4
|
[](https://rubygems.org/gems/occi-core)
|
|
5
|
-
[](https://codeclimate.com/github/the-rocci-project/rOCCI-core)
|
|
6
6
|
|
|
7
7
|
## Requirements
|
|
8
8
|
### Ruby
|
|
9
|
-
* Ruby 2.2.2
|
|
10
|
-
* Rubygems
|
|
9
|
+
* Ruby 2.2.2+ or jRuby 9+ (with JDK7 a JDK8)
|
|
11
10
|
|
|
12
11
|
## Installation
|
|
13
12
|
### As a gem
|
|
@@ -24,22 +23,19 @@ gem install occi-core --pre
|
|
|
24
23
|
### From source
|
|
25
24
|
To build and install the bleeding edge version from master
|
|
26
25
|
~~~
|
|
27
|
-
|
|
28
|
-
~~~
|
|
29
|
-
~~~
|
|
30
|
-
git clone git://github.com/EGI-FCTF/rOCCI-core.git
|
|
26
|
+
git clone git://github.com/the-rocci-project/rOCCI-core.git
|
|
31
27
|
cd rOCCI-core
|
|
32
28
|
gem build occi-core.gemspec
|
|
33
29
|
~~~
|
|
34
30
|
|
|
35
31
|
## Usage
|
|
36
|
-
|
|
32
|
+
`TODO`
|
|
37
33
|
|
|
38
34
|
## Changelog
|
|
39
35
|
See `CHANGELOG.md`.
|
|
40
36
|
|
|
41
37
|
## Code Documentation
|
|
42
|
-
[Code Documentation for rOCCI](http://rubydoc.info/github/
|
|
38
|
+
[Code Documentation for rOCCI](http://rubydoc.info/github/the-rocci-project/rOCCI-core/)
|
|
43
39
|
|
|
44
40
|
### Contribute
|
|
45
41
|
|
data/lib/occi/core/version.rb
CHANGED
|
@@ -3,7 +3,7 @@ module Occi
|
|
|
3
3
|
MAJOR_VERSION = 5 # Major update constant
|
|
4
4
|
MINOR_VERSION = 0 # Minor update constant
|
|
5
5
|
PATCH_VERSION = 0 # Patch/Fix version constant
|
|
6
|
-
STAGE_VERSION =
|
|
6
|
+
STAGE_VERSION = nil # use `nil` for production releases
|
|
7
7
|
|
|
8
8
|
unless defined?(::Occi::Core::VERSION)
|
|
9
9
|
VERSION = [
|
data/occi-core.gemspec
CHANGED
|
@@ -6,13 +6,13 @@ require 'occi/core/version'
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
7
|
gem.name = 'occi-core'
|
|
8
8
|
gem.version = Occi::Core::VERSION
|
|
9
|
-
gem.authors = ['Boris Parak', '
|
|
10
|
-
gem.email = ['parak@cesnet.cz', '
|
|
9
|
+
gem.authors = ['Boris Parak', 'Zdeněk Šustr']
|
|
10
|
+
gem.email = ['parak@cesnet.cz', 'sustr4@cesnet.cz']
|
|
11
11
|
gem.description = 'The rOCCI toolkit is a collection of classes simplifying implementation ' \
|
|
12
12
|
'of Open Cloud Computing Interface in Ruby'
|
|
13
|
-
gem.summary = 'The rOCCI toolkit'
|
|
14
|
-
gem.homepage = 'https://github.com/
|
|
15
|
-
gem.license = 'Apache
|
|
13
|
+
gem.summary = 'The rOCCI core toolkit'
|
|
14
|
+
gem.homepage = 'https://github.com/the-rocci-project/rOCCI-core'
|
|
15
|
+
gem.license = 'Apache-2.0'
|
|
16
16
|
|
|
17
17
|
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
18
|
gem.require_paths = ['lib']
|
metadata
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: occi-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.0
|
|
4
|
+
version: 5.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boris Parak
|
|
8
|
-
-
|
|
9
|
-
- Piotr Kasprzak
|
|
8
|
+
- Zdeněk Šustr
|
|
10
9
|
autorequire:
|
|
11
10
|
bindir: bin
|
|
12
11
|
cert_chain: []
|
|
13
|
-
date: 2017-08-
|
|
12
|
+
date: 2017-08-23 00:00:00.000000000 Z
|
|
14
13
|
dependencies:
|
|
15
14
|
- !ruby/object:Gem::Dependency
|
|
16
15
|
name: json
|
|
@@ -296,8 +295,7 @@ description: The rOCCI toolkit is a collection of classes simplifying implementa
|
|
|
296
295
|
of Open Cloud Computing Interface in Ruby
|
|
297
296
|
email:
|
|
298
297
|
- parak@cesnet.cz
|
|
299
|
-
-
|
|
300
|
-
- piotr.kasprzak@gwdg.de
|
|
298
|
+
- sustr4@cesnet.cz
|
|
301
299
|
executables: []
|
|
302
300
|
extensions: []
|
|
303
301
|
extra_rdoc_files: []
|
|
@@ -576,9 +574,9 @@ files:
|
|
|
576
574
|
- lib/occi/monkey_island/hash.rb
|
|
577
575
|
- lib/occi/monkey_island/ipaddr.rb
|
|
578
576
|
- occi-core.gemspec
|
|
579
|
-
homepage: https://github.com/
|
|
577
|
+
homepage: https://github.com/the-rocci-project/rOCCI-core
|
|
580
578
|
licenses:
|
|
581
|
-
- Apache
|
|
579
|
+
- Apache-2.0
|
|
582
580
|
metadata: {}
|
|
583
581
|
post_install_message:
|
|
584
582
|
rdoc_options: []
|
|
@@ -591,13 +589,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
591
589
|
version: 2.2.2
|
|
592
590
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
593
591
|
requirements:
|
|
594
|
-
- - "
|
|
592
|
+
- - ">="
|
|
595
593
|
- !ruby/object:Gem::Version
|
|
596
|
-
version:
|
|
594
|
+
version: '0'
|
|
597
595
|
requirements: []
|
|
598
596
|
rubyforge_project:
|
|
599
597
|
rubygems_version: 2.6.12
|
|
600
598
|
signing_key:
|
|
601
599
|
specification_version: 4
|
|
602
|
-
summary: The rOCCI toolkit
|
|
600
|
+
summary: The rOCCI core toolkit
|
|
603
601
|
test_files: []
|