pyu-ntlm-http 0.1.2.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +9 -9
- metadata +23 -36
- data/ntlm-http.gemspec +0 -16
data/Rakefile
CHANGED
@@ -8,9 +8,8 @@ require 'rake/gempackagetask'
|
|
8
8
|
require File.join(File.dirname(__FILE__), 'lib', 'net', 'ntlm')
|
9
9
|
|
10
10
|
#PKG_NAME = 'rubyntlm'
|
11
|
-
PKG_NAME = 'ntlm-http'
|
12
|
-
|
13
|
-
PKG_VERSION = "#{Net::NTLM::VERSION::STRING}.2"
|
11
|
+
PKG_NAME = 'pyu-ntlm-http'
|
12
|
+
PKG_VERSION = "0.1.3"
|
14
13
|
|
15
14
|
task :default => [:test]
|
16
15
|
|
@@ -38,12 +37,13 @@ dist_dirs = ["lib", "test", "examples"]
|
|
38
37
|
spec = Gem::Specification.new do |s|
|
39
38
|
s.name = PKG_NAME
|
40
39
|
s.version = PKG_VERSION
|
41
|
-
s.summary = %q{Ruby/NTLM library.}
|
42
|
-
s.
|
43
|
-
s.
|
44
|
-
s.email = %q{koheik@gmail.com}
|
45
|
-
s.homepage = %q{http://rubyforge.org/projects/rubyntlm}
|
40
|
+
s.summary = %q{Ruby/NTLM HTTP library.}
|
41
|
+
s.email = %q{kingsley@mindflowsolutions.com}
|
42
|
+
s.homepage = %q{http://www.mindflowsolutions.net}
|
46
43
|
s.rubyforge_project = %q{rubyntlm}
|
44
|
+
s.description = %q{Ruby/NTLM HTTP provides NTLM authentication over http.}
|
45
|
+
s.has_rdoc = true
|
46
|
+
s.authors = ["Kohei Kajimoto,Kingsley Hendrickse"]
|
47
47
|
|
48
48
|
s.files = ["Rakefile", "README"]
|
49
49
|
dist_dirs.each do |dir|
|
@@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
|
|
54
54
|
s.extra_rdoc_files = %w( README )
|
55
55
|
s.rdoc_options.concat ['--main', 'README']
|
56
56
|
|
57
|
-
s.autorequire = 'net/
|
57
|
+
s.autorequire = 'net/ntlm_http'
|
58
58
|
end
|
59
59
|
|
60
60
|
Rake::GemPackageTask.new(spec) do |p|
|
metadata
CHANGED
@@ -1,22 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pyu-ntlm-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 2
|
10
|
-
- 1
|
11
|
-
version: 0.1.2.1
|
4
|
+
prerelease:
|
5
|
+
version: 0.1.3
|
12
6
|
platform: ruby
|
13
7
|
authors:
|
14
|
-
- Kohei Kajimoto,Kingsley Hendrickse
|
8
|
+
- Kohei Kajimoto,Kingsley Hendrickse
|
15
9
|
autorequire: net/ntlm_http
|
16
10
|
bindir: bin
|
17
11
|
cert_chain: []
|
18
12
|
|
19
|
-
date:
|
13
|
+
date: 2011-04-12 00:00:00 -05:00
|
20
14
|
default_executable:
|
21
15
|
dependencies: []
|
22
16
|
|
@@ -27,49 +21,42 @@ executables: []
|
|
27
21
|
extensions: []
|
28
22
|
|
29
23
|
extra_rdoc_files:
|
30
|
-
- README
|
24
|
+
- README
|
31
25
|
files:
|
32
|
-
-
|
33
|
-
-
|
34
|
-
-
|
35
|
-
- lib/net/ntlm.rb
|
36
|
-
-
|
37
|
-
-
|
38
|
-
- examples/
|
39
|
-
- examples/
|
40
|
-
- examples/smtp.rb
|
26
|
+
- Rakefile
|
27
|
+
- README
|
28
|
+
- lib/net/ntlm_http.rb
|
29
|
+
- lib/net/ntlm.rb
|
30
|
+
- test/function_test.rb
|
31
|
+
- examples/imap.rb
|
32
|
+
- examples/smtp.rb
|
33
|
+
- examples/http.rb
|
41
34
|
has_rdoc: true
|
42
35
|
homepage: http://www.mindflowsolutions.net
|
43
36
|
licenses: []
|
44
37
|
|
45
38
|
post_install_message:
|
46
39
|
rdoc_options:
|
47
|
-
- --main
|
48
|
-
- README
|
40
|
+
- --main
|
41
|
+
- README
|
49
42
|
require_paths:
|
50
|
-
- lib
|
43
|
+
- lib
|
51
44
|
required_ruby_version: !ruby/object:Gem::Requirement
|
52
45
|
none: false
|
53
46
|
requirements:
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
segments:
|
58
|
-
- 0
|
59
|
-
version: "0"
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: "0"
|
60
50
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
51
|
none: false
|
62
52
|
requirements:
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
segments:
|
67
|
-
- 0
|
68
|
-
version: "0"
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: "0"
|
69
56
|
requirements: []
|
70
57
|
|
71
58
|
rubyforge_project: rubyntlm
|
72
|
-
rubygems_version: 1.
|
59
|
+
rubygems_version: 1.5.1
|
73
60
|
signing_key:
|
74
61
|
specification_version: 3
|
75
62
|
summary: Ruby/NTLM HTTP library.
|
data/ntlm-http.gemspec
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
Gem::Specification.new do |s|
|
2
|
-
s.name = %q{pyu-ntlm-http}
|
3
|
-
s.version = "0.1.2.1"
|
4
|
-
s.date = %q{20-05-2009}
|
5
|
-
s.summary = %q{Ruby/NTLM HTTP library.}
|
6
|
-
s.email = %q{kingsley@mindflowsolutions.com}
|
7
|
-
s.homepage = %q{http://www.mindflowsolutions.net}
|
8
|
-
s.rubyforge_project = %q{rubyntlm}
|
9
|
-
s.description = %q{Ruby/NTLM HTTP provides NTLM authentication over http.}
|
10
|
-
s.autorequire = %q{net/ntlm_http}
|
11
|
-
s.has_rdoc = true
|
12
|
-
s.authors = ["Kohei Kajimoto,Kingsley Hendrickse"]
|
13
|
-
s.files = ["ntlm-http.gemspec", "Rakefile", "README", "lib/net/ntlm.rb", "lib/net/ntlm_http.rb", "test/function_test.rb", "examples/http.rb", "examples/imap.rb", "examples/smtp.rb"]
|
14
|
-
s.rdoc_options = ["--main", "README"]
|
15
|
-
s.extra_rdoc_files = ["README"]
|
16
|
-
end
|