Я хочу использовать REXML в Fastfile, но когда я включаю в Fastfile, не работает - PullRequest
0 голосов
/ 01 апреля 2019

Использование Rexml в Fastfile, но fastlane не может распознать include, поэтому я не могу включить модуль Rexml.

вот ошибка:

[!] Could not find action, lane or variable 'include'. Check out the documentation for more details: https://docs.fastlane.tools/actions

вот мой код в Fastfile

#!/usr/bin/ruby
require 'rexml/document'
include REXML

1 Ответ

0 голосов
/ 02 апреля 2019

используя:

require "rexml/document"
file = File.new( "movie.xml" )
xmldoc = REXML::Document.new file

вместо:

#!/usr/bin/ruby -w
require 'rexml/document' 

# include REXML
xmlfile = File.new("movie.xml")
xmldoc = rexml.Document.new(xmlfile)

решить мою проблему, но я до сих пор не знаю, почему fastlane не может распознать include.

...