class Fastlane::Actions::RspecAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/ruby/actions/rspec.rb, line 20
def self.authors
  ["KrauseFx"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/ruby/actions/rspec.rb, line 16
def self.available_options
  []
end
description() click to toggle source

@!group Documentation

# File lib/fastlane/plugin/ruby/actions/rspec.rb, line 12
def self.description
  "Run tests using rspec"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/ruby/actions/rspec.rb, line 24
def self.is_supported?(platform)
  true
end
run(params) click to toggle source
# File lib/fastlane/plugin/ruby/actions/rspec.rb, line 4
def self.run(params)
  sh "bundle exec rspec"
end