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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -0
- data/cloud-instancetype.gemspec +3 -5
- data/lib/cloud/instancetype/version.rb +1 -1
- data/rubygem-cloud-instancetype.spec +47 -0
- metadata +3 -6
- data/.gitignore +0 -10
- data/.ruby-gemset +0 -1
- data/.ruby-version +0 -1
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81c783ece53d23f3c54b8614a4047b0db47aca667b970aea3af18e1041f93d5a
|
|
4
|
+
data.tar.gz: 3a04df93d869a656d0cfd9fda1a27c4d4fab3b969564b9339348ba6f73da48b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6f6ff0e2130290469860f6606efc7bf7d1a473cbb14a04870646fab79be5dff0671a0bf18af9ed7bfb79978985b6249c4a430d8cd531ad3293ec209c1006f3e
|
|
7
|
+
data.tar.gz: d4e9bbdd652ac8358fde25c527d009182384e35cd337b6044c29e4311dd5d40fb59757ffc19ec1373db4b1256a18cb000d6f388004442b52bab581fb42b8e691
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Cloud::InstanceType
|
|
2
2
|
|
|
3
3
|
[](https://travis-ci.org/suse-enceladus/rubygem-cloud-instancetype)
|
|
4
|
+
[](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
|
|
data/cloud-instancetype.gemspec
CHANGED
|
@@ -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
|
-
|
|
16
|
-
|
|
17
|
-
spec.files
|
|
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"]
|
|
@@ -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.
|
|
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:
|
|
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
data/.ruby-gemset
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
blue-horizon
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.5.5
|