murmurs 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +5 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -2,6 +2,7 @@ Murmurs
|
|
2
2
|
================
|
3
3
|
|
4
4
|
Murmurs is a rubygem provides commands to post a murmur message to your Mingle project.
|
5
|
+
And Git post-receive hook to post murmurs when new commits pushed to Git server.
|
5
6
|
|
6
7
|
Ruby 1.9+ is required.
|
7
8
|
|
@@ -52,10 +53,13 @@ murmurs gem should install a new command 'murmurs-git' (In some OS, the script n
|
|
52
53
|
|
53
54
|
Install the git hook for post-receive:
|
54
55
|
|
55
|
-
murmurs-git <
|
56
|
+
murmurs-git <git repository path>
|
56
57
|
|
57
58
|
Then, in the git repository, setup the following configs:
|
58
59
|
|
59
60
|
git config hooks.minglemurmursurl "https://your-site.mingle-api.thoughtworks.com/api/v2/projects/your_project/murmurs.xml"
|
60
61
|
git config hooks.mingleaccesskeyid <Mingle user access key id>
|
61
62
|
git config hooks.mingleaccesssecretkey <Mingle user access secret key>
|
63
|
+
|
64
|
+
Note, if murmurs-git script got renamed to murmurs-git1.9 on your OS, another command "murmurs" probably will also be renamed to "murmurs1.9".
|
65
|
+
The git post-receive hook installed in your <git repository path>/hooks (or <git repository path>/.git/hooks) directory is calling "murmurs" command to post murmur to Mingle, so you need change command "murmurs" in the post-recieve hook to be "murmurs1.9"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: murmurs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: 1.8.1
|
46
|
-
description: ! '
|
46
|
+
description: ! 'Post murmur to your Mingle project from command line.
|
47
47
|
|
48
48
|
Git post-receive hook to post murmurs when new commits pushed to Git server.
|
49
49
|
|