git-semaphore 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitconform +9 -0
- data/.ruby-version +1 -1
- data/README.md +4 -4
- data/bin/git-semaphore +2 -0
- data/features/help_and_version.feature +1 -1
- data/features/step_definitions/patch_methadone_steps.rb +5 -0
- data/lib/git-semaphore/version.rb +1 -1
- data/vendor/bundle/.gitignore +2 -0
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 273edea665e8a70a50d0e17fd21ee64c118acf43
|
4
|
+
data.tar.gz: 302770a9c92bcfa7bd0f225e9268604d6c3a44e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0bb582591be6261a260d12def5c0342327707f2bf5e027e5201f9d16e650c91fe97775cf755a9ed12ec56bdbf5946f6b5617b64f30d7138501265956510b692
|
7
|
+
data.tar.gz: f0cdfbc68247ba305561b0437d63b2ecde37bcf52c7b574fad3196126d1491480f02beb274d00302baaba985215e5a29ba3bccd8efdf3f4733b0f54637db7842
|
data/.gitconform
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
[git "conform"]
|
2
|
+
checker = CarriageReturnCharacterChecker
|
3
|
+
checker = FileNotEmptyChecker
|
4
|
+
checker = LowercaseFilenameChecker
|
5
|
+
checker = NonAsciiCharacterChecker
|
6
|
+
checker = NonAsciiFilenameChecker
|
7
|
+
checker = TabCharacterChecker
|
8
|
+
checker = TrailingWhitespaceChecker
|
9
|
+
checker = WhitespaceFilenameChecker
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.0-
|
1
|
+
2.0.0-p598
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Git::Semaphore
|
2
2
|
|
3
|
-
![
|
3
|
+
[![Build Status](https://semaphoreapp.com/api/v1/projects/03b2dffc7112138851166c86adb456484426a712/7753/badge.png)](https://semaphoreapp.com/pvdb/git-semaphore)
|
4
4
|
|
5
5
|
git integration with [semaphoreapp.com][semaphoreapp.com]
|
6
6
|
|
@@ -40,17 +40,17 @@ Next, choose one of the following mechanisms to make your API `authentication to
|
|
40
40
|
|
41
41
|
All of the below examples need to be run from within a git directory.
|
42
42
|
|
43
|
-
### listing of user
|
43
|
+
### listing of user's projects
|
44
44
|
|
45
45
|
$ git semaphore --projects
|
46
46
|
|
47
|
-
### listing of project
|
47
|
+
### listing of project's branches
|
48
48
|
|
49
49
|
$ git semaphore --branches
|
50
50
|
|
51
51
|
_(the project name is derived from the current git directory)_
|
52
52
|
|
53
|
-
### status of a project
|
53
|
+
### status of a project's branch
|
54
54
|
|
55
55
|
$ git semaphore --status
|
56
56
|
|
data/bin/git-semaphore
CHANGED
@@ -7,7 +7,7 @@ Feature: Help Me I've Got Versionitis
|
|
7
7
|
And the banner should be present
|
8
8
|
And the banner should include the version
|
9
9
|
And the banner should document that this app takes options
|
10
|
-
And the following options should be documented:
|
10
|
+
And the following trollop options should be documented:
|
11
11
|
| --version, -v: |
|
12
12
|
| --help, -h: |
|
13
13
|
| --working-dir, -w: |
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-semaphore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Vandenberk
|
@@ -284,6 +284,8 @@ executables:
|
|
284
284
|
extensions: []
|
285
285
|
extra_rdoc_files: []
|
286
286
|
files:
|
287
|
+
- .bundle/config
|
288
|
+
- .gitconform
|
287
289
|
- .gitignore
|
288
290
|
- .irbrc
|
289
291
|
- .ruby-version
|
@@ -309,6 +311,7 @@ files:
|
|
309
311
|
- features/semaphore_auth_token.feature
|
310
312
|
- features/semaphore_project_token.feature
|
311
313
|
- features/step_definitions/git-semaphore_steps.rb
|
314
|
+
- features/step_definitions/patch_methadone_steps.rb
|
312
315
|
- features/step_definitions/vcr_semaphore_steps.rb
|
313
316
|
- features/support/env.rb
|
314
317
|
- features/support/semaphoreapp.rb
|
@@ -322,6 +325,7 @@ files:
|
|
322
325
|
- lib/git-semaphore/copyright.rb
|
323
326
|
- lib/git-semaphore/version.rb
|
324
327
|
- spec_helper.rb
|
328
|
+
- vendor/bundle/.gitignore
|
325
329
|
homepage: https://github.com/pvdb/git-semaphore
|
326
330
|
licenses: []
|
327
331
|
metadata: {}
|
@@ -341,7 +345,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
341
345
|
version: '0'
|
342
346
|
requirements: []
|
343
347
|
rubyforge_project:
|
344
|
-
rubygems_version: 2.
|
348
|
+
rubygems_version: 2.0.14
|
345
349
|
signing_key:
|
346
350
|
specification_version: 4
|
347
351
|
summary: '["git integration with https://semaphoreapp.com"]'
|
@@ -362,6 +366,7 @@ test_files:
|
|
362
366
|
- features/semaphore_auth_token.feature
|
363
367
|
- features/semaphore_project_token.feature
|
364
368
|
- features/step_definitions/git-semaphore_steps.rb
|
369
|
+
- features/step_definitions/patch_methadone_steps.rb
|
365
370
|
- features/step_definitions/vcr_semaphore_steps.rb
|
366
371
|
- features/support/env.rb
|
367
372
|
- features/support/semaphoreapp.rb
|