twigg 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/lib/twigg/command/help.rb +1 -1
- data/lib/twigg/command/stats.rb +0 -1
- data/lib/twigg/command.rb +1 -2
- data/lib/twigg/commit_set.rb +0 -2
- data/lib/twigg/dependency.rb +0 -2
- data/lib/twigg/version.rb +1 -1
- data/templates/twiggrc.yml +52 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4acbfc3dab81cc46307e04748ccc89ade34cac2
|
|
4
|
+
data.tar.gz: 13e6267f6bd29a0f84ddbcf7fd7110a7fd1806bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37d68f4ad72e96ae993e614e362ac5a5d2fd323d68724558970687ba3bab3a0d5b330d0b707744c98d99ae32ad967cfebdcf9d965510a66ae3ce638c69a23ba9
|
|
7
|
+
data.tar.gz: b912766a33db3431a3a07d479b1cf831f01ba461555ba36a2956bc236d7f55aa9a997284b9b4f1312bc41961f19cc9076a211ad9c119151a6cf655c212058be6
|
data/lib/twigg/command/help.rb
CHANGED
data/lib/twigg/command/stats.rb
CHANGED
data/lib/twigg/command.rb
CHANGED
data/lib/twigg/commit_set.rb
CHANGED
data/lib/twigg/dependency.rb
CHANGED
data/lib/twigg/version.rb
CHANGED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Sample .twiggrc file (YAML format)
|
|
2
|
+
#
|
|
3
|
+
# To use, place in a standard location (eg. `~/.twiggrc`) or explicitly
|
|
4
|
+
# instruct Twigg to use the file via the TWIGGRC environment variable or the
|
|
5
|
+
# `-c`/`--config` switches.
|
|
6
|
+
#
|
|
7
|
+
---
|
|
8
|
+
default_days: 7 # default
|
|
9
|
+
organization: Causes
|
|
10
|
+
repositories_directory: /home/jimmy/repos
|
|
11
|
+
|
|
12
|
+
app:
|
|
13
|
+
bind: '0.0.0.0' # default
|
|
14
|
+
gerrit:
|
|
15
|
+
enabled: false # default
|
|
16
|
+
|
|
17
|
+
cache:
|
|
18
|
+
enabled: false # default
|
|
19
|
+
expiry: 3600 # default, 1 hour
|
|
20
|
+
host: localhost # default
|
|
21
|
+
namespace: twigg # default
|
|
22
|
+
port: 11211 # default
|
|
23
|
+
value_max_bytes: 4194304
|
|
24
|
+
|
|
25
|
+
gerrit:
|
|
26
|
+
user: jimmy
|
|
27
|
+
port: 29418 # default
|
|
28
|
+
host: gerrit.example.com
|
|
29
|
+
db:
|
|
30
|
+
adapter: mysql2 # default
|
|
31
|
+
database: gerritdb
|
|
32
|
+
host: gerrit.example.com
|
|
33
|
+
password: secret
|
|
34
|
+
port: 3306 # default
|
|
35
|
+
user: jimmy
|
|
36
|
+
web:
|
|
37
|
+
host: 'https://localhost' # default
|
|
38
|
+
|
|
39
|
+
github:
|
|
40
|
+
organization: causes
|
|
41
|
+
token: 0da57c4304855867e97dd4419d7d070543c5c092
|
|
42
|
+
|
|
43
|
+
teams:
|
|
44
|
+
Red Team:
|
|
45
|
+
- John Smith
|
|
46
|
+
- Barbara Jones
|
|
47
|
+
Blue Team:
|
|
48
|
+
- Alec Alexson
|
|
49
|
+
- Jane James
|
|
50
|
+
Green Team:
|
|
51
|
+
- Rodrigo Schultz
|
|
52
|
+
- Yahuro Bordeux
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twigg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Causes Engineering
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -116,6 +116,7 @@ files:
|
|
|
116
116
|
- lib/twigg/util.rb
|
|
117
117
|
- lib/twigg/version.rb
|
|
118
118
|
- lib/twigg.rb
|
|
119
|
+
- templates/twiggrc.yml
|
|
119
120
|
homepage: https://github.com/causes/twigg
|
|
120
121
|
licenses:
|
|
121
122
|
- MIT
|