vx-service_connector 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0739d7378b49d46cb7a382a39aaf5cff3c95384
4
- data.tar.gz: 30d5bc44ec412a91f492479e249bdb85aa95a5f4
3
+ metadata.gz: eb54ddf9b4a35e3537d44d9e4a78ab1ff6f5e238
4
+ data.tar.gz: bee8b9b125abac40e996387f3da6bfab65ffa460
5
5
  SHA512:
6
- metadata.gz: c310b2305c166e554d7898e5e88d8d88021f6cc48b152ea3cf90377dc42c6726c286c263fdbc71afe0f6d82655b1ff390e1d80ae97b63dcea1f88fd711ee6acb
7
- data.tar.gz: 7c1e2ce1ee3e1e019311d181406156c275fb547097b0ccf7e7b53d7be98af0194e7349e4ef08e4e38697789fa3ce511380e794ba4766098574baec1c35e4a7c2
6
+ metadata.gz: 1d3256f9742c901bd636bfb62ce8893403982976276ea41642dc5e81624573e1205c2a637dc7e581b4f16e0f289c1faee62adce732b90bc9a6522325cd85e194
7
+ data.tar.gz: d4e2fcfeda4695fb2a48153f8cf1c2339dc3f185161f5cc9d2e9cb476a38afccf487381e5a78d0a376009ae9875c95d19b099c2b97a53162851c971e1aebf31c
@@ -1,10 +1,15 @@
1
1
  module Vx
2
2
  module ServiceConnector
3
3
  module Base
4
+
4
5
  def repos
5
6
  raise ArgumentError, 'not implemented'
6
7
  end
7
8
 
9
+ def organizations
10
+ raise ArgumentError, 'not implemented'
11
+ end
12
+
8
13
  def deploy_keys(repo)
9
14
  raise ArgumentError, 'not implemented'
10
15
  end
@@ -14,6 +14,10 @@ module Vx
14
14
  @repos ||= Github::Repos.new(session).to_a
15
15
  end
16
16
 
17
+ def organizations
18
+ @organizations ||= Github::Repos.new(session).organizations
19
+ end
20
+
17
21
  def hooks(repo)
18
22
  Github::Hooks.new(session, repo)
19
23
  end
@@ -1,5 +1,5 @@
1
1
  module Vx
2
2
  module ServiceConnector
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vx-service_connector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Galinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-22 00:00:00.000000000 Z
11
+ date: 2014-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octokit