win32-sspi 0.0.1.rc1-x86-mingw32

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.
@@ -0,0 +1,29 @@
1
+ require 'rubygems'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = 'win32-sspi'
5
+ spec.summary = 'Yet another SSPI library for Windows'
6
+ spec.version = '0.0.1.rc1'
7
+ spec.authors = ['Gary Sick', 'Daniel J. Berger']
8
+ spec.license = 'MIT'
9
+ spec.email = 'garys361@gmail.com'
10
+ spec.platform = Gem::Platform::CURRENT
11
+ spec.required_ruby_version = '>=1.9'
12
+ spec.homepage = 'https://github.com/garysick/win32-sspi'
13
+ spec.files = Dir['**/*'].reject{ |f| f.include?('git') || f.include?('Notes.txt') }
14
+ spec.test_files = Dir['test/*.rb']
15
+ spec.require_paths = ['lib','lib/win32/sspi']
16
+ spec.has_rdoc = false
17
+
18
+ spec.extra_rdoc_files = ['README.md']
19
+
20
+ spec.add_dependency('ffi', '~>1.9')
21
+ spec.add_development_dependency('test-unit','~>3.0')
22
+ spec.requirements << "This gem will only work in Windows Environment."
23
+
24
+ spec.description = <<-EOF
25
+ A SSPI library for Ruby on Windows using FFI under the hood.
26
+ Supports NTLM and Negotiate protocols.
27
+ See examples for usage.
28
+ EOF
29
+ end
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: win32-sspi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.rc1
5
+ platform: x86-mingw32
6
+ authors:
7
+ - Gary Sick
8
+ - Daniel J. Berger
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-11-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: ffi
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.9'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.9'
28
+ - !ruby/object:Gem::Dependency
29
+ name: test-unit
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '3.0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '3.0'
42
+ description: |2
43
+ A SSPI library for Ruby on Windows using FFI under the hood.
44
+ Supports NTLM and Negotiate protocols.
45
+ See examples for usage.
46
+ email: garys361@gmail.com
47
+ executables: []
48
+ extensions: []
49
+ extra_rdoc_files:
50
+ - README.md
51
+ files:
52
+ - License.txt
53
+ - README.md
54
+ - Rakefile
55
+ - examples/sspi_negotiate_client.rb
56
+ - examples/sspi_negotiate_server.rb
57
+ - lib/win32-sspi.rb
58
+ - lib/win32/sspi/api/client.rb
59
+ - lib/win32/sspi/api/common.rb
60
+ - lib/win32/sspi/api/server.rb
61
+ - lib/win32/sspi/negotiate/client.rb
62
+ - lib/win32/sspi/negotiate/server.rb
63
+ - lib/win32/sspi/windows/constants.rb
64
+ - lib/win32/sspi/windows/functions.rb
65
+ - lib/win32/sspi/windows/misc.rb
66
+ - lib/win32/sspi/windows/structs.rb
67
+ - test/all_tests.rb
68
+ - test/test_win32_sspi_negotiate_client.rb
69
+ - test/test_win32_sspi_negotiate_server.rb
70
+ - test/test_win32_sspi_structure_creates.rb
71
+ - win32-sspi.gemspec
72
+ homepage: https://github.com/garysick/win32-sspi
73
+ licenses:
74
+ - MIT
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ - lib/win32/sspi
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '1.9'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">"
89
+ - !ruby/object:Gem::Version
90
+ version: 1.3.1
91
+ requirements:
92
+ - This gem will only work in Windows Environment.
93
+ rubyforge_project:
94
+ rubygems_version: 2.4.5
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Yet another SSPI library for Windows
98
+ test_files:
99
+ - test/all_tests.rb
100
+ - test/test_win32_sspi_negotiate_client.rb
101
+ - test/test_win32_sspi_negotiate_server.rb
102
+ - test/test_win32_sspi_structure_creates.rb