github_issue_branch 0.0.3 → 0.0.4

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: 744f2fdc287ee1279fe368c6fe87b4d066c10259
4
- data.tar.gz: 00b77bf71e4dbe59c9cd5de336dd320f49246630
3
+ metadata.gz: da5840999cfb55e6da8fd76ece2d42ceed6aa8b7
4
+ data.tar.gz: c73fc506cd30667c96a84423a93643ee5d073945
5
5
  SHA512:
6
- metadata.gz: 722a3f18c03390327a06e41614957124f95cf06bb33143329ea11319e6b059cae5f5de2b431827d06278c077aa7f339cfbe2252655e26a7a9d0d67efd1a3e20f
7
- data.tar.gz: 4f5fa3aa95a218bf540a6aab6ed21894d2e5cf8b8450725e3904fec85f97025895c4fef893df7e1251251ff0316c623247adfb417a7776050098ee57319ba6cc
6
+ metadata.gz: ebd7767810d06fe918626c6b41a5048acd8ad8c3f452d38b84d8a2dc14f96b842a6c503b1d31b0ed2d5b1ca5bfafa6aba70f86f4f41c04540946ad1d65215ed7
7
+ data.tar.gz: 51208afb725a6003505b08fd0c69f97fd4b46a7dd32b14320651561ee878528b47ad4cbac35f5ebcd4575a5ec86f2d912577857ad1211f385acee3c3fc0123c0
@@ -33,6 +33,7 @@ class GithubIssueBranch
33
33
  def initialize
34
34
  load_configs
35
35
  @github = Github.new(oauth_token: @github_token)
36
+ @github_username = @github.users.get.login
36
37
  end
37
38
 
38
39
  def get_issue_list
@@ -66,7 +67,6 @@ class GithubIssueBranch
66
67
  private
67
68
 
68
69
  def load_configs
69
- @github_username = @github.users.get.login
70
70
  @github_token = read_conf 'github_auth_token', 'GITHUB_AUTH_TOKEN'
71
71
  owner, repo = GitUtils.get_remote_user_repo('origin')
72
72
  @github_repo_owner = read_conf('github_owner') || owner
@@ -1,3 +1,3 @@
1
1
  module GithubIssueBranch
2
- VERSION='0.0.3'
2
+ VERSION='0.0.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_issue_branch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rui Baltazar