subspace 2.5.9 → 2.5.10

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: 2643e10f07e36c3231852855a37ae9c0478d2013541927e77056f78dd9589835
4
- data.tar.gz: 255a1bfd97ce8d5234417696185e9435310d0bb75b665579df4614e747622e8a
3
+ metadata.gz: 19de34c265cd2948a3dc40c63d8974f76e5a4ce63a014eb2fe19db81181cf2ea
4
+ data.tar.gz: efeab17b834a3e09270c9ae2a94976f635e92eb890ae218324029d11dc139a92
5
5
  SHA512:
6
- metadata.gz: 73f3655eaa5ec00304002ebd9f0cfeba83c2766347253a11341424fe65359d5a62078899630a35c35a93580f94c44f7e1f32616d0b328c0f0e1cc14448b4b2a1
7
- data.tar.gz: a7ae0433d6f04c27b6f74ac1a4879b50365d721ad8f6c65b52c030725fa114d57d458cc80fc0ab8d67fd9635f59c2f9a6ccd34c93101635273e4196d7f76913a
6
+ metadata.gz: b1137de151178b6960cf83438b05b0ba674b7918b56387fd1dfc2932647231d2fdb5225dddbdbef47849c84aca0dd6b340124c917396cce4a4022fea31bf0417
7
+ data.tar.gz: a9a78b1cae0a192319455041009f0bbe0ba1f928262b96c8fe357dd21dc6b4d5557ce375988ce44735cdefedae7d5f83a98573e7d87394b27a1918976786a1fb
data/CHANGELOG.md CHANGED
@@ -11,6 +11,8 @@ This project attempts to follow [semantic versioning](https://semver.org/).
11
11
  * Stops showing color if you `sudo su`
12
12
 
13
13
  ## Unreleased
14
+ ## 2.5.10
15
+ * Backport the fix for ansible's change of get_url checksum arguments
14
16
 
15
17
  ## 2.5.9
16
18
  * backport disabling mitogen
data/README.md CHANGED
@@ -386,7 +386,7 @@ Install monitoring and automatic startup for resque workers via monit. You MUST
386
386
  Installs ruby on the machine. YOu can set a version by picking off the download url and sha hash from ruby-lang.org
387
387
 
388
388
  ruby_version: ruby-2.4.1
389
- ruby_checksum: a330e10d5cb5e53b3a0078326c5731888bb55e32c4abfeb27d9e7f8e5d000250
389
+ ruby_checksum: sha256:a330e10d5cb5e53b3a0078326c5731888bb55e32c4abfeb27d9e7f8e5d000250
390
390
  ruby_download_location: 'https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.1.tar.gz'
391
391
  bundler_version: 2.0.1
392
392
 
@@ -23,7 +23,7 @@ Role Variables
23
23
 
24
24
  > ruby_version: This variable controls the version of Ruby that will be compiled and installed. It should correspond with the tarball filename excluding the ".tar.gz" extension (e.g. "ruby-1.9.3-p484").
25
25
 
26
- > ruby_checksum: The SHA256 checksum of the gzipped tarball that will be downloaded and compiled.
26
+ > ruby_checksum: The checksum of the gzipped tarball that will be downloaded and compiled. (prefix with algorithm, e.g. sha256:abcdef01234567890)
27
27
 
28
28
  > ruby_download_location: The URL that the tarball should be retrieved from. Using the ruby_version variable within this variable is a good practice (e.g. "http://cache.ruby-lang.org/pub/ruby/1.9/{{ ruby_version }}.tar.gz").
29
29
 
@@ -40,7 +40,7 @@
40
40
  - name: Download the Ruby source code
41
41
  get_url: url={{ ruby_download_location }}
42
42
  dest=/usr/local/src/
43
- sha256sum={{ ruby_checksum }}
43
+ checksum={{ ruby_checksum }}
44
44
  become: true
45
45
 
46
46
  - name: Generate the Ruby installation script
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "2.5.9"
2
+ VERSION = "2.5.10"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.9
4
+ version: 2.5.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-06-30 00:00:00.000000000 Z
11
+ date: 2023-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -327,7 +327,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
327
327
  - !ruby/object:Gem::Version
328
328
  version: '0'
329
329
  requirements: []
330
- rubygems_version: 3.3.16
330
+ rubygems_version: 3.3.4
331
331
  signing_key:
332
332
  specification_version: 4
333
333
  summary: Ansible-based server provisioning for rails projects