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 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.
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), 'lib')))
3
+ require 'rubygems'
4
+ require 'rakefile' # http://github.com/bendiken/rakefile
5
+ require 'adhoc'
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby -rubygems
2
+ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
3
+ require 'adhoc'
@@ -0,0 +1,6 @@
1
+ require 'adhoc/version'
2
+
3
+ module Adhoc
4
+ autoload :DNSSD, 'adhoc/dnssd'
5
+ autoload :XMPP, 'adhoc/xmpp'
6
+ end
@@ -0,0 +1,7 @@
1
+ require 'dnssd'
2
+
3
+ module Adhoc
4
+ module DNSSD
5
+ # TODO
6
+ end
7
+ end
@@ -0,0 +1,11 @@
1
+ module Adhoc
2
+ module Version
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ TINY = 1
6
+ EXTRA = nil
7
+
8
+ STRING = [MAJOR, MINOR, TINY].join('.')
9
+ STRING << "-#{EXTRA}" if EXTRA
10
+ end
11
+ end
@@ -0,0 +1,7 @@
1
+ require 'xmpp4r'
2
+
3
+ module Adhoc
4
+ module XMPP
5
+ # TODO
6
+ end
7
+ end
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
+