aaf-gumboot 2.5.1 → 2.6.2

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: d29e58f289695e73ee9208b13a5b0b72d36d2f9d798c300515afa41c5e05f64c
4
- data.tar.gz: e7b71ca1dc43d6c37422b4d3a48c7a32f0ba79cbd3cce3c87727ae726817d642
3
+ metadata.gz: 96071a23367822a4f7ba6656e9b18a93701ba9cb8aec927fbb1dae02e1814310
4
+ data.tar.gz: f5f9162f54f1012981d31ff4c9097fafb14d0a0dc179ee7f0efeb336cc314887
5
5
  SHA512:
6
- metadata.gz: fc006dea9695a2a7147abe18844e929f4ecbfede23af11901b310ce04e93e3dafd5162b3df6365382541428fc8e77a01ee2c5d621a8c29c1ca1549b822eb85d8
7
- data.tar.gz: 290f69d005e2bca25ca0340b03158fe8781f6af8e8474b0723861f492a9a6bfe5c549ae1bca1795f2a1db54ed2fb4e5d89bce02cd8ca4cf73985b4430b0f11bb
6
+ metadata.gz: ee5c0ae1ab75d9513b6189b898c9a75beca8373f0b09a77097f1a9a9edd256a6c0723f23b60c1ba42b1a26db958de10d9e6e58a904fa8013f5f37bb136916a7f
7
+ data.tar.gz: 33dbbc4251511a602f9f76ac277c2201cd835b597ef89fafbd8ea0e2b0305725b5074bea7422bfcc2ac21069b94d7bbde9c8e40dc7e343da9e0a3ece49e92b76
@@ -15,10 +15,6 @@ RSpec.shared_examples 'Subjects' do
15
15
  subject.name = nil
16
16
  expect(subject).not_to be_valid
17
17
  end
18
- it 'is invalid without mail' do
19
- subject.mail = nil
20
- expect(subject).not_to be_valid
21
- end
22
18
  it 'is invalid without an enabled state' do
23
19
  subject.enabled = nil
24
20
  expect(subject).not_to be_valid
data/lib/gumboot/strap.rb CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  require 'yaml'
4
4
  require 'active_support/core_ext/hash/deep_merge'
5
+ require 'fileutils'
5
6
 
6
7
  module Gumboot
7
8
  module Strap
@@ -122,7 +123,7 @@ module Gumboot
122
123
  end
123
124
 
124
125
  def safe_load(yaml)
125
- YAML.safe_load(yaml, [Symbol])
126
+ YAML.safe_load(yaml, permitted_classes: [Symbol])
126
127
  end
127
128
 
128
129
  def merge_config(src, dest)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gumboot
4
- VERSION = '2.5.1'
4
+ VERSION = '2.6.2'
5
5
  end
@@ -7,7 +7,7 @@
7
7
  // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
8
  // compiled file.
9
9
  //
10
- // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
10
+ // Read Sprockets README (https://github.com/rails/sprockets#directives) for details
11
11
  // about supported directives.
12
12
  //
13
13
  //= require_tree .
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aaf-gumboot
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bradley Beddoes
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-01 00:00:00.000000000 Z
11
+ date: 2022-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: accession
@@ -382,7 +382,7 @@ homepage: http://www.aaf.edu.au
382
382
  licenses:
383
383
  - Apache-2.0
384
384
  metadata: {}
385
- post_install_message:
385
+ post_install_message:
386
386
  rdoc_options: []
387
387
  require_paths:
388
388
  - lib
@@ -397,8 +397,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
397
397
  - !ruby/object:Gem::Version
398
398
  version: '0'
399
399
  requirements: []
400
- rubygems_version: 3.0.3
401
- signing_key:
400
+ rubygems_version: 3.3.7
401
+ signing_key:
402
402
  specification_version: 4
403
403
  summary: Kick off subject and API structure for AAF applications
404
404
  test_files: []