travisci-bundle-update-pr 0.0.7 → 0.0.8

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: ff3274c955775517613439aef58ba2c1162ab93e
4
- data.tar.gz: e3e45b9247141c316c259ae500e8d655b70b53f8
3
+ metadata.gz: 07813eaffdc7e60e6ccc01bd45584c2669cc874a
4
+ data.tar.gz: 24aa67654fd3f7b9f9c7b17bc487fd795b873084
5
5
  SHA512:
6
- metadata.gz: 3ea061f8b10705e5facfd872a0f25a547cf5749e39dcc8898a606038eff3bceaf5761bf8a2c8b3098aa193fe8f5b055da4da57f221de9d182175fb46f522946e
7
- data.tar.gz: e5ab3193de17c11713ec8678288564dbeae1aee4398451a0a4465af0877bb31ba990f9bfda27681759fd17ac0be98fabcb013e89cd82f6063544768f8ab9f659
6
+ metadata.gz: bbf079f094652f8c625f323ad387eb957f96aa2e3fa42ef797bf2760fd0d8a2c8b524ed101f588d6df396aa0d05b86514ee0966f7c2ffaca19501ec9a27be64a
7
+ data.tar.gz: 9526f89952ceba12280c77e757c09f319b567c71256452ed793f821ea5da462ba04a4e8df827fb26e188bc528684c9f2b615584e363e6f54aa43e05ff27e1d27
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- travisci-bundle-update-pr (0.0.7)
4
+ travisci-bundle-update-pr (0.0.8)
5
5
  octokit (~> 4.0)
6
6
 
7
7
  GEM
@@ -2,4 +2,4 @@
2
2
 
3
3
  require "travisci/bundle/update/pr"
4
4
 
5
- Travisci::Bundle::Update::Pr.start(git_username: ARGV.shift, git_email: ARGV.shift, git_branch: ARGV.empty? ? ["master"] : ARGV)
5
+ Travisci::Bundle::Update::Pr.start(git_username: ARGV.shift, git_email: ARGV.shift, git_branch: ARGV.empty? ? 'master' : ARGV)
@@ -5,7 +5,7 @@ module Travisci
5
5
  module Bundle
6
6
  module Update
7
7
  module Pr
8
- def self.start(git_username: nil, git_email: nil, git_branch: ['master'])
8
+ def self.start(git_username: nil, git_email: nil, git_branch: 'master')
9
9
  raise "travisci-bundle-update-pr can be executed only in Travis CI." unless ENV['TRAVIS']
10
10
  raise "$TRAVIS_REPO_SLUG undefined." unless ENV['TRAVIS_REPO_SLUG']
11
11
  raise "$GITHUB_ACCESS_TOKEN undefined." unless ENV['GITHUB_ACCESS_TOKEN']
@@ -2,7 +2,7 @@ module Travisci
2
2
  module Bundle
3
3
  module Update
4
4
  module Pr
5
- VERSION = "0.0.7"
5
+ VERSION = "0.0.8"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travisci-bundle-update-pr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasufumi Moritake