jbox-gitolite 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gitolite/config/repo.rb +1 -1
- data/lib/gitolite/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a2aa4cc2a087c9095b041a5e2373ba4756a77de
|
4
|
+
data.tar.gz: f821142659f8deaa5c40a9d188dfc9c88a83b2d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 126e75890d009fcfe352d255203281be4664687803198988f83104ea0674c3fcea65411350582018552fb7a311e9ff6528c1df10c36a444a6e9ff8a0ae0b9c7c
|
7
|
+
data.tar.gz: a1d6c69600a931a6e845f21c7266489d5591cd4d6586a32d7e91baab177f7925ae1c6e234156d39022456dc4c70a125dcadcc2f10486f11214b85f4b33b02a74
|
data/lib/gitolite/config/repo.rb
CHANGED
@@ -11,7 +11,7 @@ module Gitolite
|
|
11
11
|
#Store the perm hash in a lambda since we have to create a new one on every deny rule
|
12
12
|
#The perm hash is stored as a 2D hash, with individual permissions being the first
|
13
13
|
#degree and individual refexes being the second degree. Both Hashes must respect order
|
14
|
-
@perm_hash_lambda = lambda {
|
14
|
+
@perm_hash_lambda = lambda { Hash.new {|k,v| k[v] = Hash.new{|k2, v2| k2[v2] = [] }} }
|
15
15
|
@permissions = Array.new.push(@perm_hash_lambda.call)
|
16
16
|
|
17
17
|
@name = name
|
data/lib/gitolite/version.rb
CHANGED