fastlane-plugin-xambuild 0.1.0 → 0.2.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: 18a4f8e425e83d36c9fd3e60595dbfd5afb4f7484a0619fc6090e9e81e2ba46f
4
- data.tar.gz: e583ba0a48ec4dab35b4e6eb785285df3f747a29f37efc99043fc87697c7e59f
3
+ metadata.gz: df9c6b9018f9579fd9524eacbac76c2d3a602aad873b3ecef3a1fc97cb66dc8c
4
+ data.tar.gz: b2df8c8e8f004bbae449d53b734f851e8fdffa0bbcb3dc80331750b452ae3f4e
5
5
  SHA512:
6
- metadata.gz: 7bab8bfeb938b565a3b5883d0b6aaaec7875c5a67d9895d0d75138d66287bc0ed66ce1b10dbc07502ae996f2a842f55e91e2db50d488212a0c4412ad0b89bb02
7
- data.tar.gz: 66b6d6cea8d09bf5a7bc251624afbf3dbae3ecf58531a2d0624b8169a98c54763ba6906542643a384b7384abc0c0e630ec988f05db37291e0a99a8bf0dfff496
6
+ metadata.gz: 1bbc3a005634bab1fa6d9d7b7cdaa2717473d9d0b02d9ee3e70d61c946407fd9268bb68f8847d513fbea2b71e71d9e6e5c64ebfaff38916ac1a632ee56bc3295
7
+ data.tar.gz: dc44591c5de4a57c48ad028a7590d4aaaa3af3f5d046e20db063973198a0cf9a3b83877742c9cfa97063a38cca0ceb294e3f73df50af3ccd311b7a360137adf2
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # xambuild plugin
1
+ # Xambuild Fastlane Plugin
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-xambuild)
4
4
 
@@ -20,7 +20,7 @@ platform :ios do
20
20
  xambuild(
21
21
  platform: "ios",
22
22
  build_configuration: "Release",
23
- plist_path: "./iOS/Info.plist"
23
+ plist_path: "iOS/Info.plist"
24
24
  )
25
25
  end
26
26
  end
@@ -29,9 +29,9 @@ platform :android do
29
29
  xambuild(
30
30
  platform: "android",
31
31
  build_configuration: "Release",
32
- keystore_path: "{PATH_TO_YOUR_KEYSTORE}",
33
- keystore_alias: "{ALIAS_OF_YOUR_KEYSTORE}",
34
- keystore_password: "{YOUR_KEYSTORE_PASSWORD}"
32
+ keystore_path: "my.keystore",
33
+ keystore_alias: "myalias",
34
+ keystore_password: ENV["MY_KEYSTORE_PASSWORD"]
35
35
  )
36
36
  end
37
37
  end
@@ -39,7 +39,7 @@ end
39
39
 
40
40
  ## About xambuild
41
41
 
42
- A fastlane component to make Xamarin builds super easy
42
+ Fastlane plugin to make Xamarin builds easy
43
43
 
44
44
  ## Issues and Feedback
45
45
 
@@ -1,3 +1,6 @@
1
+ require "fastlane/plugin/xambuild/helpers/options"
2
+ require "fastlane/plugin/xambuild/helpers/platform"
3
+
1
4
  module Fastlane
2
5
  module Actions
3
6
  class AppVersionAction < Action
@@ -46,7 +46,7 @@ module Fastlane
46
46
  end
47
47
 
48
48
  def self.description
49
- "Easily build and sign your app using `xambuild`"
49
+ "Easily build and sign your Xamarin iOS or Android app using `xambuild`"
50
50
  end
51
51
 
52
52
  def self.return_value
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Xambuild
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-xambuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Barnby
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-24 00:00:00.000000000 Z
11
+ date: 2020-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane
@@ -155,5 +155,5 @@ requirements: []
155
155
  rubygems_version: 3.1.4
156
156
  signing_key:
157
157
  specification_version: 4
158
- summary: A fastlane component to make Xamarin builds a breeze
158
+ summary: Fastlane plugin to make Xamarin builds easy
159
159
  test_files: []