git-semaphore 0.0.5 → 0.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d2ced61b3a6d956e7de7b9f221ed5177ba694241
4
- data.tar.gz: d0b8ff55740a0372c195df5e633f925ca9461030
3
+ metadata.gz: 273edea665e8a70a50d0e17fd21ee64c118acf43
4
+ data.tar.gz: 302770a9c92bcfa7bd0f225e9268604d6c3a44e2
5
5
  SHA512:
6
- metadata.gz: 22355eb12f01dc103d7def13e42ed9bf891fc089fd11de73bab19a2e5efcfe2ef7fda53dd183bb12bf8900dd4bb5469b67c5dfe5b963650f9305110500102966
7
- data.tar.gz: 5a3d80cfeb1085db9cf5ce25458bc0c852cfe20ff9295430fe8b3b2ee1ada359dd8ed30392af4f7dbffcb75c9c51482ad36fcd89123f882e376a393b76a13678
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-p481
1
+ 2.0.0-p598
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Git::Semaphore
2
2
 
3
- ![SEMAPHORE BADGE](https://semaphoreapp.com/api/v1/projects/03b2dffc7112138851166c86adb456484426a712/7753/badge.png)
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 users projects
43
+ ### listing of user's projects
44
44
 
45
45
  $ git semaphore --projects
46
46
 
47
- ### listing of projects branches
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 projects branch
53
+ ### status of a project's branch
54
54
 
55
55
  $ git semaphore --status
56
56
 
data/bin/git-semaphore CHANGED
@@ -4,6 +4,8 @@ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
4
4
 
5
5
  begin
6
6
  require 'git-semaphore'
7
+ require 'bundler'
8
+ Bundler.setup
7
9
  rescue LoadError
8
10
  require 'rubygems'
9
11
  require 'git-semaphore'
@@ -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: |
@@ -0,0 +1,5 @@
1
+ Then /^the following trollop options should be documented:$/ do |options|
2
+ options.raw.each do |option|
3
+ step %(the output should match /\\s*#{Regexp.escape(option.first)}\\s+\\w+\\w+\\w+/)
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Semaphore
3
- VERSION = "0.0.5"
3
+ VERSION = "0.0.6"
4
4
  end
5
5
  end
@@ -0,0 +1,2 @@
1
+ *
2
+ !.gitignore
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.5
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.4.1
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