public
Rubygem
Description: Don't mind this, go to http://github.com/integrity/integrity
Homepage: http://integrityapp.com
Clone URL: git://github.com/foca/integrity.git
update the installer to set the path to integrity log file
sr (author)
Fri Nov 21 15:35:52 -0800 2008
commit  7b409ab6f579eb244ee2b32691ef397fa0c80498
tree    057bb38cd8ac18aa2a960c412689acd907f5cc15
parent  6cc92bfc9712440ed45e3630c081fb3e776ace6b
...
50
51
52
 
53
54
55
...
50
51
52
53
54
55
56
0
@@ -50,6 +50,7 @@ class WithIntegrity < Thor
0
       config = File.read(root / "config.yml")
0
       config.gsub!(%r(sqlite3:///var/integrity.db), "sqlite3://#{root}/integrity.db")
0
       config.gsub!(%r(/path/to/scm/exports),        "#{root}/builds")
0
+      config.gsub!(%r(/var/log),        "#{root}/log")
0
       File.open(root / "config.yml", "w") {|f| f.puts config }
0
     end
0
 
...
13
14
15
 
 
 
16
17
18
...
13
14
15
16
17
18
19
20
21
0
@@ -13,6 +13,9 @@
0
 # writable by the user that runs Integrity.
0
 :export_directory: /path/to/scm/exports
0
 
0
+# Path to the integrity log file
0
+:log: /var/log/integrity.log
0
+
0
 # Enable or disable HTTP authentication for the app. BE AWARE that if you 
0
 # disable this anyone can delete and alter projects, so do it only if your 
0
 # app is running in a controlled environment (ie, behind your company's

Comments