fastlane-plugin-depman 0.1.0 → 0.1.1

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: 37ef603637b5c28cc4acda47ccca883f4ae1c6b125781e0adb450b9bd8134502
4
- data.tar.gz: ccc8250f2d3c24a64e492ebe2ebf220c905c248e30518ed7ff3dbce19c3dd8be
3
+ metadata.gz: '00870fd52765886f3725f852f0cce27fc79afa63c8549884e102784be54c5a8e'
4
+ data.tar.gz: f5d17a236332717698840d1fad41f64f7a9037b52ac9253ef7724eeb9a7a8936
5
5
  SHA512:
6
- metadata.gz: c6f464b2d60b66ab0f8772706e09af0a852fe6072cd70f1c03af98acb92545234983592f7a3b3c832f1f6cf00b5277899a4cc415004ad86ee24a54303e38d58b
7
- data.tar.gz: 603ab3550f2d35cdd1f1f71182a968d5af0f8f3e5e0c73cdda1f2d83837706c96787be89df63f12a6962da6b3c14ec2e85adf0a6390c4567b56cd0c33b4a1e4c
6
+ metadata.gz: deb299cbbc1cea16faa09d0b499b601d40a7ffa96e57e3bea781a49880b218ef7882656ae849f77d335e823fb6bdae54fb7f7222a4a87117b1fed6fa247ca9a0
7
+ data.tar.gz: c912bd3d72ee1040f786842982601745fcf081d72d1191e5d8f889dddbebf1ce17a796d7e500631dd5187c26614b0719b196c0184660746a5d8a7c392762e5ca
@@ -57,27 +57,27 @@ module Fastlane
57
57
  end),
58
58
  FastlaneCore::ConfigItem.new(key: :server_host,
59
59
  env_name: "FL_DEPMAN_SERVER_HOST",
60
- description: "",
60
+ description: "Depman server address",
61
61
  optional: true),
62
62
  FastlaneCore::ConfigItem.new(key: :auth_token,
63
63
  env_name: "FL_DEPMAN_AUTH_TOKEN",
64
- description: "",
64
+ description: "Project access token",
65
65
  optional: true,
66
66
  is_string: true,
67
67
  sensitive: true),
68
68
  FastlaneCore::ConfigItem.new(key: :project_name,
69
69
  env_name: "FL_DEPMAN_PROJECT_NAME",
70
- description: "",
70
+ description: "Project key",
71
71
  optional: true,
72
72
  is_string: true),
73
73
  FastlaneCore::ConfigItem.new(key: :project_version,
74
74
  env_name: "FL_DEPMAN_PROJECT_VERSION",
75
- description: "",
75
+ description: "Project version",
76
76
  optional: true,
77
77
  is_string: true),
78
78
  FastlaneCore::ConfigItem.new(key: :project_platform,
79
79
  env_name: "FL_DEPMAN_PROJECT_PLATFORM",
80
- description: "",
80
+ description: "One of: gradle, maven, cocoapods, npm",
81
81
  optional: true,
82
82
  is_string: true),
83
83
  ]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Depman
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-depman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Shapovalov