Sha256: 54ed6b5a71552a98da520b07068f6c407ab92f7fe2b2534d9d35678da796077b

Contents?: true

Size: 431 Bytes

Versions: 5

Compression:

Stored size: 431 Bytes

Contents

require_relative 'command_base'
require_relative '../repository'
require_relative '../splitter'

class I18nFlow::CLI
  class SplitCommand < CommandBase
    def invoke!
      exit_with_message(1, 'not implemented')
    end

  private

    def repository
      @repository ||= I18nFlow::Repository.new(
        base_path:     I18nFlow.config.base_path,
        glob_patterns: I18nFlow.config.glob_patterns,
      )
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
i18n_flow-0.2.3 lib/i18n_flow/cli/split_command.rb
i18n_flow-0.2.2 lib/i18n_flow/cli/split_command.rb
i18n_flow-0.2.1 lib/i18n_flow/cli/split_command.rb
i18n_flow-0.2.0 lib/i18n_flow/cli/split_command.rb
i18n_flow-0.1.0 lib/i18n_flow/cli/split_command.rb