fastlane-plugin-stream_actions 0.1.1 → 0.1.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: b371315771d583d26a5f3f02f3351bff63f478df1ec13ceed722acbd01088d31
4
- data.tar.gz: ab066f89eb0ddd79ad02fed2ec92c1e712ae99d69074055f8a8e16927994ec58
3
+ metadata.gz: fe523cad661bd0be5c6f5b6506c5d53bb9cc529c2ba9358d528178d1cb549d62
4
+ data.tar.gz: 58455c34dfd514cc81606d0441a3c3a06b7812355efe9f280fa48a7cf6305e09
5
5
  SHA512:
6
- metadata.gz: 4e56722b269ec5d8b3507d391a662ba15737789d221b30c4848dad642cc019851893676d8e8b027b43e35b353129166be14e3ec94a729844abf63336b238b699
7
- data.tar.gz: 584effd580b5fc8f0b3a795e107c3001b0f9b7b02ea87cff31fc30de33412135e75456b32b27cff24f1dd31172dd9dd7d792c42aea55c7288df84a5b5952dd00
6
+ metadata.gz: 48e46569e075b8bfa1976b0735395b4701982628cd14c9c60e44936fd6e81f4d34de5a98c8e3f62f0389a0598bfd497eb38767e1b906a64d874d745836789f2b
7
+ data.tar.gz: f805c1e49334611b7df03ad457e771f61a45c5500e98109f98c5fb419a85764c6797c6bcd3aeaaf5c33546eb8be74943404259309f5984561e7a20624db6ef24
@@ -2,7 +2,7 @@ module Fastlane
2
2
  module Actions
3
3
  require 'fastlane/actions/xcodebuild'
4
4
 
5
- class IsCheckRequired < Action
5
+ class IsCheckRequiredAction < Action
6
6
  def self.run(params)
7
7
  return true if ENV['GITHUB_EVENT_NAME'] != 'pull_request'
8
8
 
@@ -2,7 +2,7 @@ module Fastlane
2
2
  module Actions
3
3
  require 'fastlane/actions/xcodebuild'
4
4
 
5
- class PodPushSafely < Action
5
+ class PodPushSafelyAction < Action
6
6
  def self.run(params)
7
7
  pod_push_safely(params)
8
8
  end
@@ -1,10 +1,10 @@
1
1
  module Fastlane
2
2
  module Actions
3
- class ReadChangelog < Action
3
+ class ReadChangelogAction < Action
4
4
  def self.run(params)
5
- UI.user_error!('You need to pass the version of the release you want to obtain the changelog from') unless options[:version]
5
+ UI.user_error!('You need to pass the version of the release you want to obtain the changelog from') unless params[:version]
6
6
 
7
- UI.message("Getting changelog for #{options[:version]}")
7
+ UI.message("Getting changelog for #{params[:version]}")
8
8
  reading_changelog = false
9
9
  changes = ''
10
10
  changelog_lines = File.readlines('../CHANGELOG.md')
@@ -16,11 +16,11 @@ module Fastlane
16
16
  changes << line
17
17
  end
18
18
 
19
- reading_changelog = true if line.start_with?("#{start_token}#{options[:version]}")
19
+ reading_changelog = true if line.start_with?("#{start_token}#{params[:version]}")
20
20
  end
21
21
 
22
- UI.user_error!("No changelog found for #{options[:version]}") unless changes.length > 0
23
- UI.success("Changelog for #{options[:version]}: \n#{changes}")
22
+ UI.user_error!("No changelog found for #{params[:version]}") unless changes.length > 0
23
+ UI.success("Changelog for #{params[:version]}: \n#{changes}")
24
24
  changes
25
25
  end
26
26
 
@@ -1,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Actions
3
- class UpdateTestplan < Action
3
+ class UpdateTestplanAction < Action
4
4
  def self.run(params)
5
5
  data_hash = JSON.parse(File.read(params[:path]))
6
6
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream