Sha256: 846628463feeb4c0cf7108c33aa53d4cbe63345087f5b872752ca23d6b63b877

Contents?: true

Size: 315 Bytes

Versions: 11

Compression:

Stored size: 315 Bytes

Contents

module Fastlane
  module Actions
    class CocoapodsAction < Action
      def self.run(params)
        Actions.sh('pod install')
      end

      def self.description
        "Runs `pod install` for the project"
      end

      def self.is_supported?(platform)
        platform == :ios
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fastlane-1.1.0 lib/fastlane/actions/install_cocapods.rb
fastlane-1.0.2 lib/fastlane/actions/install_cocapods.rb
fastlane-1.0.1 lib/fastlane/actions/install_cocapods.rb
fastlane-1.0.0 lib/fastlane/actions/install_cocapods.rb
fastlane-0.13.0 lib/fastlane/actions/install_cocapods.rb
fastlane-0.12.5 lib/fastlane/actions/install_cocapods.rb
fastlane-0.12.4 lib/fastlane/actions/install_cocapods.rb
fastlane-0.12.3 lib/fastlane/actions/install_cocapods.rb
fastlane-0.12.2 lib/fastlane/actions/install_cocapods.rb
fastlane-0.12.1 lib/fastlane/actions/install_cocapods.rb
fastlane-0.12.0 lib/fastlane/actions/install_cocapods.rb