fastlane-plugin-gs_deliver 0.2.7 → 0.2.8

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
  SHA1:
3
- metadata.gz: a82fdcb4cc77f28b3d42ec800dc4245481d42403
4
- data.tar.gz: 9f4d3d67a677a62b44b6b4356b30c61012f1f526
3
+ metadata.gz: aa5d4e0ac7ad56f6b65c3847357f9a1b3fd23a60
4
+ data.tar.gz: 1bc5d3c583a5bd023c9ccac0930f582505f0ad39
5
5
  SHA512:
6
- metadata.gz: f21e8b6a358ae949efec0f24a8ba99f097516a036dd6b1d8ae2697a49952820158533873528e64da4f15bfa1b63b65ca4da9f180e1d5c8f9682776f0f5f16c1f
7
- data.tar.gz: 3626d376f56deb29b0a2ac06d5531c00227324e2bd8f0ded73123a1615cd673acd4335495726bee1c5b0f7d04f76616eebfb7d5fa9d7c8c9786cae550e16a001
6
+ metadata.gz: d5cafc918b853a51924c86fbd95f2be5f7b370d44d4cca92af270fc070afa859e88b9b3cae4febc127ff7d063972ddcfe5ff248d0e7aad84daee5d92a18fee4e
7
+ data.tar.gz: 8d1a659031e3dfa61105f06c14f0b83fd5eb6f2d3ebd8173b070f9dc3829667ad69136fb20ccc7e5a2232ab41901c013983479de8e1b2bc1881ec567163f68f7
@@ -26,7 +26,7 @@ module Fastlane
26
26
  raise "Can't send command to server. :project, :displayVersionName, :cmd are required fields"
27
27
  end
28
28
 
29
- params = options.to_json
29
+ params = options.to_s.to_json
30
30
  cmnd = options[:cmd]
31
31
  response = ""
32
32
  if cmnd.include? "file"
@@ -118,4 +118,4 @@ module Fastlane
118
118
  end
119
119
  end
120
120
  end
121
- end
121
+ end
@@ -3,7 +3,7 @@ module Fastlane
3
3
  class GsGetReleaseNotesAction < Action
4
4
  def self.run(options)
5
5
  require 'json'
6
- params = options.to_json
6
+ params = options.to_s.to_json
7
7
  response = `curl -k -H "Content-Type: application/json" -d '#{params}' https://mobile.geo4.io/bot/releaseBuilder/cmd`
8
8
  FileHelper.write(Dir.pwd + "/../../notes/" + options[:project] + "/" +
9
9
  options[:displayVersionName] + "_" + options[:lang] + ".txt", response)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GsDeliver
3
- VERSION = "0.2.7"
3
+ VERSION = "0.2.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-gs_deliver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Сергей Веселовский"