berta 2.0.0 → 2.0.1

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: fe77a2da93232291aabe8c6d12e3eeda3c739744
4
- data.tar.gz: 93770cebde1409fcf7c20f36329f5728b05768e2
3
+ metadata.gz: f303b270d4d0dd7c702ed6aef25ce65d0819be0b
4
+ data.tar.gz: e1ea28fdb1e5be5a1435b51b574eb76f6fca1d3e
5
5
  SHA512:
6
- metadata.gz: c928e9fcb19dac4de670aeba0a3ef82b409b6ba27e76db22ee6bdc47c79e6e1cd4143ec22d5b309ecb746395d83a29aded0aee9d75a2d136ae1ff05a0b1ab86a
7
- data.tar.gz: 21184a21e33aee401b61a79c6720f6ccfbff2522080fdf5d075534a0d7c4aa6cc9400b2fdbed3f725d7a36845b98ccccb16110c8470721798c3375025c42cb51
6
+ metadata.gz: '09648726d9344859d11820f357cb99393d65ba33a2dd1120198417b73d9f8a45199df01fe26288e5f6a5e1baceeae525eace70cf4f801b6ee13ea0e159fe005e'
7
+ data.tar.gz: fd7ba4a8c48194ef9768f7522d3d8be46d664ec88e74c0acd45d2e70af472a363ba9a466de07b9be4209951621364fd6963a3e15fc965ee9907e73c487b08696
data/README.md CHANGED
@@ -4,11 +4,9 @@
4
4
 
5
5
  # Berta
6
6
 
7
- [![Build Status](https://travis-ci.org/dudoslav/berta.svg?branch=master)](https://travis-ci.org/dudoslav/berta)
8
- [![Coverage Status](https://coveralls.io/repos/github/dudoslav/berta/badge.svg?branch=master)](https://coveralls.io/github/dudoslav/berta?branch=master)
9
- [![Code Climate](https://codeclimate.com/github/dudoslav/berta/badges/gpa.svg)](https://codeclimate.com/github/dudoslav/berta)
10
- [![Inline docs](http://inch-ci.org/github/dudoslav/berta.svg?branch=master)](http://inch-ci.org/github/dudoslav/berta)
11
- [![Dependency Status](https://gemnasium.com/badges/github.com/dudoslav/berta.svg)](https://gemnasium.com/github.com/dudoslav/berta)
7
+ [![Build Status](https://travis-ci.org/the-berta-project/berta.svg?branch=master)](https://travis-ci.org/the-berta-project/berta)
8
+ [![Coverage Status](https://coveralls.io/repos/github/the-berta-project/berta/badge.svg?branch=master)](https://coveralls.io/github/the-berta-project/berta?branch=master)
9
+ [![Maintainability](https://api.codeclimate.com/v1/badges/561a29e682b0006b6f44/maintainability)](https://codeclimate.com/github/the-berta-project/berta/maintainability)
12
10
  [![Gem Version](https://badge.fury.io/rb/berta.svg)](https://badge.fury.io/rb/berta)
13
11
 
14
12
  Berta cleans cloud from unused vms. She sets expiration to all virtual machines
@@ -27,7 +25,7 @@ gem install berta
27
25
  From source:
28
26
 
29
27
  ```bash
30
- git clone git://github.com/dudoslav/berta.git
28
+ git clone https://github.com/the-berta-project/berta.git
31
29
  cd berta
32
30
  gem install bundler
33
31
  bundle install
@@ -7,9 +7,9 @@ Gem::Specification.new do |s|
7
7
  s.version = Berta::VERSION
8
8
  s.summary = 'Berta VM expiration tool'
9
9
  s.description = 'Berta will check all VMs on OpenNebula cloud for expiration date'
10
- s.authors = ['Dusan Baran']
11
- s.email = 'dbaran@hotmail.sk'
12
- s.homepage = 'https://github.com/dudoslav/berta'
10
+ s.authors = ['Dusan Baran', 'Boris Parak', 'Michal Kimle']
11
+ s.email = 'work.dusanbaran@gmail.com'
12
+ s.homepage = 'https://github.com/the-berta-project/berta'
13
13
  s.license = 'Apache License, Version 2.0'
14
14
  s.required_ruby_version = '>= 2.1'
15
15
 
@@ -1,5 +1,6 @@
1
1
  require 'thor'
2
2
  require 'yell'
3
+ require 'mail'
3
4
 
4
5
  module Berta
5
6
  # CLI for berta
@@ -1,3 +1,3 @@
1
1
  module Berta
2
- VERSION = '2.0.0'.freeze
2
+ VERSION = '2.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: berta
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dusan Baran
8
+ - Boris Parak
9
+ - Michal Kimle
8
10
  autorequire:
9
11
  bindir: bin
10
12
  cert_chain: []
11
- date: 2017-11-08 00:00:00.000000000 Z
13
+ date: 2017-11-13 00:00:00.000000000 Z
12
14
  dependencies:
13
15
  - !ruby/object:Gem::Dependency
14
16
  name: bundler
@@ -235,7 +237,7 @@ dependencies:
235
237
  - !ruby/object:Gem::Version
236
238
  version: '2.0'
237
239
  description: Berta will check all VMs on OpenNebula cloud for expiration date
238
- email: dbaran@hotmail.sk
240
+ email: work.dusanbaran@gmail.com
239
241
  executables:
240
242
  - berta
241
243
  extensions: []
@@ -285,7 +287,7 @@ files:
285
287
  - lib/berta/utils/opennebula/helper.rb
286
288
  - lib/berta/version.rb
287
289
  - lib/berta/virtual_machine_handler.rb
288
- homepage: https://github.com/dudoslav/berta
290
+ homepage: https://github.com/the-berta-project/berta
289
291
  licenses:
290
292
  - Apache License, Version 2.0
291
293
  metadata: {}