amazon-pricing 0.1.130 → 0.1.131

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c09f9adf580b4be60a4c4044c5d7c72064f5bc7d
4
- data.tar.gz: 15dbc1e40985deaed835c25787e17a7db3ee7ab2
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ODdlMDhmMGYyNWYwYzZjYzAwNzZmYjU4YmE5NDViNmYyMWJlM2YxYg==
5
+ data.tar.gz: !binary |-
6
+ YTczNjEyYWIwNjNlNTEzOWMyMzMxZGE0OTQ4YjUxMmE0NmVjZDcwMw==
5
7
  SHA512:
6
- metadata.gz: 5612b47fe5eefcd2a7ed94aac3ca0b76f01b424a42aea034d06667aa4aaca648bee7614137846b503243114223c3602e0263288fb67eb12024838ce4fd4106ec
7
- data.tar.gz: 0756f6b8f2e15584ba8f551a7fd48efa8bb9de2c28ae11730d925eb45cd5b3e064eadf619d9476237276ebea7789bc855a57635379a917327421876547fdd75a
8
+ metadata.gz: !binary |-
9
+ YWYxYTVhNjQyNGYyZWU5NzNiYWQ2NWYyMGY2YmE3ZTJlYjhlNjNkZDRjMTIw
10
+ NWVmMDM2YTA5YzBhNWIzYzYzYjg5NzFlMGRkNDc2YWY2NGIyM2Q0MTA5YWMz
11
+ OTZiMWVlM2VlOTE4MjEzZGQ3NTlmMWM0ZWVhNmEyYTQwN2E4OGE=
12
+ data.tar.gz: !binary |-
13
+ YWI1Y2Q3MTk1NWJlOGM0OTZkMTA0MzhmZDYzNWE4Y2Y3MDk5MWE1MThjNzU5
14
+ Mjc5ZmFjNDU1NDQzZjliN2VhOTA1MzYxM2RlNGFlNDNiNDk0MzY3ZmQzYjRh
15
+ OGE3OTQ5NmZiOTBjMGUxZGRkMGVmNWU1OWVjMDYwMzU4N2ZlMjc=
@@ -2,6 +2,9 @@ module AwsPricing
2
2
  module Helper
3
3
  module InstanceType
4
4
 
5
+
6
+ VPC_ONLY_INSTANCE_FAMILIES = ['a1', 'c4', 'c5', 'c5d', 'c5n', 'f1', 'g3', 'g3s', 'h1', 'i3', 'i3p', 'm4', 'm5', 'm5d', 'm5a', 'p2', 'p3', 'p3dn', 'r4', 't2', 't3', 'x1', 'x1e', 'r5', 'r5d', 'r5a', 'z1d', 'u-6tb1', 'u-9tb1', 'u-12tb1']
7
+
5
8
  METAL = 'metal'.freeze
6
9
  # the following family sizes should be kept in size order, see #api_name_to_nf below
7
10
  @@INSTANCE_TYPES_BY_CLASSIFICATION = {
@@ -227,6 +230,7 @@ module AwsPricing
227
230
  METAL_TO_NF_TABLE
228
231
  end
229
232
 
233
+
230
234
  # Remove metal from this array? force adoption of this
231
235
  # NB: 'metal' is not in this table (since it's family specific), see #api_name_to_nf
232
236
  SIZE_TO_NF_TABLE = {
@@ -9,6 +9,5 @@
9
9
  #++
10
10
  module AwsPricing
11
11
 
12
- VERSION = '0.1.130' # [major,minor.fix]: Support for all metal instances
13
-
12
+ VERSION = '0.1.131' # [major,minor.fix]: Moving VPC only instance families to be in amazon-pricing gem
14
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amazon-pricing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.130
4
+ version: 0.1.131
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Kinsella
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-16 00:00:00.000000000 Z
11
+ date: 2019-01-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Ruby library for retrieving pricing for Amazon Web Services
14
14
  email:
@@ -19,7 +19,7 @@ extra_rdoc_files:
19
19
  - LICENSE
20
20
  - README.md
21
21
  files:
22
- - ".gitignore"
22
+ - .gitignore
23
23
  - CHANGELOG.md
24
24
  - Gemfile
25
25
  - Gemfile.lock
@@ -71,21 +71,21 @@ licenses:
71
71
  metadata: {}
72
72
  post_install_message:
73
73
  rdoc_options:
74
- - "--title"
74
+ - --title
75
75
  - amazon-pricing documentation
76
- - "--line-numbers"
77
- - "--main"
76
+ - --line-numbers
77
+ - --main
78
78
  - README.md
79
79
  require_paths:
80
80
  - lib
81
81
  required_ruby_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
- - - ">="
83
+ - - ! '>='
84
84
  - !ruby/object:Gem::Version
85
85
  version: '0'
86
86
  required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - ">="
88
+ - - ! '>='
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  requirements: []