toolmantim-bananajour 2.1.5 → 2.1.6
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 +12 -0
- data/lib/bananajour/gem_dependencies.rb +1 -1
- data/lib/bananajour/version.rb +1 -1
- data/sinatra/views/home.haml +1 -1
- metadata +5 -4
data/Readme.md
CHANGED
@@ -42,6 +42,18 @@ For a list of all the commands:
|
|
42
42
|
|
43
43
|
bananajour help
|
44
44
|
|
45
|
+
Linux support
|
46
|
+
-------------
|
47
|
+
|
48
|
+
To install the dnssd gem on linux you'll need [avahi](http://avahi.org/). For Ubunutu peeps this means:
|
49
|
+
|
50
|
+
sudo apt-get install libavahi-compat-libdnssd-dev
|
51
|
+
|
52
|
+
Using with Ginatra
|
53
|
+
------------------
|
54
|
+
|
55
|
+
Rumour has it [ginatra](http://github.com/lenary/ginatra) can be used to provide richer gitweb-like browsing of your bananajour repositories. Symlink ginatra's `repos` directory to `~/.bananajour/repositories` to serve up your bananajour repositories.
|
56
|
+
|
45
57
|
Official repository and support
|
46
58
|
-------------------------------
|
47
59
|
|
data/lib/bananajour/version.rb
CHANGED
data/sinatra/views/home.haml
CHANGED
@@ -250,7 +250,7 @@
|
|
250
250
|
repoLi.removeClass("loading");
|
251
251
|
$("<img class='gravatar'/>").attr("src", data.bananajour.gravatar).prependTo(repoLi);
|
252
252
|
$("<span class='branches' />").text(data.heads.join(", ")).appendTo(repoLi);
|
253
|
-
$('<span class="more">+</span>')
|
253
|
+
if(data.recent_commits.length > 1) $('<span class="more">+</span>')
|
254
254
|
.click(function() {
|
255
255
|
if ($(this).text() == "+") {
|
256
256
|
repoLi.find(".message").show();
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: toolmantim-bananajour
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.6
|
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-08-05 00:00:00 -07:00
|
13
13
|
default_executable: bananajour
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.1.
|
33
|
+
version: 1.1.7
|
34
34
|
version:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: chrislloyd-fancypath
|
@@ -158,6 +158,7 @@ files:
|
|
158
158
|
- sinatra/views/readme.haml
|
159
159
|
has_rdoc: false
|
160
160
|
homepage: http://github.com/toolmantim/bananajour
|
161
|
+
licenses:
|
161
162
|
post_install_message:
|
162
163
|
rdoc_options: []
|
163
164
|
|
@@ -178,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
179
|
requirements: []
|
179
180
|
|
180
181
|
rubyforge_project:
|
181
|
-
rubygems_version: 1.
|
182
|
+
rubygems_version: 1.3.5
|
182
183
|
signing_key:
|
183
184
|
specification_version: 2
|
184
185
|
summary: Local git repository hosting with a sexy web interface and bonjour discovery. It's like your own little adhoc, network-aware github!
|