Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer (GitLab) <jacob@gitlab.com>2017-07-27 11:35:43 +0300
committerAndrew Newdigate <andrew@gitlab.com>2017-07-27 11:35:43 +0300
commit0c32842c37e5f41a1d427312f390963237ab57fa (patch)
tree43d6521277989e53ce3da795f241712b1a895c82 /internal/config
parent0ffed4e45f9ced7aec0d15187432d85d68295f7d (diff)
Implement CommitService.CommitLanguages
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/config.go1
-rw-r--r--internal/config/ruby.go6
2 files changed, 7 insertions, 0 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index 113047e22..a7f1ee421 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -25,6 +25,7 @@ type config struct {
Logging Logging `toml:"logging" envconfig:"logging"`
Prometheus Prometheus `toml:"prometheus"`
Auth Auth `toml:"auth"`
+ Ruby Ruby `toml:"gitaly-ruby"`
}
// Git contains the settings for the Git executable
diff --git a/internal/config/ruby.go b/internal/config/ruby.go
new file mode 100644
index 000000000..71ad92d56
--- /dev/null
+++ b/internal/config/ruby.go
@@ -0,0 +1,6 @@
+package config
+
+// Ruby contains setting for Ruby worker processes
+type Ruby struct {
+ Dir string `toml:"dir"`
+}