class Terrestrial::Cli::Bootstrapper::Entry::EntryOccurence

Public Instance Methods

formatted_string() click to toggle source
# File lib/terrestrial/cli/bootstrapper.rb, line 167
def formatted_string
  if language == :swift
    VariableNormalizer.run(string, swift: true)
  else
    VariableNormalizer.run(string)
  end
end
identifier() click to toggle source
# File lib/terrestrial/cli/bootstrapper.rb, line 163
def identifier
  @identifier
end
identifier=(identifier) click to toggle source
# File lib/terrestrial/cli/bootstrapper.rb, line 159
def identifier=(identifier)
  @identifier = identifier
end
string() click to toggle source
# File lib/terrestrial/cli/bootstrapper.rb, line 155
def string
  @string
end
string=(string) click to toggle source

Used when separating out occurences for the editors again

# File lib/terrestrial/cli/bootstrapper.rb, line 151
def string=(string)
  @string = string
end