ruby-shadow 2.1.2 → 2.1.3

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 (4) hide show
  1. data/HISTORY +5 -0
  2. data/ruby-shadow.gemspec +1 -1
  3. data/shadow.c +1 -1
  4. metadata +21 -29
data/HISTORY CHANGED
@@ -1,3 +1,8 @@
1
+ [2012/03/15]
2
+ * Version 2.1.3
3
+ - MATSUU Takuto <matsuu@gentoo.org>
4
+ Fix a typo in the C code for rb_shadow_putspent. Typo has been present since
5
+ ruby 1.9 code was added.
1
6
  [2011/02/08]
2
7
  * Version 2.1.2
3
8
  - Jeff Blaine <>, Adam Palmblad <adam.palmblad@teampages.com>:
@@ -13,5 +13,5 @@ Gem::Specification.new do |spec|
13
13
  spec.name = 'ruby-shadow'
14
14
  spec.required_ruby_version = '>= 1.8'
15
15
  spec.summary = '*nix Shadow Password Module'
16
- spec.version = '2.1.2'
16
+ spec.version = '2.1.3'
17
17
  end
data/shadow.c CHANGED
@@ -170,7 +170,7 @@ rb_shadow_putspent(VALUE self, VALUE entry, VALUE file)
170
170
 
171
171
  for(i=0; i<=8; i++)
172
172
  val[i] = RSTRUCT_PTR( entry )[i]; //val[i] = RSTRUCT(entry)->ptr[i];
173
- cfile = file_pr( RFILE(file)->fptr );
173
+ cfile = file_ptr( RFILE(file)->fptr );
174
174
 
175
175
  centry.sp_namp = StringValuePtr(val[0]);
176
176
  centry.sp_pwdp = StringValuePtr(val[1]);
metadata CHANGED
@@ -1,10 +1,10 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ruby-shadow
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.1.3
4
5
  prerelease:
5
- version: 2.1.2
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Adam Palmblad
9
9
  - Eric Hankins
10
10
  - Ian Marlier
@@ -14,21 +14,17 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
-
18
- date: 2011-04-13 00:00:00 -07:00
17
+ date: 2012-03-15 00:00:00.000000000 -07:00
19
18
  default_executable:
20
19
  dependencies: []
21
-
22
20
  description: This module provides access to shadow passwords on Linux and Solaris
23
- email:
21
+ email:
24
22
  - adam.palmblad@teampages.com
25
23
  executables: []
26
-
27
- extensions:
24
+ extensions:
28
25
  - extconf.rb
29
26
  extra_rdoc_files: []
30
-
31
- files:
27
+ files:
32
28
  - extconf.rb
33
29
  - depend
34
30
  - HISTORY
@@ -40,30 +36,26 @@ files:
40
36
  has_rdoc: true
41
37
  homepage: https://github.com/apalmblad/ruby-shadow
42
38
  licenses: []
43
-
44
39
  post_install_message:
45
40
  rdoc_options: []
46
-
47
- require_paths:
41
+ require_paths:
48
42
  - lib
49
- required_ruby_version: !ruby/object:Gem::Requirement
43
+ required_ruby_version: !ruby/object:Gem::Requirement
50
44
  none: false
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: "1.8"
55
- required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ! '>='
47
+ - !ruby/object:Gem::Version
48
+ version: '1.8'
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
50
  none: false
57
- requirements:
58
- - - ">="
59
- - !ruby/object:Gem::Version
60
- version: "0"
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
61
55
  requirements: []
62
-
63
56
  rubyforge_project:
64
- rubygems_version: 1.5.2
57
+ rubygems_version: 1.6.2
65
58
  signing_key:
66
59
  specification_version: 3
67
- summary: "*nix Shadow Password Module"
60
+ summary: ! '*nix Shadow Password Module'
68
61
  test_files: []
69
-