bananajour 2.6 → 2.6.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.
- data/Readme.md +5 -4
- data/lib/bananajour/gem_dependencies.rb +2 -1
- data/lib/bananajour/version.rb +1 -1
- metadata +12 -2
data/Readme.md
CHANGED
@@ -65,23 +65,23 @@ Linux support
|
|
65
65
|
|
66
66
|
To install the dnssd gem on Linux you'll need [avahi](http://avahi.org/). For Ubunutu peeps this means:
|
67
67
|
|
68
|
-
|
68
|
+
sudo apt-get install libavahi-compat-libdnssd-dev libavahi-discover
|
69
69
|
|
70
70
|
You can debug whether or not Avahi can see Bananajour and git-daemon Bonjour statuses using the command 'avahi-browse'. This command can be found in the package 'avahi-utils'.
|
71
71
|
|
72
72
|
The following command will show you all of the Bonjour services running on your local network:
|
73
73
|
|
74
|
-
|
74
|
+
avahi-browse --all
|
75
75
|
|
76
76
|
If you kill bananajour with kill -9 it doesn't get a chance to unregister the Bonjour services, and when it is restarted it will die with DNSSD::AlreadyRegisteredError. Although not ideal, you can work around this my restarting avahi-daemon first.
|
77
77
|
|
78
78
|
You will also need to uncomment the following line in your /etc/avahi/avahi-daemon.conf.
|
79
79
|
|
80
|
-
|
80
|
+
domain-name=local
|
81
81
|
|
82
82
|
And then restart the Avahi service:
|
83
83
|
|
84
|
-
|
84
|
+
sudo service avahi-daemon restart
|
85
85
|
|
86
86
|
Note: You might have to restart the avahi-daemon sometimes if you are having problems seeing other bananajours.
|
87
87
|
|
@@ -128,6 +128,7 @@ Contributors
|
|
128
128
|
* [Nate Haas](http://github.com/natehaas)
|
129
129
|
* [James Sadler](http://github.com/freshtonic)
|
130
130
|
* [Jason King](http://github.com/JasonKing)
|
131
|
+
* [Michael Pope](http://github.com/map7)
|
131
132
|
|
132
133
|
License
|
133
134
|
-------
|
data/lib/bananajour/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bananajour
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Lucas
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-12-02 00:00:00 +11:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -92,6 +92,16 @@ dependencies:
|
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: 2.3.2
|
94
94
|
version:
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: thin
|
97
|
+
type: :runtime
|
98
|
+
version_requirement:
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.0.0
|
104
|
+
version:
|
95
105
|
description: Local git repository hosting with a sexy web interface and bonjour discovery. It's like your own little adhoc, network-aware github!
|
96
106
|
email: t.lucas@toolmantim.com
|
97
107
|
executables:
|