MovableInkAWS 2.8.2 → 2.8.3

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
  SHA256:
3
- metadata.gz: bf52a28dc79926b9dd09f38da90e0845f64fd7db39387ec7d2d3df92a84cdf5f
4
- data.tar.gz: '0897366b09d975cd88a2333259f75de784536e7bc2441803997e3351a2d60271'
3
+ metadata.gz: 3d096bdad870a18cff103b278e833f8874b1103245c61449f4bd21860a890f5d
4
+ data.tar.gz: a29d3f61d00b182b31ed23c3bde78c47e8bc9df34ee43ac9ebfbfa4c19187b9f
5
5
  SHA512:
6
- metadata.gz: 27fa94453efdd9f4fad175b8069d0b59f135cb63068d2d393e22d9d0fd60093c2db599aa61cea1d1d19c6bbc95cce8a54dd03a1e691857a5227ea0b0ce2904b0
7
- data.tar.gz: dd1c9c8cf0732151fff6942872d36de84585ca40875aea92d8ad0d3b5fa69c4194e07757ad20fe090f952c2eeb37dba23b551b291b1640628c4b9f4a029b9370
6
+ metadata.gz: ea306be029901f358ae5fc1dc28faa88c106fc371ae867f0b9ca5f96f99cbd8cc1300ed042e4eaa7c96f6c51d95abf14411c7a8613fe8d4f3f7c8b4fa25ee1e9
7
+ data.tar.gz: 05e91e0bd903a790aecaef29ffcdb4eaea317ea5071e55d02391a59c9cf0044e374b595b05a8506de86f3cad9f8beca546b884be93c09a3fdbe496a15fed1477
@@ -8,6 +8,26 @@ on:
8
8
  branches: [$default-branch]
9
9
 
10
10
  jobs:
11
+ # This test is used to ensure the chef-solo version of ruby (2.5.0)
12
+ # is able to install miaws successfully.
13
+ test0:
14
+
15
+ runs-on: ubuntu-18.04
16
+
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+
20
+ - name: Install ruby
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: 2.5
24
+
25
+ - name: Install dependencies
26
+ run: bundle install --retry=3
27
+
28
+ - name: Run tests
29
+ run: bundle exec rspec spec/
30
+
11
31
  test:
12
32
 
13
33
  runs-on: ubuntu-18.04
data/Gemfile CHANGED
@@ -1,6 +1,8 @@
1
1
  source 'https://rubygems.org'
2
2
  gemspec
3
3
 
4
+ gem 'faraday', '= 1.10.2'
5
+
4
6
  group :test do
5
7
  gem 'rspec', '~> 3.6'
6
8
  gem 'webmock'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- MovableInkAWS (2.8.2)
4
+ MovableInkAWS (2.8.3)
5
5
  aws-sdk-athena (~> 1)
6
6
  aws-sdk-autoscaling (~> 1)
7
7
  aws-sdk-cloudwatch (~> 1)
@@ -80,10 +80,29 @@ GEM
80
80
  diplomat (2.6.4)
81
81
  deep_merge (~> 1.2)
82
82
  faraday (>= 0.9, < 3.0, != 2.0.0)
83
- faraday (2.7.1)
84
- faraday-net_http (>= 2.0, < 3.1)
83
+ faraday (1.10.2)
84
+ faraday-em_http (~> 1.0)
85
+ faraday-em_synchrony (~> 1.0)
86
+ faraday-excon (~> 1.1)
87
+ faraday-httpclient (~> 1.0)
88
+ faraday-multipart (~> 1.0)
89
+ faraday-net_http (~> 1.0)
90
+ faraday-net_http_persistent (~> 1.0)
91
+ faraday-patron (~> 1.0)
92
+ faraday-rack (~> 1.0)
93
+ faraday-retry (~> 1.0)
85
94
  ruby2_keywords (>= 0.0.4)
86
- faraday-net_http (3.0.2)
95
+ faraday-em_http (1.0.0)
96
+ faraday-em_synchrony (1.0.0)
97
+ faraday-excon (1.1.0)
98
+ faraday-httpclient (1.0.1)
99
+ faraday-multipart (1.0.4)
100
+ multipart-post (~> 2)
101
+ faraday-net_http (1.0.1)
102
+ faraday-net_http_persistent (1.2.0)
103
+ faraday-patron (1.0.0)
104
+ faraday-rack (1.0.0)
105
+ faraday-retry (1.0.3)
87
106
  hashdiff (1.0.1)
88
107
  httparty (0.16.3)
89
108
  mime-types (~> 3.0)
@@ -93,6 +112,7 @@ GEM
93
112
  mime-types-data (~> 3.2015)
94
113
  mime-types-data (3.2022.0105)
95
114
  multi_xml (0.6.0)
115
+ multipart-post (2.2.3)
96
116
  public_suffix (4.0.7)
97
117
  rexml (3.2.5)
98
118
  rspec (3.9.0)
@@ -119,6 +139,7 @@ PLATFORMS
119
139
 
120
140
  DEPENDENCIES
121
141
  MovableInkAWS!
142
+ faraday (= 1.10.2)
122
143
  rspec (~> 3.6)
123
144
  webmock
124
145
 
@@ -1,5 +1,5 @@
1
1
  module MovableInk
2
2
  class AWS
3
- VERSION = '2.8.2'
3
+ VERSION = '2.8.3'
4
4
  end
5
5
  end
data/spec/ec2_spec.rb CHANGED
@@ -445,7 +445,7 @@ describe MovableInk::AWS::EC2 do
445
445
  headers: {
446
446
  'Accept'=>'*/*',
447
447
  'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
448
- 'User-Agent'=>'Faraday v2.7.1'
448
+ 'User-Agent'=>'Faraday v1.10.2'
449
449
  }).
450
450
  to_return(status: 200, body: json, headers: {})
451
451
 
@@ -458,7 +458,7 @@ describe MovableInk::AWS::EC2 do
458
458
  headers: {
459
459
  'Accept'=>'*/*',
460
460
  'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
461
- 'User-Agent'=>'Faraday v2.7.1'
461
+ 'User-Agent'=>'Faraday v1.10.2'
462
462
  }).
463
463
  to_return(status: 200, body: json, headers: {})
464
464
 
@@ -476,7 +476,7 @@ describe MovableInk::AWS::EC2 do
476
476
  headers: {
477
477
  'Accept'=>'*/*',
478
478
  'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
479
- 'User-Agent'=>'Faraday v2.7.1'
479
+ 'User-Agent'=>'Faraday v1.10.2'
480
480
  }).
481
481
  to_return(status: 200, body: json, headers: {})
482
482
 
@@ -495,7 +495,7 @@ describe MovableInk::AWS::EC2 do
495
495
  headers: {
496
496
  'Accept'=>'*/*',
497
497
  'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
498
- 'User-Agent'=>'Faraday v2.7.1'
498
+ 'User-Agent'=>'Faraday v1.10.2'
499
499
  }
500
500
  })
501
501
  .to_return(status: 200, body: json, headers: {})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: MovableInkAWS
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.2
4
+ version: 2.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - MI SRE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-08 00:00:00.000000000 Z
11
+ date: 2022-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core