bitrise-client 0.2.0 → 0.3.0
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 +4 -4
- data/.rspec +0 -1
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/bitrise-client.gemspec +1 -1
- data/lib/bitrise/client/build.rb +0 -2
- data/lib/bitrise/client/version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f15cf920657bd0d807ef0a92126a5acb6d6b6a506eef4052f0b39bc2ab89900
|
4
|
+
data.tar.gz: 2baa2c6b0f2016b177cbb421542648d48e1a78d0109d7e9b5fe769bc313db278
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77e6523d02be774fde5e19ae4e969641869bb2291fe8c9972b4bf6d219676f7f66d4d17a0a492160bda7267080264258386ed55f6bee2aed4b333153bda2242c
|
7
|
+
data.tar.gz: 104a524aa88ed749f6ed5e62365e7583d70aecff509dfffcc888f201676d9f4cfc771473f899d322ffed2909b02ff50445dc06bf879ae3b9e419c50c06124bb0
|
data/.rspec
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## v0.3.0
|
2
|
+
|
3
|
+
Lock faraday version to 1.X because `Faraday::Response::Middleware` is deleted in faraday 2. - [tomorrowkey](https://github.com/tomorrowkey) [#5](https://github.com/mataku/bitrise-client/pull/5)
|
4
|
+
|
1
5
|
## v0.2.0
|
2
6
|
|
3
7
|
Changed to use the [Bitrise v0.1 API](https://devcenter.bitrise.io/en/api.html), so you need to change to specify an access token to bitrise-client initialization. See: https://github.com/mataku/bitrise-client#usage
|
data/README.md
CHANGED
data/bitrise-client.gemspec
CHANGED
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
36
36
|
spec.require_paths = ["lib"]
|
37
37
|
|
38
|
-
spec.add_runtime_dependency 'faraday'
|
38
|
+
spec.add_runtime_dependency 'faraday', '~> 1'
|
39
39
|
|
40
40
|
spec.add_development_dependency "bundler"
|
41
41
|
spec.add_development_dependency "irb"
|
data/lib/bitrise/client/build.rb
CHANGED
@@ -42,8 +42,6 @@ module Bitrise
|
|
42
42
|
# @option opts [Boolean] :abort_with_success Treat as a successful or not
|
43
43
|
# @option opts [Boolean] :skip_notifications Set true if you want to send email notifications about aborting by Bitrise
|
44
44
|
#
|
45
|
-
# @return [Bitrise::BuildTriggerResult]
|
46
|
-
#
|
47
45
|
# See: https://devcenter.bitrise.io/en/api/triggering-and-aborting-builds.html#aborting-a-build
|
48
46
|
def abort_build(app_slug: nil, build_slug: nil, options: {})
|
49
47
|
raise ArgumentError, 'App slug required. You must specify by \'app_slug:\'' unless app_slug
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bitrise-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mataku
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -113,7 +113,7 @@ licenses:
|
|
113
113
|
metadata:
|
114
114
|
homepage_uri: https://github.com/mataku/bitrise-client
|
115
115
|
source_code_uri: https://github.com/mataku/bitrise-client
|
116
|
-
post_install_message:
|
116
|
+
post_install_message:
|
117
117
|
rdoc_options: []
|
118
118
|
require_paths:
|
119
119
|
- lib
|
@@ -128,8 +128,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: '0'
|
130
130
|
requirements: []
|
131
|
-
rubygems_version: 3.
|
132
|
-
signing_key:
|
131
|
+
rubygems_version: 3.1.6
|
132
|
+
signing_key:
|
133
133
|
specification_version: 4
|
134
134
|
summary: A ruby clent for Bitrise API
|
135
135
|
test_files: []
|