fastlane-plugin-jira_set_feature_build 1.0.2 → 1.0.3

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
  SHA256:
3
- metadata.gz: 0b48bb2f1cf00d1534345886c0fd5d6ec16e43c8389da23486ce6edc82661a14
4
- data.tar.gz: 2f4f2f032367f37bf90d12ff49238ecfe7247da886a5c73fe7c2e34e0c969b0b
3
+ metadata.gz: 6b7703752c7a564e89a1c315c09d4aa6dba68acb31587a750744fa94eae862a9
4
+ data.tar.gz: ebb4b62d96f498993898592cc8d9625b0a5e09ec52e409a6b4e2ff5f9cdeda9c
5
5
  SHA512:
6
- metadata.gz: 30d97ec455e2bf82cb16429cb76a4aa3d1f01f3f11fdbfd606ad0da54029701b6d81fb8f3b48d55679b3a9e991d950b0c3bd794703336178ea72e8c34369f556
7
- data.tar.gz: e254fba1fe8dc99a800d6c89088b5a38af0da19493d43c234f0e3135f43681bc8fb858e63a96bb824ef8f4cd00256998f2d267230dc3cf9b6066e7df2aebf2b9
6
+ metadata.gz: 5dedc6a42830e4cd8968f3a8190eb2a952d1ca630ceb6856b6fa7f77ead7a40667d82b709e80349071ba87a034751ccafef20c83bf4904505a9cfa8fa2059357
7
+ data.tar.gz: a7d2b317f444f06d04c15888baf38afe25538c60d921993f703a433abd52c74b9aefce33b3e00c6ac0123a05175fc19623a9bf85f041230892114a38a5ef39c9
@@ -86,6 +86,10 @@ module Fastlane
86
86
  ["Tommy Sadiq Hinrichsen", "Brandon McAnsh"]
87
87
  end
88
88
 
89
+ def self.is_supported?(platform)
90
+ true
91
+ end
92
+
89
93
  def self.return_value
90
94
  "Return the URL of the feature build"
91
95
  end
@@ -135,14 +139,14 @@ module Fastlane
135
139
  description: "The url of the feature build from the CI job",
136
140
  type: String,
137
141
  verify_block: proc do |value|
138
- UI.user_error!("No version name given, pass using `url: 'http://someurl'`") unless value and !value.empty?
142
+ UI.user_error!("No URL given, pass using `feature_build_url: 'http://someurl'`") unless value and !value.empty?
139
143
  end),
140
144
  FastlaneCore::ConfigItem.new(key: :ticket_reference,
141
145
  env_name: "FL_CREATE_JIRA_TICKET_REFERENCE",
142
146
  description: "The ticket reference on JIRA",
143
147
  type: String,
144
148
  verify_block: proc do |value|
145
- UI.user_error!("No version name given, pass using `url: 'http://someurl'`") unless value and !value.empty?
149
+ UI.user_error!("No ticket reference given, pass using `ticket_reference: 'APPS-1234'`") unless value and !value.empty?
146
150
  end),
147
151
  ]
148
152
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module JiraSetFeatureBuild
3
- VERSION = "1.0.2"
3
+ VERSION = "1.0.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-jira_set_feature_build
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tommy Sadiq Hinrichsen