deedubs-gitosis_fu 0.1.1 → 0.1.2

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/gitosis_fu.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{gitosis_fu}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dan Williams"]
@@ -26,6 +26,7 @@ Gem::Specification.new do |s|
26
26
  "gitosis_fu.gemspec",
27
27
  "lib/gitosis_fu.rb",
28
28
  "lib/ini.rb",
29
+ "spec/example/gitosis.conf",
29
30
  "spec/gitosis_fu_spec.rb",
30
31
  "spec/spec_helper.rb"
31
32
  ]
data/lib/gitosis_fu.rb CHANGED
@@ -32,7 +32,7 @@ class GitosisFu
32
32
  end
33
33
 
34
34
  def write
35
- Ini.write_to_file(@path,to_ini,"This gitosis install is managed by gitosis_admin\n")
35
+ Ini.write_to_file(File.join(@path,'gitosis.conf'),to_ini,"This gitosis install is managed by gitosis_admin\n")
36
36
  end
37
37
 
38
38
  private
@@ -0,0 +1,15 @@
1
+ [gitosis]
2
+
3
+ [group gitosis-admin]
4
+ writable = gitosis-admin
5
+ members = deedubs dan
6
+
7
+ [group testers1]
8
+ writable = test1 test2
9
+ readonly = test3 test4
10
+ members = dan
11
+
12
+ [group testers2]
13
+ writable = test5 test6
14
+ readonly = test7 test8
15
+ members = deedubs
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deedubs-gitosis_fu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Williams
@@ -32,6 +32,7 @@ files:
32
32
  - gitosis_fu.gemspec
33
33
  - lib/gitosis_fu.rb
34
34
  - lib/ini.rb
35
+ - spec/example/gitosis.conf
35
36
  - spec/gitosis_fu_spec.rb
36
37
  - spec/spec_helper.rb
37
38
  has_rdoc: false