fastlane-plugin-stream_actions 0.1.1 → 0.1.2

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: 24de8c23f06a9cbda0b9eef312b28303c1e6ef6b0d1cb5b72cdf5eaaee03b582
4
+ data.tar.gz: ba45fc47a3248fb3b780826e3d2200c3dd24ec8b89ebd4978acffc35dd0e56cf
5
5
  SHA512:
6
- metadata.gz: 4e56722b269ec5d8b3507d391a662ba15737789d221b30c4848dad642cc019851893676d8e8b027b43e35b353129166be14e3ec94a729844abf63336b238b699
7
- data.tar.gz: 584effd580b5fc8f0b3a795e107c3001b0f9b7b02ea87cff31fc30de33412135e75456b32b27cff24f1dd31172dd9dd7d792c42aea55c7288df84a5b5952dd00
6
+ metadata.gz: af79d87f7796eb3ba55fb9f9451885dfbd6fd0b3dab27bd96fa4542b10a27dcedf69e032e13fdc26a1b6ae4b37d550f6ebc953c6e845e2fcc93825ec2467cfe3
7
+ data.tar.gz: f3884039a480f3516b0fd443726d0f5780bfdc4a8d221429d4290f7fde5f617994e2d25cb4d564c9933102f8408c9b90b932d75a2b1d0f0adea6e3ac2ef1270c
@@ -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,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Actions
3
- class ReadChangelog < Action
3
+ class ReadChangelogAction < Action
4
4
  def self.run(params)
5
5
  UI.user_error!('You need to pass the version of the release you want to obtain the changelog from') unless options[:version]
6
6
 
@@ -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.2"
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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream