├── .bundle └── config ├── .gitignore ├── .travis.yml ├── Carte.podspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── Rakefile ├── Sources └── Carte │ ├── Carte.swift │ ├── CarteItem.swift │ ├── CarteViewController.swift │ ├── bundler │ └── setup.rb │ ├── carte.rb │ └── ruby │ ├── 2.3.0 │ ├── bin │ │ └── xcodeproj │ ├── cache │ │ ├── CFPropertyList-2.3.5.gem │ │ ├── CFPropertyList-3.0.0.gem │ │ ├── atomos-0.1.3.gem │ │ ├── claide-1.0.2.gem │ │ ├── colored2-3.1.2.gem │ │ ├── nanaimo-0.2.3.gem │ │ ├── nanaimo-0.2.6.gem │ │ ├── xcodeproj-1.5.2.gem │ │ └── xcodeproj-1.8.2.gem │ ├── gems │ │ ├── CFPropertyList-2.3.5 │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── THANKS │ │ │ └── lib │ │ │ │ ├── cfpropertylist.rb │ │ │ │ └── cfpropertylist │ │ │ │ ├── rbBinaryCFPropertyList.rb │ │ │ │ ├── rbCFPlistError.rb │ │ │ │ ├── rbCFPropertyList.rb │ │ │ │ ├── rbCFTypes.rb │ │ │ │ ├── rbLibXMLParser.rb │ │ │ │ ├── rbNokogiriParser.rb │ │ │ │ ├── rbPlainCFPropertyList.rb │ │ │ │ └── rbREXMLParser.rb │ │ ├── CFPropertyList-3.0.0 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README.rdoc │ │ │ ├── THANKS │ │ │ └── lib │ │ │ │ ├── cfpropertylist.rb │ │ │ │ └── cfpropertylist │ │ │ │ ├── rbBinaryCFPropertyList.rb │ │ │ │ ├── rbCFPlistError.rb │ │ │ │ ├── rbCFPropertyList.rb │ │ │ │ ├── rbCFTypes.rb │ │ │ │ ├── rbLibXMLParser.rb │ │ │ │ ├── rbNokogiriParser.rb │ │ │ │ ├── rbPlainCFPropertyList.rb │ │ │ │ └── rbREXMLParser.rb │ │ ├── atomos-0.1.3 │ │ │ ├── .gitignore │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .rubocop_todo.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── VERSION │ │ │ ├── atomos.gemspec │ │ │ ├── bin │ │ │ │ ├── console │ │ │ │ ├── rake │ │ │ │ ├── rspec │ │ │ │ ├── rubocop │ │ │ │ └── setup │ │ │ └── lib │ │ │ │ ├── atomos.rb │ │ │ │ └── atomos │ │ │ │ └── version.rb │ │ ├── claide-1.0.2 │ │ │ ├── .gitignore │ │ │ ├── .kick │ │ │ ├── .rubocop.yml │ │ │ ├── .rubocop_cocoapods.yml │ │ │ ├── .rubocop_todo.yml │ │ │ ├── .travis.yml │ │ │ ├── .yardopts │ │ │ ├── CHANGELOG.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── Rakefile │ │ │ ├── claide.gemspec │ │ │ └── lib │ │ │ │ ├── claide.rb │ │ │ │ └── claide │ │ │ │ ├── ansi.rb │ │ │ │ ├── ansi │ │ │ │ ├── cursor.rb │ │ │ │ ├── graphics.rb │ │ │ │ └── string_escaper.rb │ │ │ │ ├── argument.rb │ │ │ │ ├── argv.rb │ │ │ │ ├── command.rb │ │ │ │ ├── command │ │ │ │ ├── argument_suggester.rb │ │ │ │ ├── banner.rb │ │ │ │ └── plugin_manager.rb │ │ │ │ ├── help.rb │ │ │ │ └── informative_error.rb │ │ ├── colored2-3.1.2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── lib │ │ │ │ ├── colored2.rb │ │ │ │ └── colored2 │ │ │ │ │ ├── ascii_decorator.rb │ │ │ │ │ ├── codes.rb │ │ │ │ │ ├── numbers.rb │ │ │ │ │ ├── object.rb │ │ │ │ │ ├── strings.rb │ │ │ │ │ └── version.rb │ │ │ └── spec │ │ │ │ ├── colored2 │ │ │ │ ├── numbers_spec.rb │ │ │ │ ├── object_spec.rb │ │ │ │ └── strings_spec.rb │ │ │ │ ├── colored2_spec.rb │ │ │ │ └── spec_helper.rb │ │ ├── nanaimo-0.2.3 │ │ │ ├── .gitignore │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .rubocop_todo.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── bin │ │ │ │ ├── console │ │ │ │ └── setup │ │ │ ├── lib │ │ │ │ ├── nanaimo.rb │ │ │ │ └── nanaimo │ │ │ │ │ ├── object.rb │ │ │ │ │ ├── plist.rb │ │ │ │ │ ├── reader.rb │ │ │ │ │ ├── unicode.rb │ │ │ │ │ ├── unicode │ │ │ │ │ ├── next_step_mapping.rb │ │ │ │ │ └── quote_maps.rb │ │ │ │ │ ├── version.rb │ │ │ │ │ ├── writer.rb │ │ │ │ │ └── writer │ │ │ │ │ ├── pbxproj.rb │ │ │ │ │ └── xml.rb │ │ │ └── nanaimo.gemspec │ │ ├── nanaimo-0.2.6 │ │ │ ├── .gitignore │ │ │ ├── .rspec │ │ │ ├── .rubocop.yml │ │ │ ├── .rubocop_todo.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── bin │ │ │ │ ├── console │ │ │ │ └── setup │ │ │ ├── lib │ │ │ │ ├── nanaimo.rb │ │ │ │ └── nanaimo │ │ │ │ │ ├── object.rb │ │ │ │ │ ├── plist.rb │ │ │ │ │ ├── reader.rb │ │ │ │ │ ├── unicode.rb │ │ │ │ │ ├── unicode │ │ │ │ │ ├── next_step_mapping.rb │ │ │ │ │ └── quote_maps.rb │ │ │ │ │ ├── version.rb │ │ │ │ │ ├── writer.rb │ │ │ │ │ └── writer │ │ │ │ │ ├── pbxproj.rb │ │ │ │ │ └── xml.rb │ │ │ └── nanaimo.gemspec │ │ ├── xcodeproj-1.5.2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── xcodeproj │ │ │ └── lib │ │ │ │ ├── xcodeproj.rb │ │ │ │ └── xcodeproj │ │ │ │ ├── command.rb │ │ │ │ ├── command │ │ │ │ ├── config_dump.rb │ │ │ │ ├── project_diff.rb │ │ │ │ ├── show.rb │ │ │ │ ├── sort.rb │ │ │ │ └── target_diff.rb │ │ │ │ ├── config.rb │ │ │ │ ├── config │ │ │ │ └── other_linker_flags_parser.rb │ │ │ │ ├── constants.rb │ │ │ │ ├── differ.rb │ │ │ │ ├── gem_version.rb │ │ │ │ ├── helper.rb │ │ │ │ ├── plist.rb │ │ │ │ ├── project.rb │ │ │ │ ├── project │ │ │ │ ├── case_converter.rb │ │ │ │ ├── object.rb │ │ │ │ ├── object │ │ │ │ │ ├── build_configuration.rb │ │ │ │ │ ├── build_file.rb │ │ │ │ │ ├── build_phase.rb │ │ │ │ │ ├── build_rule.rb │ │ │ │ │ ├── configuration_list.rb │ │ │ │ │ ├── container_item_proxy.rb │ │ │ │ │ ├── file_reference.rb │ │ │ │ │ ├── group.rb │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── file_references_factory.rb │ │ │ │ │ │ └── groupable_helper.rb │ │ │ │ │ ├── native_target.rb │ │ │ │ │ ├── reference_proxy.rb │ │ │ │ │ ├── root_object.rb │ │ │ │ │ └── target_dependency.rb │ │ │ │ ├── object_attributes.rb │ │ │ │ ├── object_dictionary.rb │ │ │ │ ├── object_list.rb │ │ │ │ ├── project_helper.rb │ │ │ │ └── uuid_generator.rb │ │ │ │ ├── scheme.rb │ │ │ │ ├── scheme │ │ │ │ ├── abstract_scheme_action.rb │ │ │ │ ├── analyze_action.rb │ │ │ │ ├── archive_action.rb │ │ │ │ ├── build_action.rb │ │ │ │ ├── buildable_product_runnable.rb │ │ │ │ ├── buildable_reference.rb │ │ │ │ ├── command_line_arguments.rb │ │ │ │ ├── environment_variables.rb │ │ │ │ ├── launch_action.rb │ │ │ │ ├── macro_expansion.rb │ │ │ │ ├── profile_action.rb │ │ │ │ ├── test_action.rb │ │ │ │ └── xml_element_wrapper.rb │ │ │ │ ├── user_interface.rb │ │ │ │ ├── workspace.rb │ │ │ │ ├── workspace │ │ │ │ ├── file_reference.rb │ │ │ │ └── group_reference.rb │ │ │ │ └── xcodebuild_helper.rb │ │ └── xcodeproj-1.8.2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ └── xcodeproj │ │ │ └── lib │ │ │ ├── xcodeproj.rb │ │ │ └── xcodeproj │ │ │ ├── command.rb │ │ │ ├── command │ │ │ ├── config_dump.rb │ │ │ ├── project_diff.rb │ │ │ ├── show.rb │ │ │ ├── sort.rb │ │ │ └── target_diff.rb │ │ │ ├── config.rb │ │ │ ├── config │ │ │ └── other_linker_flags_parser.rb │ │ │ ├── constants.rb │ │ │ ├── differ.rb │ │ │ ├── gem_version.rb │ │ │ ├── helper.rb │ │ │ ├── plist.rb │ │ │ ├── project.rb │ │ │ ├── project │ │ │ ├── case_converter.rb │ │ │ ├── object.rb │ │ │ ├── object │ │ │ │ ├── build_configuration.rb │ │ │ │ ├── build_file.rb │ │ │ │ ├── build_phase.rb │ │ │ │ ├── build_rule.rb │ │ │ │ ├── configuration_list.rb │ │ │ │ ├── container_item_proxy.rb │ │ │ │ ├── file_reference.rb │ │ │ │ ├── group.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── build_settings_array_settings_by_object_version.rb │ │ │ │ │ ├── file_references_factory.rb │ │ │ │ │ └── groupable_helper.rb │ │ │ │ ├── native_target.rb │ │ │ │ ├── reference_proxy.rb │ │ │ │ ├── root_object.rb │ │ │ │ └── target_dependency.rb │ │ │ ├── object_attributes.rb │ │ │ ├── object_dictionary.rb │ │ │ ├── object_list.rb │ │ │ ├── project_helper.rb │ │ │ └── uuid_generator.rb │ │ │ ├── scheme.rb │ │ │ ├── scheme │ │ │ ├── abstract_scheme_action.rb │ │ │ ├── analyze_action.rb │ │ │ ├── archive_action.rb │ │ │ ├── build_action.rb │ │ │ ├── buildable_product_runnable.rb │ │ │ ├── buildable_reference.rb │ │ │ ├── command_line_arguments.rb │ │ │ ├── environment_variables.rb │ │ │ ├── launch_action.rb │ │ │ ├── macro_expansion.rb │ │ │ ├── profile_action.rb │ │ │ ├── remote_runnable.rb │ │ │ ├── test_action.rb │ │ │ └── xml_element_wrapper.rb │ │ │ ├── user_interface.rb │ │ │ ├── workspace.rb │ │ │ ├── workspace │ │ │ ├── file_reference.rb │ │ │ ├── group_reference.rb │ │ │ └── reference.rb │ │ │ └── xcodebuild_helper.rb │ └── specifications │ │ ├── CFPropertyList-2.3.5.gemspec │ │ ├── CFPropertyList-3.0.0.gemspec │ │ ├── atomos-0.1.3.gemspec │ │ ├── claide-1.0.2.gemspec │ │ ├── colored2-3.1.2.gemspec │ │ ├── nanaimo-0.2.3.gemspec │ │ ├── nanaimo-0.2.6.gemspec │ │ ├── xcodeproj-1.5.2.gemspec │ │ └── xcodeproj-1.8.2.gemspec │ └── 2.6.0 │ ├── bin │ └── xcodeproj │ ├── cache │ ├── CFPropertyList-3.0.0.gem │ ├── atomos-0.1.3.gem │ ├── claide-1.0.2.gem │ ├── colored2-3.1.2.gem │ ├── nanaimo-0.2.6.gem │ └── xcodeproj-1.8.2.gem │ ├── gems │ ├── CFPropertyList-3.0.0 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.rdoc │ │ ├── THANKS │ │ └── lib │ │ │ ├── cfpropertylist.rb │ │ │ └── cfpropertylist │ │ │ ├── rbBinaryCFPropertyList.rb │ │ │ ├── rbCFPlistError.rb │ │ │ ├── rbCFPropertyList.rb │ │ │ ├── rbCFTypes.rb │ │ │ ├── rbLibXMLParser.rb │ │ │ ├── rbNokogiriParser.rb │ │ │ ├── rbPlainCFPropertyList.rb │ │ │ └── rbREXMLParser.rb │ ├── atomos-0.1.3 │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .rubocop.yml │ │ ├── .rubocop_todo.yml │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Rakefile │ │ ├── VERSION │ │ ├── atomos.gemspec │ │ ├── bin │ │ │ ├── console │ │ │ ├── rake │ │ │ ├── rspec │ │ │ ├── rubocop │ │ │ └── setup │ │ └── lib │ │ │ ├── atomos.rb │ │ │ └── atomos │ │ │ └── version.rb │ ├── claide-1.0.2 │ │ ├── .gitignore │ │ ├── .kick │ │ ├── .rubocop.yml │ │ ├── .rubocop_cocoapods.yml │ │ ├── .rubocop_todo.yml │ │ ├── .travis.yml │ │ ├── .yardopts │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── claide.gemspec │ │ └── lib │ │ │ ├── claide.rb │ │ │ └── claide │ │ │ ├── ansi.rb │ │ │ ├── ansi │ │ │ ├── cursor.rb │ │ │ ├── graphics.rb │ │ │ └── string_escaper.rb │ │ │ ├── argument.rb │ │ │ ├── argv.rb │ │ │ ├── command.rb │ │ │ ├── command │ │ │ ├── argument_suggester.rb │ │ │ ├── banner.rb │ │ │ └── plugin_manager.rb │ │ │ ├── help.rb │ │ │ └── informative_error.rb │ ├── colored2-3.1.2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ ├── colored2.rb │ │ │ └── colored2 │ │ │ │ ├── ascii_decorator.rb │ │ │ │ ├── codes.rb │ │ │ │ ├── numbers.rb │ │ │ │ ├── object.rb │ │ │ │ ├── strings.rb │ │ │ │ └── version.rb │ │ └── spec │ │ │ ├── colored2 │ │ │ ├── numbers_spec.rb │ │ │ ├── object_spec.rb │ │ │ └── strings_spec.rb │ │ │ ├── colored2_spec.rb │ │ │ └── spec_helper.rb │ ├── nanaimo-0.2.6 │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .rubocop.yml │ │ ├── .rubocop_todo.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Rakefile │ │ ├── bin │ │ │ ├── console │ │ │ └── setup │ │ ├── lib │ │ │ ├── nanaimo.rb │ │ │ └── nanaimo │ │ │ │ ├── object.rb │ │ │ │ ├── plist.rb │ │ │ │ ├── reader.rb │ │ │ │ ├── unicode.rb │ │ │ │ ├── unicode │ │ │ │ ├── next_step_mapping.rb │ │ │ │ └── quote_maps.rb │ │ │ │ ├── version.rb │ │ │ │ ├── writer.rb │ │ │ │ └── writer │ │ │ │ ├── pbxproj.rb │ │ │ │ └── xml.rb │ │ └── nanaimo.gemspec │ └── xcodeproj-1.8.2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── xcodeproj │ │ └── lib │ │ ├── xcodeproj.rb │ │ └── xcodeproj │ │ ├── command.rb │ │ ├── command │ │ ├── config_dump.rb │ │ ├── project_diff.rb │ │ ├── show.rb │ │ ├── sort.rb │ │ └── target_diff.rb │ │ ├── config.rb │ │ ├── config │ │ └── other_linker_flags_parser.rb │ │ ├── constants.rb │ │ ├── differ.rb │ │ ├── gem_version.rb │ │ ├── helper.rb │ │ ├── plist.rb │ │ ├── project.rb │ │ ├── project │ │ ├── case_converter.rb │ │ ├── object.rb │ │ ├── object │ │ │ ├── build_configuration.rb │ │ │ ├── build_file.rb │ │ │ ├── build_phase.rb │ │ │ ├── build_rule.rb │ │ │ ├── configuration_list.rb │ │ │ ├── container_item_proxy.rb │ │ │ ├── file_reference.rb │ │ │ ├── group.rb │ │ │ ├── helpers │ │ │ │ ├── build_settings_array_settings_by_object_version.rb │ │ │ │ ├── file_references_factory.rb │ │ │ │ └── groupable_helper.rb │ │ │ ├── native_target.rb │ │ │ ├── reference_proxy.rb │ │ │ ├── root_object.rb │ │ │ └── target_dependency.rb │ │ ├── object_attributes.rb │ │ ├── object_dictionary.rb │ │ ├── object_list.rb │ │ ├── project_helper.rb │ │ └── uuid_generator.rb │ │ ├── scheme.rb │ │ ├── scheme │ │ ├── abstract_scheme_action.rb │ │ ├── analyze_action.rb │ │ ├── archive_action.rb │ │ ├── build_action.rb │ │ ├── buildable_product_runnable.rb │ │ ├── buildable_reference.rb │ │ ├── command_line_arguments.rb │ │ ├── environment_variables.rb │ │ ├── launch_action.rb │ │ ├── macro_expansion.rb │ │ ├── profile_action.rb │ │ ├── remote_runnable.rb │ │ ├── test_action.rb │ │ └── xml_element_wrapper.rb │ │ ├── user_interface.rb │ │ ├── workspace.rb │ │ ├── workspace │ │ ├── file_reference.rb │ │ ├── group_reference.rb │ │ └── reference.rb │ │ └── xcodebuild_helper.rb │ └── specifications │ ├── CFPropertyList-3.0.0.gemspec │ ├── atomos-0.1.3.gemspec │ ├── claide-1.0.2.gemspec │ ├── colored2-3.1.2.gemspec │ ├── nanaimo-0.2.6.gemspec │ └── xcodeproj-1.8.2.gemspec ├── Tests └── CarteTests │ ├── CarteTests.swift │ ├── Fixtures │ └── CarteFixtureApp.zip │ └── test_carte.rb └── codecov.yml /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/.bundle/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/.travis.yml -------------------------------------------------------------------------------- /Carte.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Carte.podspec -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/Carte.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/Carte.swift -------------------------------------------------------------------------------- /Sources/Carte/CarteItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/CarteItem.swift -------------------------------------------------------------------------------- /Sources/Carte/CarteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/CarteViewController.swift -------------------------------------------------------------------------------- /Sources/Carte/bundler/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/bundler/setup.rb -------------------------------------------------------------------------------- /Sources/Carte/carte.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/carte.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/bin/xcodeproj -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/CFPropertyList-2.3.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/CFPropertyList-2.3.5.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/CFPropertyList-3.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/CFPropertyList-3.0.0.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/atomos-0.1.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/atomos-0.1.3.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/claide-1.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/claide-1.0.2.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/colored2-3.1.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/colored2-3.1.2.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/nanaimo-0.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/nanaimo-0.2.3.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/nanaimo-0.2.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/nanaimo-0.2.6.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/xcodeproj-1.5.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/xcodeproj-1.5.2.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/cache/xcodeproj-1.8.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/cache/xcodeproj-1.8.2.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/README -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/THANKS -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbBinaryCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbBinaryCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbCFPlistError.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbCFPlistError.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbCFTypes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbCFTypes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbLibXMLParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbLibXMLParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbNokogiriParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbNokogiriParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbPlainCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbPlainCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbREXMLParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-2.3.5/lib/cfpropertylist/rbREXMLParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/README.rdoc -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/THANKS -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbBinaryCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbBinaryCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPlistError.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPlistError.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFTypes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFTypes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbLibXMLParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbLibXMLParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbNokogiriParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbNokogiriParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbPlainCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbPlainCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbREXMLParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbREXMLParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.gitignore -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: .rubocop_todo.yml 2 | 3 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.rubocop_todo.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/.travis.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/Gemfile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/Gemfile.lock -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/LICENSE.txt -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.3 2 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/atomos.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/atomos.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/console -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/rake -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/rspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/rubocop -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/bin/setup -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/lib/atomos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/lib/atomos.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/lib/atomos/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/atomos-0.1.3/lib/atomos/version.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.gitignore -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.kick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.kick -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.rubocop.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.rubocop_cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.rubocop_cocoapods.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.rubocop_todo.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.travis.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/.yardopts -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/CHANGELOG.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/Gemfile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/Gemfile.lock -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/README.markdown -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/claide.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/claide.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi/cursor.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi/graphics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi/graphics.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi/string_escaper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/ansi/string_escaper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/argument.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/argument.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/argv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/argv.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command/argument_suggester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command/argument_suggester.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command/banner.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command/plugin_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/command/plugin_manager.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/help.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/informative_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/claide-1.0.2/lib/claide/informative_error.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/ascii_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/ascii_decorator.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/codes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/numbers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/numbers.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/strings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/strings.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/lib/colored2/version.rb: -------------------------------------------------------------------------------- 1 | module Colored2 2 | VERSION = '3.1.2' 3 | end 4 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2/numbers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2/numbers_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2/object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2/object_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2/strings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2/strings_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/colored2_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/colored2-3.1.2/spec/spec_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.gitignore -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.rubocop.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.rubocop_todo.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/.travis.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/CHANGELOG.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/Gemfile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/Gemfile.lock -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/LICENSE.txt -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/bin/console -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/bin/setup -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/plist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/reader.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/unicode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/unicode.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/unicode/next_step_mapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/unicode/next_step_mapping.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/unicode/quote_maps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/unicode/quote_maps.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/version.rb: -------------------------------------------------------------------------------- 1 | module Nanaimo 2 | VERSION = '0.2.3'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/writer.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/writer/pbxproj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/writer/pbxproj.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/writer/xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/lib/nanaimo/writer/xml.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/nanaimo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.3/nanaimo.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.gitignore -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.rubocop.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.rubocop_todo.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/.travis.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/CHANGELOG.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/Gemfile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/Gemfile.lock -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/LICENSE.txt -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/bin/console -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/bin/setup -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/plist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/reader.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/next_step_mapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/next_step_mapping.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/quote_maps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/quote_maps.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Nanaimo 4 | VERSION = '0.2.6'.freeze 5 | end 6 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/writer.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/pbxproj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/pbxproj.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/xml.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/nanaimo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/nanaimo-0.2.6/nanaimo.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/bin/xcodeproj -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/config_dump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/config_dump.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/project_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/project_diff.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/show.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/show.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/sort.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/target_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/command/target_diff.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/config.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/config/other_linker_flags_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/config/other_linker_flags_parser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/constants.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/differ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/differ.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/gem_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/gem_version.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/plist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/case_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/case_converter.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_configuration.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_file.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_phase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_phase.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/build_rule.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/configuration_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/configuration_list.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/container_item_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/container_item_proxy.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/file_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/file_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/group.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/helpers/file_references_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/helpers/file_references_factory.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/helpers/groupable_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/helpers/groupable_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/native_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/native_target.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/reference_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/reference_proxy.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/root_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/root_object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/target_dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object/target_dependency.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object_attributes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object_dictionary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object_dictionary.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/object_list.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/project_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/project_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/uuid_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/project/uuid_generator.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/abstract_scheme_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/abstract_scheme_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/analyze_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/analyze_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/archive_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/archive_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/build_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/build_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/buildable_product_runnable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/buildable_product_runnable.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/buildable_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/buildable_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/command_line_arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/command_line_arguments.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/environment_variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/environment_variables.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/launch_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/launch_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/macro_expansion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/macro_expansion.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/profile_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/profile_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/test_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/test_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/xml_element_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/scheme/xml_element_wrapper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/user_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/user_interface.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/workspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/workspace.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/workspace/file_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/workspace/file_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/workspace/group_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/workspace/group_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/xcodebuild_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.5.2/lib/xcodeproj/xcodebuild_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/bin/xcodeproj -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/config_dump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/config_dump.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/project_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/project_diff.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/show.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/show.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/sort.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/target_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/target_diff.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config/other_linker_flags_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config/other_linker_flags_parser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/constants.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/differ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/differ.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/gem_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/gem_version.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/plist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/case_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/case_converter.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_configuration.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_file.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_phase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_phase.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_rule.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/configuration_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/configuration_list.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/container_item_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/container_item_proxy.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/file_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/file_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/group.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/file_references_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/file_references_factory.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/groupable_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/groupable_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/native_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/native_target.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/reference_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/reference_proxy.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/root_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/root_object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/target_dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/target_dependency.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_attributes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_dictionary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_dictionary.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_list.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/project_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/project_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/uuid_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/uuid_generator.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/abstract_scheme_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/abstract_scheme_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/analyze_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/analyze_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/archive_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/archive_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/build_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/build_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_product_runnable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_product_runnable.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/command_line_arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/command_line_arguments.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/environment_variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/environment_variables.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/launch_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/launch_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/macro_expansion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/macro_expansion.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/profile_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/profile_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/remote_runnable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/remote_runnable.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/test_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/test_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/xml_element_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/xml_element_wrapper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/user_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/user_interface.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/file_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/file_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/group_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/group_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/xcodebuild_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/gems/xcodeproj-1.8.2/lib/xcodeproj/xcodebuild_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/CFPropertyList-2.3.5.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/CFPropertyList-2.3.5.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/CFPropertyList-3.0.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/CFPropertyList-3.0.0.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/atomos-0.1.3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/atomos-0.1.3.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/claide-1.0.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/claide-1.0.2.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/colored2-3.1.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/colored2-3.1.2.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/nanaimo-0.2.3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/nanaimo-0.2.3.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/nanaimo-0.2.6.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/nanaimo-0.2.6.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/xcodeproj-1.5.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/xcodeproj-1.5.2.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.3.0/specifications/xcodeproj-1.8.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.3.0/specifications/xcodeproj-1.8.2.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/bin/xcodeproj -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/cache/CFPropertyList-3.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/cache/CFPropertyList-3.0.0.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/cache/atomos-0.1.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/cache/atomos-0.1.3.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/cache/claide-1.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/cache/claide-1.0.2.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/cache/colored2-3.1.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/cache/colored2-3.1.2.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/cache/nanaimo-0.2.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/cache/nanaimo-0.2.6.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/cache/xcodeproj-1.8.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/cache/xcodeproj-1.8.2.gem -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/README.rdoc -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/THANKS -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbBinaryCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbBinaryCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPlistError.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPlistError.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFTypes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbCFTypes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbLibXMLParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbLibXMLParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbNokogiriParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbNokogiriParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbPlainCFPropertyList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbPlainCFPropertyList.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbREXMLParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/CFPropertyList-3.0.0/lib/cfpropertylist/rbREXMLParser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.gitignore -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: .rubocop_todo.yml 2 | 3 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.rubocop_todo.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/.travis.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/Gemfile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/Gemfile.lock -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/LICENSE.txt -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.3 2 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/atomos.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/atomos.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/console -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/rake -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/rspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/rubocop -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/bin/setup -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/lib/atomos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/lib/atomos.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/lib/atomos/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/atomos-0.1.3/lib/atomos/version.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.gitignore -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.kick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.kick -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.rubocop.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.rubocop_cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.rubocop_cocoapods.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.rubocop_todo.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.travis.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/.yardopts -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/CHANGELOG.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/Gemfile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/Gemfile.lock -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/README.markdown -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/claide.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/claide.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi/cursor.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi/graphics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi/graphics.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi/string_escaper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/ansi/string_escaper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/argument.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/argument.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/argv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/argv.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command/argument_suggester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command/argument_suggester.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command/banner.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command/plugin_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/command/plugin_manager.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/help.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/informative_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/claide-1.0.2/lib/claide/informative_error.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/ascii_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/ascii_decorator.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/codes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/numbers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/numbers.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/strings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/strings.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/lib/colored2/version.rb: -------------------------------------------------------------------------------- 1 | module Colored2 2 | VERSION = '3.1.2' 3 | end 4 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2/numbers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2/numbers_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2/object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2/object_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2/strings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2/strings_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/colored2_spec.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/colored2-3.1.2/spec/spec_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.gitignore -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.rubocop.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.rubocop_todo.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/.travis.yml -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/CHANGELOG.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/Gemfile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/Gemfile.lock -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/LICENSE.txt -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/Rakefile -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/bin/console -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/bin/setup -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/plist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/reader.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/next_step_mapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/next_step_mapping.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/quote_maps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/unicode/quote_maps.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Nanaimo 4 | VERSION = '0.2.6'.freeze 5 | end 6 | -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/writer.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/pbxproj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/pbxproj.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/lib/nanaimo/writer/xml.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/nanaimo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/nanaimo-0.2.6/nanaimo.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/LICENSE -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/README.md -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/bin/xcodeproj -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/config_dump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/config_dump.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/project_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/project_diff.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/show.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/show.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/sort.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/target_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/command/target_diff.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config/other_linker_flags_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/config/other_linker_flags_parser.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/constants.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/differ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/differ.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/gem_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/gem_version.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/plist.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/case_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/case_converter.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_configuration.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_file.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_phase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_phase.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/build_rule.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/configuration_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/configuration_list.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/container_item_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/container_item_proxy.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/file_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/file_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/group.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/file_references_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/file_references_factory.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/groupable_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/helpers/groupable_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/native_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/native_target.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/reference_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/reference_proxy.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/root_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/root_object.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/target_dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object/target_dependency.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_attributes.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_dictionary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_dictionary.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/object_list.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/project_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/project_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/uuid_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/project/uuid_generator.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/abstract_scheme_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/abstract_scheme_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/analyze_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/analyze_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/archive_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/archive_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/build_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/build_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_product_runnable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_product_runnable.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/buildable_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/command_line_arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/command_line_arguments.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/environment_variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/environment_variables.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/launch_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/launch_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/macro_expansion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/macro_expansion.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/profile_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/profile_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/remote_runnable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/remote_runnable.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/test_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/test_action.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/xml_element_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/scheme/xml_element_wrapper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/user_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/user_interface.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/file_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/file_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/group_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/group_reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/workspace/reference.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/xcodebuild_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/gems/xcodeproj-1.8.2/lib/xcodeproj/xcodebuild_helper.rb -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/specifications/CFPropertyList-3.0.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/specifications/CFPropertyList-3.0.0.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/specifications/atomos-0.1.3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/specifications/atomos-0.1.3.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/specifications/claide-1.0.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/specifications/claide-1.0.2.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/specifications/colored2-3.1.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/specifications/colored2-3.1.2.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/specifications/nanaimo-0.2.6.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/specifications/nanaimo-0.2.6.gemspec -------------------------------------------------------------------------------- /Sources/Carte/ruby/2.6.0/specifications/xcodeproj-1.8.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Sources/Carte/ruby/2.6.0/specifications/xcodeproj-1.8.2.gemspec -------------------------------------------------------------------------------- /Tests/CarteTests/CarteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Tests/CarteTests/CarteTests.swift -------------------------------------------------------------------------------- /Tests/CarteTests/Fixtures/CarteFixtureApp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Tests/CarteTests/Fixtures/CarteFixtureApp.zip -------------------------------------------------------------------------------- /Tests/CarteTests/test_carte.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/Tests/CarteTests/test_carte.rb -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Carte/HEAD/codecov.yml --------------------------------------------------------------------------------