Sha256: 9b03f7977cabd6fc42efd7c94240cc066772bcd4f35c402770fb1702d1b1dd08

Contents?: true

Size: 518 Bytes

Versions: 1

Compression:

Stored size: 518 Bytes

Contents

# encoding: UTF-8

module Rosette
  module Queuing
    module Commits

      # Provides a set of constants that specify how to determine the set of
      # phrases to push to a translation management system (TMS).
      class PhraseStorageGranularity
        # Push only the phrases that were added or changed in single commits.
        COMMIT = 'COMMIT'

        # Push all the phrases contained by each git branch, regardless of the
        # order of commits.
        BRANCH = 'BRANCH'
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rosette-core-1.0.1 lib/rosette/queuing/commits/phrase_storage_granularity.rb