├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── README.md ├── Rakefile ├── bin └── rubustrings ├── lib ├── rubustrings.rb └── rubustrings │ └── action.rb ├── rubustrings.gemspec ├── test ├── suites │ ├── Localizable_beginning_mismatch.in │ ├── Localizable_beginning_mismatch.out │ ├── Localizable_missing_semicolon.in │ ├── Localizable_missing_semicolon.out │ ├── Localizable_number_of_variables_mismatch.in │ ├── Localizable_number_of_variables_mismatch.out │ ├── Localizable_with_invalid_format_and_more_errors.in │ ├── Localizable_with_invalid_format_and_more_errors.out │ ├── Localizable_with_invalid_params.in │ ├── Localizable_with_invalid_params.out │ ├── Localizable_with_no_strings.in │ ├── Localizable_with_no_strings.out │ ├── Localizable_with_valid_params.in │ └── Localizable_with_valid_params.out └── test_rubustrings.rb ├── xcode_example.png └── xcode_setting.png /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/rubustrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/bin/rubustrings -------------------------------------------------------------------------------- /lib/rubustrings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/lib/rubustrings.rb -------------------------------------------------------------------------------- /lib/rubustrings/action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/lib/rubustrings/action.rb -------------------------------------------------------------------------------- /rubustrings.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/rubustrings.gemspec -------------------------------------------------------------------------------- /test/suites/Localizable_beginning_mismatch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_beginning_mismatch.in -------------------------------------------------------------------------------- /test/suites/Localizable_beginning_mismatch.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_beginning_mismatch.out -------------------------------------------------------------------------------- /test/suites/Localizable_missing_semicolon.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_missing_semicolon.in -------------------------------------------------------------------------------- /test/suites/Localizable_missing_semicolon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_missing_semicolon.out -------------------------------------------------------------------------------- /test/suites/Localizable_number_of_variables_mismatch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_number_of_variables_mismatch.in -------------------------------------------------------------------------------- /test/suites/Localizable_number_of_variables_mismatch.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_number_of_variables_mismatch.out -------------------------------------------------------------------------------- /test/suites/Localizable_with_invalid_format_and_more_errors.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_with_invalid_format_and_more_errors.in -------------------------------------------------------------------------------- /test/suites/Localizable_with_invalid_format_and_more_errors.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_with_invalid_format_and_more_errors.out -------------------------------------------------------------------------------- /test/suites/Localizable_with_invalid_params.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_with_invalid_params.in -------------------------------------------------------------------------------- /test/suites/Localizable_with_invalid_params.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_with_invalid_params.out -------------------------------------------------------------------------------- /test/suites/Localizable_with_no_strings.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/suites/Localizable_with_no_strings.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_with_no_strings.out -------------------------------------------------------------------------------- /test/suites/Localizable_with_valid_params.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_with_valid_params.in -------------------------------------------------------------------------------- /test/suites/Localizable_with_valid_params.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/suites/Localizable_with_valid_params.out -------------------------------------------------------------------------------- /test/test_rubustrings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/test/test_rubustrings.rb -------------------------------------------------------------------------------- /xcode_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/xcode_example.png -------------------------------------------------------------------------------- /xcode_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcordero/Rubustrings/HEAD/xcode_setting.png --------------------------------------------------------------------------------