Sha256: 4e8cb3e7989fd4334485dc1da99dd2f8133c60c1ffec871400acc69471d93093
Contents?: true
Size: 881 Bytes
Versions: 3
Compression:
Stored size: 881 Bytes
Contents
require "fastlane" module Xcake module Actions module SharedValues XCAKE_CUSTOM_VALUE = :XCAKE_CUSTOM_VALUE end class XcakeAction < Fastlane::Action def self.run(params) Fastlane::Actions.sh("xcake") end ##################################################### # @!group Documentation ##################################################### def self.description "Create xcode projects easily with Xcake" end def self.details "Runs xcake to generate xcode project's easily" end def self.available_options [] end def self.output [] end def self.return_value end def self.authors ["@jcampbell_05"] end def self.is_supported?(platform) [:ios, :mac].include?(platform) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
xcake-0.1.7 | lib/xcake/fastlane/xcake.rb |
xcake-0.1.6 | lib/xcake/fastlane/xcake.rb |
xcake-0.1.5 | lib/xcake/fastlane/xcake.rb |