cloud-instancetype 0.0.2 → 0.0.3

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
  SHA256:
3
- metadata.gz: 41fe792a65b33a164ea1a3b32ebb037e56b33dc5c85352fac0aac41a4926900c
4
- data.tar.gz: d4fc2967e22dca2bbb7a12408c71da8e922645f4172fe5baf9c3b1717b6aa236
3
+ metadata.gz: 81c783ece53d23f3c54b8614a4047b0db47aca667b970aea3af18e1041f93d5a
4
+ data.tar.gz: 3a04df93d869a656d0cfd9fda1a27c4d4fab3b969564b9339348ba6f73da48b0
5
5
  SHA512:
6
- metadata.gz: 61a9f8df26d9e05786014b1d89fdf29ccdbda6dce5158c86bf17d521108d874843ac70f86c21d3f5b9eb37c9e4abc1d21700c89cf76e442b58ff9fd0d0ce931b
7
- data.tar.gz: 5e924f23978574e4c6a75a6a39e7c12e7905a181bc24169d0fe5c59f17f6da8328d940ca5488827469e7e7d5f14e1a575a2b76ce129a694d14d0b90a7307fd20
6
+ metadata.gz: e6f6ff0e2130290469860f6606efc7bf7d1a473cbb14a04870646fab79be5dff0671a0bf18af9ed7bfb79978985b6249c4a430d8cd531ad3293ec209c1006f3e
7
+ data.tar.gz: d4e9bbdd652ac8358fde25c527d009182384e35cd337b6044c29e4311dd5d40fb59757ffc19ec1373db4b1256a18cb000d6f388004442b52bab581fb42b8e691
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cloud-instancetype (0.0.2)
4
+ cloud-instancetype (0.0.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Cloud::InstanceType
2
2
 
3
3
  [![Build Status](https://travis-ci.org/suse-enceladus/rubygem-cloud-instancetype.svg?branch=master)](https://travis-ci.org/suse-enceladus/rubygem-cloud-instancetype)
4
+ [![Gem Version](https://badge.fury.io/rb/cloud-instancetype.svg)](https://badge.fury.io/rb/cloud-instancetype)
4
5
 
5
6
  Public Clouds have _a lot_ of instance types. You don't want to make your users choose from every instance type under the sun; better to hand pick a few appropriate instance types and present them in a simple user interface.
6
7
 
@@ -12,11 +12,9 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Describe public cloud instance types}
13
13
  spec.homepage = "https://github.com/suse-enceladus/rubygem-cloud-instancetype"
14
14
 
15
- # Specify which files should be added to the gem when it is released.
16
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
17
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
18
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
- end
15
+ git_tracked_files = `git ls-files -z`.split("\x0")
16
+ gem_ignored_files = `git ls-files -i -X .gemignore -z`.split("\x0")
17
+ spec.files = git_tracked_files - gem_ignored_files
20
18
  spec.bindir = "exe"
21
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
20
  spec.require_paths = ["lib"]
@@ -1,5 +1,5 @@
1
1
  module Cloud
2
2
  class InstanceType
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
5
5
  end
@@ -0,0 +1,47 @@
1
+ #
2
+ # spec file for package blue-horizon
3
+ # this code base is under development
4
+ #
5
+ # Copyright (c) 2020 SUSE LLC
6
+ #
7
+ # All modifications and additions to the file contributed by third parties
8
+ # remain the property of their copyright owners, unless otherwise agreed
9
+ # upon. The license for this file, and modifications and additions to the
10
+ # file, is the same license as for the pristine package itself (unless the
11
+ # license for the pristine package is not an Open Source License, in which
12
+ # case the license is the MIT License). An "Open Source License" is a
13
+ # license that conforms to the Open Source Definition (Version 1.9)
14
+ # published by the Open Source Initiative.
15
+
16
+ # Please submit bugfixes or comments via http://bugzilla.suse.com/
17
+ #
18
+
19
+ Name: rubygem-cloud-instancetype
20
+ Version: 0.0.2
21
+ Release: 0
22
+ %define mod_name cloud-instancetype
23
+ %define mod_full_name %{mod_name}-%{version}
24
+ BuildRoot: %{_tmppath}/%{name}-%{version}-build
25
+ BuildRequires: %{rubygem gem2rpm}
26
+ BuildRequires: %{ruby}
27
+ BuildRequires: ruby-macros >= 5
28
+ Url: https://github.com/suse-enceladus/rubygem-cloud-instancetype
29
+ Source: http://rubygems.org/gems/%{mod_full_name}.gem
30
+ Summary: Describe public cloud instance types
31
+ License: GPL-3.0
32
+
33
+ %description
34
+ Describe public cloud instance types.
35
+
36
+ %prep
37
+
38
+ %build
39
+
40
+ %install
41
+ %gem_install \
42
+ --doc-files="LICENSE README.md" \
43
+ -f
44
+
45
+ %gem_packages
46
+
47
+ %changelog
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud-instancetype
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Mason
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-18 00:00:00.000000000 Z
11
+ date: 2020-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -73,10 +73,6 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - ".gitignore"
77
- - ".ruby-gemset"
78
- - ".ruby-version"
79
- - ".travis.yml"
80
76
  - Gemfile
81
77
  - Gemfile.lock
82
78
  - LICENSE
@@ -87,6 +83,7 @@ files:
87
83
  - cloud-instancetype.gemspec
88
84
  - lib/cloud/instancetype.rb
89
85
  - lib/cloud/instancetype/version.rb
86
+ - rubygem-cloud-instancetype.spec
90
87
  homepage: https://github.com/suse-enceladus/rubygem-cloud-instancetype
91
88
  licenses:
92
89
  - GPL-3.0-only
data/.gitignore DELETED
@@ -1,10 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
- .rspec_status
10
- *.gem
data/.ruby-gemset DELETED
@@ -1 +0,0 @@
1
- blue-horizon
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- 2.5.5
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.5.5
7
- script: 'bundle exec rake'