occi-core 5.0.0.beta.18 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c064c21ee3c99c0797ec74cb93b1d82dee61ba14
4
- data.tar.gz: 6231ff87a3764db6d9f636a653176d053ebbc6b7
3
+ metadata.gz: 8ee5d882ffc4b2bbd1303e37307911dc65cf1ecd
4
+ data.tar.gz: b1d1b4fce539e518607ae2ffe5f74c92347b913c
5
5
  SHA512:
6
- metadata.gz: b9aa796fe11dbba583d485e8647faf3035257a42d67345336dc72351c59e3ccb42810e8e80508446d7f219796747acfd091134a2e8daa415173cd551a62624e4
7
- data.tar.gz: d5816e6ea5b08e1177782217aeaa678a4ef3746f52e0f80d88738e776f1ed1e0b8ba374885bf976fe7e5b3c6b0ec8d5aba6bebe2288e8840f28295fc9be7f827
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
- install: 'gem install bundler -v ">= 1.15" && bundle install --retry=10'
23
-
24
- script: 'bundle exec rake acceptance'
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
- * Hayati Bice - who wrote the initial version of a server for rOCCI
9
- * Max Günther - who wrote the EC2 backend
10
- * Andre Thevapalan - for his input regarding the JSON rendering
11
- * The OCCI WG - for developing OCCI
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
- [![Travis](https://img.shields.io/travis/EGI-FCTF/rOCCI-core.svg?style=flat-square)](http://travis-ci.org/EGI-FCTF/rOCCI-core)
3
- [![Gemnasium](https://img.shields.io/gemnasium/EGI-FCTF/rOCCI-core.svg?style=flat-square)](https://gemnasium.com/EGI-FCTF/rOCCI-core)
2
+ [![Travis](https://img.shields.io/travis/the-rocci-project/rOCCI-core.svg?style=flat-square)](http://travis-ci.org/the-rocci-project/rOCCI-core)
3
+ [![Gemnasium](https://img.shields.io/gemnasium/the-rocci-project/rOCCI-core.svg?style=flat-square)](https://gemnasium.com/the-rocci-project/rOCCI-core)
4
4
  [![Gem](https://img.shields.io/gem/v/occi-core.svg?style=flat-square)](https://rubygems.org/gems/occi-core)
5
- [![Code Climate](https://img.shields.io/codeclimate/github/EGI-FCTF/rOCCI-core.svg?style=flat-square)](https://codeclimate.com/github/EGI-FCTF/rOCCI-core)
5
+ [![Code Climate](https://img.shields.io/codeclimate/github/the-rocci-project/rOCCI-core.svg?style=flat-square)](https://codeclimate.com/github/the-rocci-project/rOCCI-core)
6
6
 
7
7
  ## Requirements
8
8
  ### Ruby
9
- * Ruby 2.2.2 is required
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
- gem install bundler
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
- Detailed documentation is available in our [wiki](https://wiki.egi.eu/wiki/ROCCI).
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/EGI-FCTF/rOCCI-core/)
38
+ [Code Documentation for rOCCI](http://rubydoc.info/github/the-rocci-project/rOCCI-core/)
43
39
 
44
40
  ### Contribute
45
41
 
@@ -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 = 'beta.18'.freeze # use `nil` for production releases
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', 'Florian Feldhaus', 'Piotr Kasprzak']
10
- gem.email = ['parak@cesnet.cz', 'florian.feldhaus@gmail.com', 'piotr.kasprzak@gwdg.de']
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/EGI-FCTF/rOCCI-core'
15
- gem.license = 'Apache License, Version 2.0'
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.beta.18
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Parak
8
- - Florian Feldhaus
9
- - Piotr Kasprzak
8
+ - Zdeněk Šustr
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2017-08-16 00:00:00.000000000 Z
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
- - florian.feldhaus@gmail.com
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/EGI-FCTF/rOCCI-core
577
+ homepage: https://github.com/the-rocci-project/rOCCI-core
580
578
  licenses:
581
- - Apache License, Version 2.0
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: 1.3.1
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: []