bendiken-adhoc 0.0.0
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.
- data/LICENSE +19 -0
- data/README +65 -0
- data/Rakefile +5 -0
- data/VERSION +1 -0
- data/bin/adhoc +3 -0
- data/lib/adhoc.rb +6 -0
- data/lib/adhoc/dnssd.rb +7 -0
- data/lib/adhoc/version.rb +11 -0
- data/lib/adhoc/xmpp.rb +7 -0
- metadata +70 -0
data/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (c) 2009 Arto Bendiken <http://ar.to/>
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to
|
5
|
+
deal in the Software without restriction, including without limitation the
|
6
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
7
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
18
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
19
|
+
IN THE SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
= Adhoc
|
2
|
+
|
3
|
+
Ad-hoc service discovery and routing for DNS-SD (aka Bonjour) and XMPP (per
|
4
|
+
the XEP-0030 spec).
|
5
|
+
|
6
|
+
=== About DNS Service Discovery (DNS-SD)
|
7
|
+
|
8
|
+
* http://www.dns-sd.org
|
9
|
+
* http://en.wikipedia.org/wiki/Bonjour_(software)
|
10
|
+
|
11
|
+
=== About XMPP Service Discovery (XEP-0030)
|
12
|
+
|
13
|
+
* http://xmpp.org/extensions/xep-0030.html
|
14
|
+
|
15
|
+
|
16
|
+
== Download
|
17
|
+
|
18
|
+
To get a local working copy of the development repository, do:
|
19
|
+
|
20
|
+
% git clone git://github.com/bendiken/adhoc.git
|
21
|
+
|
22
|
+
Alternatively, you can download the latest development version as a tarball
|
23
|
+
as follows:
|
24
|
+
|
25
|
+
% wget http://github.com/bendiken/adhoc/tarball/master
|
26
|
+
|
27
|
+
|
28
|
+
== Requirements
|
29
|
+
|
30
|
+
* DNSSD
|
31
|
+
* http://rubyforge.org/projects/dnssd
|
32
|
+
* XMPP4R
|
33
|
+
* http://home.gna.org/xmpp4r
|
34
|
+
|
35
|
+
|
36
|
+
== Installation
|
37
|
+
|
38
|
+
The recommended installation method is via RubyGems. To install the latest
|
39
|
+
official release from RubyForge, do:
|
40
|
+
|
41
|
+
% [sudo] gem install adhoc
|
42
|
+
|
43
|
+
To use the very latest bleeding-edge development version, install the gem
|
44
|
+
directly from GitHub as follows:
|
45
|
+
|
46
|
+
% [sudo] gem install bendiken-adhoc -s http://gems.github.com
|
47
|
+
|
48
|
+
|
49
|
+
== Resources
|
50
|
+
|
51
|
+
* http://adhoc.rubyforge.org
|
52
|
+
* http://github.com/bendiken/adhoc
|
53
|
+
* http://rubyforge.org/projects/adhoc
|
54
|
+
* http://raa.ruby-lang.org/project/adhoc
|
55
|
+
|
56
|
+
|
57
|
+
== Authors
|
58
|
+
|
59
|
+
* Arto Bendiken (mailto:arto.bendiken@gmail.com) - http://ar.to
|
60
|
+
|
61
|
+
|
62
|
+
== License
|
63
|
+
|
64
|
+
All source code is available under the terms of the MIT license. For more
|
65
|
+
information, see the accompanying LICENSE file.
|
data/Rakefile
ADDED
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
data/bin/adhoc
ADDED
data/lib/adhoc.rb
ADDED
data/lib/adhoc/dnssd.rb
ADDED
data/lib/adhoc/xmpp.rb
ADDED
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bendiken-adhoc
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Arto Bendiken
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-04-25 00:00:00 -07:00
|
13
|
+
default_executable: adhoc
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rakefile
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: ""
|
26
|
+
email: arto.bendiken@gmail.com
|
27
|
+
executables:
|
28
|
+
- adhoc
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- LICENSE
|
35
|
+
- README
|
36
|
+
- Rakefile
|
37
|
+
- VERSION
|
38
|
+
- bin/adhoc
|
39
|
+
- lib/adhoc.rb
|
40
|
+
- lib/adhoc/dnssd.rb
|
41
|
+
- lib/adhoc/version.rb
|
42
|
+
- lib/adhoc/xmpp.rb
|
43
|
+
has_rdoc: false
|
44
|
+
homepage: http://github.com/bendiken/adhoc
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.8.2
|
55
|
+
version:
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
requirements: []
|
63
|
+
|
64
|
+
rubyforge_project: adhoc
|
65
|
+
rubygems_version: 1.2.0
|
66
|
+
signing_key:
|
67
|
+
specification_version: 2
|
68
|
+
summary: Ad-hoc service discovery and routing for DNS-SD (aka Bonjour) and XMPP.
|
69
|
+
test_files: []
|
70
|
+
|