Sha256: 8e52c7ca1755d38ab42050aa995932b577729971fbceb8d712e0736b960d6c83

Contents?: true

Size: 328 Bytes

Versions: 7

Compression:

Stored size: 328 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)
        [:ios, :mac].include?platform
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fastlane-1.3.2 lib/fastlane/actions/install_cocapods.rb
fastlane-1.3.1 lib/fastlane/actions/install_cocapods.rb
fastlane-1.3.0 lib/fastlane/actions/install_cocapods.rb
fastlane-1.2.3 lib/fastlane/actions/install_cocapods.rb
fastlane-1.2.2 lib/fastlane/actions/install_cocapods.rb
fastlane-1.2.1 lib/fastlane/actions/install_cocapods.rb
fastlane-1.2.0 lib/fastlane/actions/install_cocapods.rb