nis 0.1.1 → 0.1.1.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.
@@ -0,0 +1,9 @@
1
+ = CHANGELOG
2
+
3
+ = 0.1.1.1 (2010-10-07)
4
+
5
+ * Ported to a gem by Mike Dalessio (mike.dalessio@gmail.com)
6
+
7
+ = 0.1.1 (2001-06-21)
8
+
9
+ * Birthday?
@@ -0,0 +1,38 @@
1
+ = nis
2
+
3
+ * http://raa.ruby-lang.org/project/ruby-nis
4
+ * https://github.com/flavorjones/nis
5
+
6
+ == DESCRIPTION:
7
+
8
+ Provides an interface for NIS(YP) API.
9
+
10
+ == USAGE
11
+
12
+ YP Module (and aliased NIS Module)
13
+
14
+ Constants:
15
+
16
+ * YPERR_....
17
+ * YPOP_....
18
+
19
+ Module Functions:
20
+
21
+ * yp_all(domain, map, callback)
22
+ * yp_all(domain, map){|status, key, val| ... }
23
+ * key, val = yp_first(domain, map)
24
+ * next_key, next_val = yp_next(domain, map, key)
25
+ * val = yp_match(domain, map, key)
26
+ * yp_update(domain, map, ypop, key, val)
27
+
28
+ == AUTHOR
29
+
30
+ * Takaaki Tateishi (ttate@jaist.ac.jp)
31
+
32
+ == SUPPORT
33
+
34
+ Spotty. Unmaintained since 2002.
35
+
36
+ == LICENSE:
37
+
38
+ Copyright (C) 2001, Takaaki Tateishi (ttate@jaist.ac.jp)
data/Rakefile CHANGED
@@ -19,16 +19,6 @@ rescue LoadError
19
19
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
20
20
  end
21
21
 
22
- # HOE = Hoe.spec 'nokogiri' do
23
- # developer 'Takaaki Tateishi', 'ttate@users.sourceforge.net'
24
- # self.clean_globs = [
25
- # 'ext/nis/*.{o,so,bundle,a,log,dll}',
26
- # 'lib/nis/*.{o,so,bundle,a,log,dll}',
27
- # ]
28
- # self.spec_extras = { :extensions => ["ext/nis/extconf.rb"] }
29
- # end
30
- # Hoe.add_include_dirs '.'
31
-
32
22
  task 'ext/nis/Makefile' do
33
23
  Dir.chdir('ext/nis') do
34
24
  ruby "extconf.rb"
@@ -1,3 +1,3 @@
1
1
  module NIS
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.1.1"
3
3
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{nis}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Takaaki Tateishi"]
@@ -14,14 +14,15 @@ Gem::Specification.new do |s|
14
14
  s.email = %q{ttate@users.sourceforge.net}
15
15
  s.extensions = ["ext/nis/extconf.rb"]
16
16
  s.extra_rdoc_files = [
17
- "README",
18
- "README.html"
17
+ "README.html",
18
+ "README.rdoc"
19
19
  ]
20
20
  s.files = [
21
21
  ".gitignore",
22
+ "CHANGELOG.rdoc",
22
23
  "MANIFEST",
23
- "README",
24
24
  "README.html",
25
+ "README.rdoc",
25
26
  "Rakefile",
26
27
  "doc/NIS-HOWTO.html",
27
28
  "ext/nis/extconf.rb",
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nis
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 65
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
9
  - 1
10
- version: 0.1.1
10
+ - 1
11
+ version: 0.1.1.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - Takaaki Tateishi
@@ -26,13 +27,14 @@ executables: []
26
27
  extensions:
27
28
  - ext/nis/extconf.rb
28
29
  extra_rdoc_files:
29
- - README
30
30
  - README.html
31
+ - README.rdoc
31
32
  files:
32
33
  - .gitignore
34
+ - CHANGELOG.rdoc
33
35
  - MANIFEST
34
- - README
35
36
  - README.html
37
+ - README.rdoc
36
38
  - Rakefile
37
39
  - doc/NIS-HOWTO.html
38
40
  - ext/nis/extconf.rb
data/README DELETED
@@ -1,27 +0,0 @@
1
- Ruby/NIS
2
-
3
- Copyright (C) 2001, Takaaki Tateishi (ttate@jaist.ac.jp)
4
- -------------------------------------------------------------------------------
5
-
6
- Description
7
-
8
- This module provides only the module for NIS(YP) API.
9
- -------------------------------------------------------------------------------
10
-
11
- YP Module
12
-
13
- Constant:
14
-
15
- * YPERR_....
16
- * YPOP_....
17
-
18
- Module Functions:
19
-
20
- * yp_all(domain, map, callback)
21
- * yp_all(domain, map){|status, key, val| ... }
22
- * key, val = yp_first(domain, map)
23
- * next_key, next_val = yp_next(domain, map, key)
24
- * val = yp_match(domain, map, key)
25
- * yp_update(domain, map, ypop, key, val)
26
-
27
- -------------------------------------------------------------------------------