从随机ruby脚本

时间:2017-07-27 18:32:45

标签: ruby fastlane

我的问题非常简单,如何直接从ruby脚本中调用一些Fastlane操作?如果可能的话,我想做下面的事情。

    require 'fastlane'
    class MyRunner
      def run
        Fastlane::Actions::GradleAction.run( {
                                         task: ":assemble",
                                         build_type: 'Release',
                                         properties: {
                                             'versionCode' => 1,
                                             'versionName' => '1.0.0'
                                         }
                                     })
      end
    end

我尝试使用Fastlane::Runner.new.execute("gradle"),但它没有用。

注意:我尝试在没有Fastfile的情况下运行它

0 个答案:

没有答案