Sha256: 071fcb985d3ba2daac8d9ff148830e0d4c5a8cfc4bbc6e799af7e2b209ad6694
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
require 'i18n/tasks/command/options/enum_opt' require 'i18n/tasks/command/options/list_opt' module I18n::Tasks module Command module Options module Common extend Command::DSL include Options::EnumOpt include Options::ListOpt VALID_LOCALE_RE = /\A\w[\w\-_\.]*\z/i cmd_opt :nostdin, { short: :S, long: :nostdin, desc: I18n.t('i18n_tasks.cmd.args.desc.nostdin'), conf: {default: false} } cmd_opt :confirm, { short: :y, long: :confirm, desc: I18n.t('i18n_tasks.cmd.args.desc.confirm'), conf: {default: false} } cmd_opt :pattern, { short: :p, long: :pattern=, desc: I18n.t('i18n_tasks.cmd.args.desc.key_pattern'), conf: {argument: true, optional: false} } cmd_opt :value, { short: :v, long: :value=, desc: I18n.t('i18n_tasks.cmd.args.desc.value'), conf: {argument: true, optional: false} } def opt_or_arg!(key, opt) opt[key] ||= opt[:arguments].try(:shift) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
i18n-tasks-0.7.1 | lib/i18n/tasks/command/options/common.rb |
i18n-tasks-0.7.0 | lib/i18n/tasks/command/options/common.rb |