Sha256: d850d0b4bf934795579bbc54cc312c5e10075e316e6e8ecccbf82704dafeeda3
Contents?: true
Size: 376 Bytes
Versions: 9
Compression:
Stored size: 376 Bytes
Contents
# frozen_string_literal: true module GoNative module Commands module IOS class AddLanguage < Base desc 'Add language to the project' argument :language, required: true, desc: 'Language code you want to add to the project.' def call(language:, **) Plugins::IOS::AddLanguage.call(language) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems