gssapi 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  h1. Ruby GSSAPI Library
2
2
 
3
- p. This is a wrapper around the system GSSAPI library. It exposes the low-level GSSAPI methods like gss_init_sec_context and gss_wrap and also provides an easier to use wrapper on top of this for common usage scenarios.
3
+ p. This is a wrapper around the system GSSAPI library (MIT only at this time). It exposes the low-level GSSAPI methods like gss_init_sec_context and gss_wrap and also provides an easier to use wrapper on top of this for common usage scenarios.
4
4
 
5
5
 
6
6
  p. I'm going to try and maintain most of the docs in the Github WIKI for this project so please check there for documentation and examples.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -26,7 +26,8 @@ module GSSAPI
26
26
  case RUBY_PLATFORM
27
27
  when /linux/
28
28
  # Some Ubuntu ship only with libgssapi_krb5, hence this hackery.
29
- ffi_lib File.basename Dir.glob("/usr/lib/libgssapi*").sort.first, FFI::Library::LIBC
29
+ # MIT is the only supported GSSAPI/Kerberos library at this time.
30
+ ffi_lib File.basename Dir.glob("/usr/lib/libgssapi_*").sort.first, FFI::Library::LIBC
30
31
  when /darwin/
31
32
  ffi_lib '/usr/lib/libgssapi_krb5.dylib', FFI::Library::LIBC
32
33
  when /win/
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 2
9
- version: 0.1.2
8
+ - 3
9
+ version: 0.1.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Dan Wanek
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-01-28 00:00:00 -06:00
17
+ date: 2011-01-31 00:00:00 -06:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency