fastlane-plugin-applivery 2.2.1 → 2.3.0

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
- SHA1:
3
- metadata.gz: 3f6a4bdb8ae1d3a5e7fd7f78313720111035d3cb
4
- data.tar.gz: 45f46746fa6b4590936e464b0a9f0e57eb51a547
2
+ SHA256:
3
+ metadata.gz: 0fd0bdf41179980b2bf1e90ab299a0561b5cfcca53edee34116003368a10bd6f
4
+ data.tar.gz: 46144762e5ac411df9fafb672908ab59446a9fba8b536831543a40b1ffc20253
5
5
  SHA512:
6
- metadata.gz: 91237f9bd27b4c62183a6e48039fc13dd916222e590cb0ab061f9e759669500a2ad38e04f59fd6b407015303f253a02c88a807a730d77f1b7f1d35ee0a87de5a
7
- data.tar.gz: 16e282e10ebb1abd7eca455706b1e74110e46a276c73d2e765b781f9e275f703c149c76f12c77d3c216e8429fa0d19c83038a9185e75bcefb3215dde2717b6c6
6
+ metadata.gz: ffbc3c30f0c7814efdb5b17d1f71b4e62cb47deeb7fac86a059b6f5bf21d2a8249bbfaaa402b06f0cd1839891f3565680f16d919d18fc74133b063b1c0581506
7
+ data.tar.gz: 16d91e7953acc50a1d7ce7c62b41189e893dc857636020acff91154fe2cf1f6f8374e4b535d86feeba34db09409a2447ccdf8d1d5ee80072fc4c88dd1801dfc4
data/README.md CHANGED
@@ -35,7 +35,7 @@ Next you'll find a `lane` with two steps: `gym()` that will build the iOS App an
35
35
  lane :applivery_ios do
36
36
  gym(
37
37
  scheme: "YOUR_APP_SCHEME", # Your App Scheme
38
- export_method: 'enterprise') # Choose between: enterprise or ad-hoc
38
+ export_method: 'enterprise') # Choose between: enterprise or ad-hoc`
39
39
  applivery(
40
40
  app_token: "YOUR_APP_TOKEN") # Your Applivery App Token
41
41
  end
@@ -48,7 +48,7 @@ Next you'll find a `lane` with two steps: `gradle()` that will build the Android
48
48
  lane :applivery_android do
49
49
  gradle(task: "assembleRelease")
50
50
  applivery(
51
- appToken: "YOUR_APP_TOKEN") # Your Applivery App Token
51
+ app_token: "YOUR_APP_TOKEN") # Your Applivery App Token
52
52
  end
53
53
  ```
54
54
 
@@ -61,11 +61,12 @@ The above examples are the most simple configuration you can have but you can ad
61
61
  |--------------------------|--------------------------------------|-----------|--------------|
62
62
  | `app_token` | Applivery App Token | YES | string -> Available in the App Settings |
63
63
  | `name` | Applivery Build name | NO | string-> i.e.: "RC 1.0" |
64
- | `notify_collaborators` | Notify Collaborators after deploy | NO | booletan -> i.e.: rue / false |
65
- | `notify_employees` | Notify Employees after deploy | NO | booletan -> i.e.: true / false |
64
+ | `notify_collaborators` | Notify Collaborators after deploy | NO | booletan -> i.e.: `true` / `false` |
65
+ | `notify_employees` | Notify Employees after deploy | NO | booletan -> i.e.: `true` / `false` |
66
66
  | `notify_message` | Notification message | NO | string -> i.e.: "Enjoy the new version!" |
67
67
  | `changelog` | Release notes | NO | string -> i.e.: "Bug fixing" |
68
- | `tags` | Tags to identify the build | NO | string -> comma separated. i.e.: "RC1, QA" |
68
+ | `tags` | Tags to identify the build | NO | string -> comma separated. i.e.: `"RC1, QA"` |
69
+ | `filter` | List of groups that will be notified | NO | string -> comma separated + special chars. i.e.: `"group1,group2\|group3"` = (grupo1 AND grupo2) OR (grupo3) |
69
70
  | `build_path` | Build path to the APK / IPA file | NO | string -> by default it takes the IPA/APK build path |
70
71
 
71
72
  ## Shared Value
@@ -13,7 +13,7 @@ module Fastlane
13
13
  build_path = params[:build_path]
14
14
  build = Faraday::UploadIO.new(build_path, 'application/octet-stream') if build_path && File.exist?(build_path)
15
15
 
16
- conn = Faraday.new(url: 'https://api.applivery.io') do |faraday|
16
+ conn = Faraday.new(url: 'https://upload.applivery.io') do |faraday|
17
17
  faraday.request :multipart
18
18
  faraday.request :url_encoded
19
19
  # faraday.response :logger
@@ -31,6 +31,7 @@ module Fastlane
31
31
  notifyCollaborators: params[:notify_collaborators],
32
32
  notifyEmployees: params[:notify_employees],
33
33
  notifyMessage: params[:notify_message],
34
+ filter: params[:filter],
34
35
  build: build,
35
36
  deployer: {
36
37
  name: "fastlane",
@@ -142,7 +143,12 @@ module Fastlane
142
143
  default_value: "New version uploaded!",
143
144
  optional: true,
144
145
  type: String),
145
-
146
+
147
+ FastlaneCore::ConfigItem.new(key: :filter,
148
+ env_name: "APPLIVERY_FILTER",
149
+ description: "List of groups that will be notified",
150
+ optional: true,
151
+ type: String),
146
152
  ]
147
153
  end
148
154
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Applivery
3
- VERSION = "2.2.1"
3
+ VERSION = "2.3.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-applivery
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Jimenez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-30 00:00:00.000000000 Z
11
+ date: 2024-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -125,8 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  - !ruby/object:Gem::Version
126
126
  version: '0'
127
127
  requirements: []
128
- rubyforge_project:
129
- rubygems_version: 2.6.12
128
+ rubygems_version: 3.0.3.1
130
129
  signing_key:
131
130
  specification_version: 4
132
131
  summary: Upload new build to Applivery