build-buddy 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/build_buddy.rb +1 -1
- data/lib/build_buddy/build_data.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16fb9e784891a36a8605bfb28a2dc0b6732bddfe
|
4
|
+
data.tar.gz: cea6d9d71a7cbf7fc60a7bcd2f616f3b528a6e7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45137cb1f04cf4ef5ff8bbf5a175284b6dc688d92e7860d3399dba051fdee8a69c2c20df26fa0704637dea133193c154ee970fab188dad22441010476342f17e
|
7
|
+
data.tar.gz: 8bd2411712d0deba74f0043d793a0f55d01decba069e986355e6ab24a8383dd89e5bdad9a9d312c1e3f4015ecbe7b950f82672153af1f5d398b376ce8d316abb
|
data/lib/build_buddy.rb
CHANGED
@@ -3,6 +3,7 @@ module BuildBuddy
|
|
3
3
|
attr_accessor :build_type # one of :master, :release or :pull_request
|
4
4
|
attr_accessor :repo_full_name
|
5
5
|
attr_accessor :build_version
|
6
|
+
attr_accessor :pull_request
|
6
7
|
attr_accessor :repo_full_name
|
7
8
|
attr_accessor :repo_sha
|
8
9
|
attr_accessor :termination_type
|
@@ -16,6 +17,7 @@ module BuildBuddy
|
|
16
17
|
@repo_full_name = args[:repo_full_name]
|
17
18
|
@repo_sha = args[:repo_sha]
|
18
19
|
@build_version = args[:build_version]
|
20
|
+
@pull_request = args[:pull_request]
|
19
21
|
end
|
20
22
|
end
|
21
23
|
end
|