gitlab-mirror-pull 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config.example.yml +10 -0
- metadata +24 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5fc0a110fa694a431b08d1d858c624c8c52f73e56c34ae1e9225b9bf6680693
|
4
|
+
data.tar.gz: aa5308fc8d5cf0fc08c0432f7e39cce7c1d92041906c5625894c71787a71216a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc1fb6e22c7235b1fbccbc13fbc9263a0f98f2412b4c7b58c4fd47d934f0d5321768eca04d8711209e45d86baa99a6f6487e97b6084f5e4117cc7d577ee20e6e
|
7
|
+
data.tar.gz: 165ac2091fe71892595c936258a97cc2243573e3817170b67cd251210f9d8156e2a9c702fcf45c1f0b8164e73b332430bb4136c176fdd6f37e8f57c209841086
|
data/config.example.yml
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
git:
|
2
|
+
path: "/usr/bin/git"
|
3
|
+
repos: "/var/opt/gitlab/git-data/repositories" # Default path of gitlab omnibus installation
|
4
|
+
ignore:
|
5
|
+
- "group-name/project-name" # Ignore single repo
|
6
|
+
- "group-name" # Ignore entire group
|
7
|
+
provider: # provider equals to "remote" set in your repository
|
8
|
+
- "github"
|
9
|
+
- "gitlab"
|
10
|
+
|
metadata
CHANGED
@@ -1,15 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab-mirror-pull
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ochorocho
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-06-
|
12
|
-
dependencies:
|
11
|
+
date: 2018-06-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: git
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.3.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.3.0
|
13
33
|
description: Checks for repositories with a set remote and run git fetch on these
|
14
34
|
...
|
15
35
|
email: rothjochen@gmail.com
|
@@ -19,6 +39,7 @@ extensions: []
|
|
19
39
|
extra_rdoc_files: []
|
20
40
|
files:
|
21
41
|
- bin/gitlab-mirror-pull
|
42
|
+
- config.example.yml
|
22
43
|
- lib/gitlab-mirror-pull.rb
|
23
44
|
homepage: https://github.com/ochorocho/gitlab-mirror-pull
|
24
45
|
licenses:
|