ruby-shadow 2.5.0 → 2.5.1

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.
Files changed (6) hide show
  1. checksums.yaml +5 -5
  2. data/HISTORY +4 -0
  3. data/LICENSE +4 -0
  4. data/extconf.rb +1 -0
  5. data/ruby-shadow.gemspec +2 -2
  6. metadata +4 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c1de672d3098aaa075b6e6a56256d320a5b5b98e
4
- data.tar.gz: ed35c6a88d87c0633d5e93a6520da7918618d53e
2
+ SHA256:
3
+ metadata.gz: c76ae146558f0f3f822ab6482ce0c2de7050e91a77d02d565691f6a3d5a5d1c9
4
+ data.tar.gz: 10d1a37211ff98722dc3221b8320f3e79dd0686f9b4c3ed4f32a035fffb7df4e
5
5
  SHA512:
6
- metadata.gz: 098561c08e3037f7b08dff37c8af296918e42748bbfc55ff5849121d74c37884f3706276ab32986866a29e55130d92e116094e653244c624fe87d8c2f1e61864
7
- data.tar.gz: 76202564ea9ef353e7f7c699a66d6c1c050e7698965db32ffcbae6365e33ad055a7d558f51626397a52ea4c74a6b1894020f728cf0e5e479f6ee75ae4c1876e3
6
+ metadata.gz: 463621432a64c0cd422b72aa0a43f55053a2865774296c29a1c20b552cd5a70b2bdc4a6305a867c17f736a97b6803d9bb456482942da76e807b060218da08103
7
+ data.tar.gz: 1075b834c3e21e513d5ca615a5fab2ad84a35fe150de00e3c466e59780db534dc25d1e895fae6889dff13178162e5adcfd12f67bf9be12ab7596444248c67125
data/HISTORY CHANGED
@@ -1,3 +1,7 @@
1
+ [2021/12/01]
2
+ * Version 2.5.1
3
+ - fixes for compiling for Ruby 3
4
+
1
5
  [2015/10/06]
2
6
  * Version 2.5.0
3
7
  - fixes for compiling for rubinius, at long last
data/LICENSE CHANGED
@@ -3,3 +3,7 @@ License: Free for any use with your own risk!
3
3
  OR
4
4
 
5
5
  The terms of the Public Domain License (http://creativecommons.org/licenses/publicdomain/)
6
+
7
+ OR
8
+
9
+ The terms of the Unlicense, https://spdx.org/licenses/Unlicense.html
data/extconf.rb CHANGED
@@ -10,6 +10,7 @@ require 'rbconfig'
10
10
  $CFLAGS = case RUBY_VERSION
11
11
  when /^1\.9/; '-DRUBY19'
12
12
  when /^2\./; '-DRUBY19'
13
+ when /^3\./; '-DRUBY19'
13
14
  else; ''
14
15
  end
15
16
 
data/ruby-shadow.gemspec CHANGED
@@ -19,6 +19,6 @@ Gem::Specification.new do |spec|
19
19
  spec.name = 'ruby-shadow'
20
20
  spec.required_ruby_version = ['>= 1.8']
21
21
  spec.summary = '*nix Shadow Password Module'
22
- spec.version = '2.5.0'
23
- spec.license = "Public Domain License"
22
+ spec.version = '2.5.1'
23
+ spec.license = "Unlicense"
24
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-shadow
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Palmblad
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2015-10-06 00:00:00.000000000 Z
16
+ date: 2021-12-02 00:00:00.000000000 Z
17
17
  dependencies: []
18
18
  description: This module provides access to shadow passwords on Linux, OSX, FreeBSD,
19
19
  OpenBSD, and Solaris
@@ -37,7 +37,7 @@ files:
37
37
  - shadow/shadow.c
38
38
  homepage: https://github.com/apalmblad/ruby-shadow
39
39
  licenses:
40
- - Public Domain License
40
+ - Unlicense
41
41
  metadata: {}
42
42
  post_install_message:
43
43
  rdoc_options: []
@@ -54,8 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  requirements: []
57
- rubyforge_project:
58
- rubygems_version: 2.4.8
57
+ rubygems_version: 3.1.4
59
58
  signing_key:
60
59
  specification_version: 4
61
60
  summary: "*nix Shadow Password Module"