├── .bundle └── config ├── .commitlintrc.json ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml └── pull_request_template.md ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmignore ├── .prettier.js ├── .prettierignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ └── App.test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rntypescriptzustandboilerplate │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── axios.png ├── logo.png └── react-native-typescript-boilerplate.gif ├── babel.config.js ├── docs ├── axios-hooks.md ├── components.md ├── event-emitter.md └── project-structure.md ├── global.d.ts ├── index.js ├── ios ├── .xcode.env ├── Podfile ├── Podfile.lock ├── rnTypescriptZustandBoilerplate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── rnTypescriptZustandBoilerplate.xcscheme ├── rnTypescriptZustandBoilerplate.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── rnTypescriptZustandBoilerplate │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── PrivacyInfo.xcprivacy │ └── main.m └── rnTypescriptZustandBoilerplateTests │ ├── Info.plist │ └── rnTypescriptZustandBoilerplateTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── assets │ ├── fonts │ │ └── Montserrat │ │ │ ├── Montserrat-Black.ttf │ │ │ ├── Montserrat-BlackItalic.ttf │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-BoldItalic.ttf │ │ │ ├── Montserrat-ExtraBold.ttf │ │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ │ ├── Montserrat-ExtraLight.ttf │ │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ │ ├── Montserrat-Italic.ttf │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-LightItalic.ttf │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── Montserrat-MediumItalic.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Montserrat-SemiBold.ttf │ │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ │ ├── Montserrat-Thin.ttf │ │ │ └── Montserrat-ThinItalic.ttf │ └── splash │ │ └── shifaaz-shamoon-unsplash.jpg ├── navigation │ └── index.tsx ├── screens │ ├── detail │ │ ├── DetailScreen.style.ts │ │ └── DetailScreen.tsx │ ├── home │ │ ├── HomeScreen.style.ts │ │ ├── HomeScreen.tsx │ │ ├── components │ │ │ └── card-item │ │ │ │ ├── CardItem.style.ts │ │ │ │ └── CardItem.tsx │ │ └── mock │ │ │ └── MockData.ts │ ├── notification │ │ ├── NotificationScreen.style.ts │ │ └── NotificationScreen.tsx │ ├── profile │ │ ├── ProfileScreen.style.ts │ │ └── ProfileScreen.tsx │ └── search │ │ ├── SearchScreen.style.ts │ │ └── SearchScreen.tsx ├── services │ ├── event-emitter │ │ └── index.ts │ ├── local-storage │ │ └── index.ts │ ├── models │ │ └── index.ts │ └── zustand │ │ ├── app │ │ └── AppSlice.ts │ │ ├── context.ts │ │ ├── store.ts │ │ └── user │ │ └── UserSlice.ts ├── shared │ ├── components │ │ └── text-wrapper │ │ │ └── TextWrapper.tsx │ ├── constants │ │ └── index.ts │ ├── localization │ │ └── index.ts │ └── theme │ │ ├── fonts.ts │ │ └── themes.ts └── utils │ └── index.ts ├── tsconfig.json └── vendor └── bundle └── ruby └── 2.7.0 ├── bin ├── fuzzy_match ├── httpclient ├── pod ├── ruby_executable_hooks ├── sandbox-pod └── xcodeproj ├── cache ├── CFPropertyList-3.0.7.gem ├── activesupport-7.1.4.gem ├── addressable-2.8.7.gem ├── algoliasearch-1.27.5.gem ├── atomos-0.1.3.gem ├── base64-0.2.0.gem ├── bigdecimal-3.1.8.gem ├── claide-1.1.0.gem ├── cocoapods-1.15.2.gem ├── cocoapods-core-1.15.2.gem ├── cocoapods-deintegrate-1.0.5.gem ├── cocoapods-downloader-2.1.gem ├── cocoapods-plugins-1.0.0.gem ├── cocoapods-search-1.0.1.gem ├── cocoapods-trunk-1.6.0.gem ├── cocoapods-try-1.2.0.gem ├── colored2-3.1.2.gem ├── concurrent-ruby-1.3.4.gem ├── connection_pool-2.4.1.gem ├── drb-2.2.1.gem ├── escape-0.0.4.gem ├── ethon-0.16.0.gem ├── ffi-1.17.0.gem ├── fourflusher-2.3.1.gem ├── fuzzy_match-2.0.4.gem ├── gh_inspector-1.1.3.gem ├── httpclient-2.8.3.gem ├── i18n-1.14.5.gem ├── json-2.7.2.gem ├── minitest-5.25.1.gem ├── molinillo-0.8.0.gem ├── mutex_m-0.2.0.gem ├── nanaimo-0.3.0.gem ├── nap-1.1.0.gem ├── netrc-0.11.0.gem ├── nkf-0.2.0.gem ├── public_suffix-4.0.7.gem ├── rexml-3.3.7.gem ├── ruby-macho-2.5.1.gem ├── typhoeus-1.4.1.gem ├── tzinfo-2.0.6.gem └── xcodeproj-1.25.0.gem ├── extensions └── arm64-darwin-22 │ └── 2.7.0 │ ├── bigdecimal-3.1.8 │ ├── bigdecimal.bundle │ ├── gem.build_complete │ ├── gem_make.out │ └── mkmf.log │ ├── ffi-1.17.0 │ ├── ffi_c.bundle │ ├── gem.build_complete │ ├── gem_make.out │ └── mkmf.log │ ├── json-2.7.2 │ ├── gem.build_complete │ ├── gem_make.out │ ├── json │ │ └── ext │ │ │ ├── generator.bundle │ │ │ └── parser.bundle │ └── mkmf.log │ └── nkf-0.2.0 │ ├── gem.build_complete │ ├── gem_make.out │ └── nkf.bundle ├── gems ├── CFPropertyList-3.0.7 │ ├── 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 ├── activesupport-7.1.4 │ ├── CHANGELOG.md │ ├── MIT-LICENSE │ ├── README.rdoc │ └── lib │ │ ├── active_support.rb │ │ └── active_support │ │ ├── actionable_error.rb │ │ ├── all.rb │ │ ├── array_inquirer.rb │ │ ├── backtrace_cleaner.rb │ │ ├── benchmarkable.rb │ │ ├── broadcast_logger.rb │ │ ├── builder.rb │ │ ├── cache.rb │ │ ├── cache │ │ ├── coder.rb │ │ ├── entry.rb │ │ ├── file_store.rb │ │ ├── mem_cache_store.rb │ │ ├── memory_store.rb │ │ ├── null_store.rb │ │ ├── redis_cache_store.rb │ │ ├── serializer_with_fallback.rb │ │ └── strategy │ │ │ ├── local_cache.rb │ │ │ └── local_cache_middleware.rb │ │ ├── callbacks.rb │ │ ├── code_generator.rb │ │ ├── concern.rb │ │ ├── concurrency │ │ ├── load_interlock_aware_monitor.rb │ │ ├── null_lock.rb │ │ └── share_lock.rb │ │ ├── configurable.rb │ │ ├── configuration_file.rb │ │ ├── core_ext.rb │ │ ├── core_ext │ │ ├── array.rb │ │ ├── array │ │ │ ├── access.rb │ │ │ ├── conversions.rb │ │ │ ├── extract.rb │ │ │ ├── extract_options.rb │ │ │ ├── grouping.rb │ │ │ ├── inquiry.rb │ │ │ └── wrap.rb │ │ ├── benchmark.rb │ │ ├── big_decimal.rb │ │ ├── big_decimal │ │ │ └── conversions.rb │ │ ├── class.rb │ │ ├── class │ │ │ ├── attribute.rb │ │ │ ├── attribute_accessors.rb │ │ │ └── subclasses.rb │ │ ├── date.rb │ │ ├── date │ │ │ ├── acts_like.rb │ │ │ ├── blank.rb │ │ │ ├── calculations.rb │ │ │ ├── conversions.rb │ │ │ └── zones.rb │ │ ├── date_and_time │ │ │ ├── calculations.rb │ │ │ ├── compatibility.rb │ │ │ └── zones.rb │ │ ├── date_time.rb │ │ ├── date_time │ │ │ ├── acts_like.rb │ │ │ ├── blank.rb │ │ │ ├── calculations.rb │ │ │ ├── compatibility.rb │ │ │ └── conversions.rb │ │ ├── digest.rb │ │ ├── digest │ │ │ └── uuid.rb │ │ ├── enumerable.rb │ │ ├── erb │ │ │ └── util.rb │ │ ├── file.rb │ │ ├── file │ │ │ └── atomic.rb │ │ ├── hash.rb │ │ ├── hash │ │ │ ├── conversions.rb │ │ │ ├── deep_merge.rb │ │ │ ├── deep_transform_values.rb │ │ │ ├── except.rb │ │ │ ├── indifferent_access.rb │ │ │ ├── keys.rb │ │ │ ├── reverse_merge.rb │ │ │ └── slice.rb │ │ ├── integer.rb │ │ ├── integer │ │ │ ├── inflections.rb │ │ │ ├── multiple.rb │ │ │ └── time.rb │ │ ├── kernel.rb │ │ ├── kernel │ │ │ ├── concern.rb │ │ │ ├── reporting.rb │ │ │ └── singleton_class.rb │ │ ├── load_error.rb │ │ ├── module.rb │ │ ├── module │ │ │ ├── aliasing.rb │ │ │ ├── anonymous.rb │ │ │ ├── attr_internal.rb │ │ │ ├── attribute_accessors.rb │ │ │ ├── attribute_accessors_per_thread.rb │ │ │ ├── concerning.rb │ │ │ ├── delegation.rb │ │ │ ├── deprecation.rb │ │ │ ├── introspection.rb │ │ │ ├── redefine_method.rb │ │ │ └── remove_method.rb │ │ ├── name_error.rb │ │ ├── numeric.rb │ │ ├── numeric │ │ │ ├── bytes.rb │ │ │ ├── conversions.rb │ │ │ └── time.rb │ │ ├── object.rb │ │ ├── object │ │ │ ├── acts_like.rb │ │ │ ├── blank.rb │ │ │ ├── conversions.rb │ │ │ ├── deep_dup.rb │ │ │ ├── duplicable.rb │ │ │ ├── inclusion.rb │ │ │ ├── instance_variables.rb │ │ │ ├── json.rb │ │ │ ├── to_param.rb │ │ │ ├── to_query.rb │ │ │ ├── try.rb │ │ │ ├── with.rb │ │ │ └── with_options.rb │ │ ├── pathname.rb │ │ ├── pathname │ │ │ ├── blank.rb │ │ │ └── existence.rb │ │ ├── range.rb │ │ ├── range │ │ │ ├── compare_range.rb │ │ │ ├── conversions.rb │ │ │ ├── each.rb │ │ │ └── overlap.rb │ │ ├── regexp.rb │ │ ├── securerandom.rb │ │ ├── string.rb │ │ ├── string │ │ │ ├── access.rb │ │ │ ├── behavior.rb │ │ │ ├── conversions.rb │ │ │ ├── exclude.rb │ │ │ ├── filters.rb │ │ │ ├── indent.rb │ │ │ ├── inflections.rb │ │ │ ├── inquiry.rb │ │ │ ├── multibyte.rb │ │ │ ├── output_safety.rb │ │ │ ├── starts_ends_with.rb │ │ │ ├── strip.rb │ │ │ └── zones.rb │ │ ├── symbol.rb │ │ ├── symbol │ │ │ └── starts_ends_with.rb │ │ ├── thread │ │ │ └── backtrace │ │ │ │ └── location.rb │ │ ├── time.rb │ │ └── time │ │ │ ├── acts_like.rb │ │ │ ├── calculations.rb │ │ │ ├── compatibility.rb │ │ │ ├── conversions.rb │ │ │ └── zones.rb │ │ ├── current_attributes.rb │ │ ├── current_attributes │ │ └── test_helper.rb │ │ ├── deep_mergeable.rb │ │ ├── dependencies.rb │ │ ├── dependencies │ │ ├── autoload.rb │ │ ├── interlock.rb │ │ └── require_dependency.rb │ │ ├── deprecation.rb │ │ ├── deprecation │ │ ├── behaviors.rb │ │ ├── constant_accessor.rb │ │ ├── deprecators.rb │ │ ├── disallowed.rb │ │ ├── instance_delegator.rb │ │ ├── method_wrappers.rb │ │ ├── proxy_wrappers.rb │ │ └── reporting.rb │ │ ├── deprecator.rb │ │ ├── descendants_tracker.rb │ │ ├── digest.rb │ │ ├── duration.rb │ │ ├── duration │ │ ├── iso8601_parser.rb │ │ └── iso8601_serializer.rb │ │ ├── encrypted_configuration.rb │ │ ├── encrypted_file.rb │ │ ├── environment_inquirer.rb │ │ ├── error_reporter.rb │ │ ├── error_reporter │ │ └── test_helper.rb │ │ ├── evented_file_update_checker.rb │ │ ├── execution_context.rb │ │ ├── execution_context │ │ └── test_helper.rb │ │ ├── execution_wrapper.rb │ │ ├── executor.rb │ │ ├── executor │ │ └── test_helper.rb │ │ ├── file_update_checker.rb │ │ ├── fork_tracker.rb │ │ ├── gem_version.rb │ │ ├── gzip.rb │ │ ├── hash_with_indifferent_access.rb │ │ ├── html_safe_translation.rb │ │ ├── i18n.rb │ │ ├── i18n_railtie.rb │ │ ├── inflections.rb │ │ ├── inflector.rb │ │ ├── inflector │ │ ├── inflections.rb │ │ ├── methods.rb │ │ └── transliterate.rb │ │ ├── isolated_execution_state.rb │ │ ├── json.rb │ │ ├── json │ │ ├── decoding.rb │ │ └── encoding.rb │ │ ├── key_generator.rb │ │ ├── lazy_load_hooks.rb │ │ ├── locale │ │ ├── en.rb │ │ └── en.yml │ │ ├── log_subscriber.rb │ │ ├── log_subscriber │ │ └── test_helper.rb │ │ ├── logger.rb │ │ ├── logger_silence.rb │ │ ├── logger_thread_safe_level.rb │ │ ├── message_encryptor.rb │ │ ├── message_encryptors.rb │ │ ├── message_pack.rb │ │ ├── message_pack │ │ ├── cache_serializer.rb │ │ ├── extensions.rb │ │ └── serializer.rb │ │ ├── message_verifier.rb │ │ ├── message_verifiers.rb │ │ ├── messages │ │ ├── codec.rb │ │ ├── metadata.rb │ │ ├── rotation_configuration.rb │ │ ├── rotation_coordinator.rb │ │ ├── rotator.rb │ │ └── serializer_with_fallback.rb │ │ ├── multibyte.rb │ │ ├── multibyte │ │ ├── chars.rb │ │ └── unicode.rb │ │ ├── notifications.rb │ │ ├── notifications │ │ ├── fanout.rb │ │ └── instrumenter.rb │ │ ├── number_helper.rb │ │ ├── number_helper │ │ ├── number_converter.rb │ │ ├── number_to_currency_converter.rb │ │ ├── number_to_delimited_converter.rb │ │ ├── number_to_human_converter.rb │ │ ├── number_to_human_size_converter.rb │ │ ├── number_to_percentage_converter.rb │ │ ├── number_to_phone_converter.rb │ │ ├── number_to_rounded_converter.rb │ │ └── rounding_helper.rb │ │ ├── option_merger.rb │ │ ├── ordered_hash.rb │ │ ├── ordered_options.rb │ │ ├── parameter_filter.rb │ │ ├── proxy_object.rb │ │ ├── rails.rb │ │ ├── railtie.rb │ │ ├── reloader.rb │ │ ├── rescuable.rb │ │ ├── ruby_features.rb │ │ ├── secure_compare_rotator.rb │ │ ├── security_utils.rb │ │ ├── string_inquirer.rb │ │ ├── subscriber.rb │ │ ├── syntax_error_proxy.rb │ │ ├── tagged_logging.rb │ │ ├── test_case.rb │ │ ├── testing │ │ ├── assertions.rb │ │ ├── autorun.rb │ │ ├── constant_lookup.rb │ │ ├── constant_stubbing.rb │ │ ├── declarative.rb │ │ ├── deprecation.rb │ │ ├── error_reporter_assertions.rb │ │ ├── file_fixtures.rb │ │ ├── isolation.rb │ │ ├── method_call_assertions.rb │ │ ├── parallelization.rb │ │ ├── parallelization │ │ │ ├── server.rb │ │ │ └── worker.rb │ │ ├── parallelize_executor.rb │ │ ├── setup_and_teardown.rb │ │ ├── stream.rb │ │ ├── strict_warnings.rb │ │ ├── tagged_logging.rb │ │ └── time_helpers.rb │ │ ├── time.rb │ │ ├── time_with_zone.rb │ │ ├── values │ │ └── time_zone.rb │ │ ├── version.rb │ │ ├── xml_mini.rb │ │ └── xml_mini │ │ ├── jdom.rb │ │ ├── libxml.rb │ │ ├── libxmlsax.rb │ │ ├── nokogiri.rb │ │ ├── nokogirisax.rb │ │ └── rexml.rb ├── addressable-2.8.7 │ ├── CHANGELOG.md │ ├── Gemfile │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── addressable.gemspec │ ├── data │ │ └── unicode.data │ ├── lib │ │ ├── addressable.rb │ │ └── addressable │ │ │ ├── idna.rb │ │ │ ├── idna │ │ │ ├── native.rb │ │ │ └── pure.rb │ │ │ ├── template.rb │ │ │ ├── uri.rb │ │ │ └── version.rb │ ├── spec │ │ ├── addressable │ │ │ ├── idna_spec.rb │ │ │ ├── net_http_compat_spec.rb │ │ │ ├── security_spec.rb │ │ │ ├── template_spec.rb │ │ │ └── uri_spec.rb │ │ └── spec_helper.rb │ └── tasks │ │ ├── clobber.rake │ │ ├── gem.rake │ │ ├── git.rake │ │ ├── metrics.rake │ │ ├── profile.rake │ │ ├── rspec.rake │ │ └── yard.rake ├── algoliasearch-1.27.5 │ ├── .rspec │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── algoliasearch.gemspec │ ├── contacts.json │ ├── lib │ │ ├── algolia │ │ │ ├── account_client.rb │ │ │ ├── analytics.rb │ │ │ ├── client.rb │ │ │ ├── error.rb │ │ │ ├── index.rb │ │ │ ├── insights.rb │ │ │ ├── protocol.rb │ │ │ ├── version.rb │ │ │ └── webmock.rb │ │ └── algoliasearch.rb │ ├── resources │ │ └── ca-bundle.crt │ └── spec │ │ ├── account_client_spec.rb │ │ ├── client_spec.rb │ │ ├── mock_spec.rb │ │ ├── spec_helper.rb │ │ └── stub_spec.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 ├── base64-0.2.0 │ ├── LICENSE.txt │ ├── README.md │ └── lib │ │ └── base64.rb ├── bigdecimal-3.1.8 │ ├── LICENSE │ ├── bigdecimal.gemspec │ ├── ext │ │ └── bigdecimal │ │ │ ├── .sitearchdir.time │ │ │ ├── Makefile │ │ │ ├── bigdecimal.bundle │ │ │ ├── bigdecimal.c │ │ │ ├── bigdecimal.h │ │ │ ├── bigdecimal.o │ │ │ ├── bits.h │ │ │ ├── extconf.rb │ │ │ ├── feature.h │ │ │ ├── missing.c │ │ │ ├── missing.h │ │ │ ├── missing.o │ │ │ ├── missing │ │ │ └── dtoa.c │ │ │ └── static_assert.h │ ├── lib │ │ ├── bigdecimal.bundle │ │ ├── bigdecimal.rb │ │ └── bigdecimal │ │ │ ├── jacobian.rb │ │ │ ├── ludcmp.rb │ │ │ ├── math.rb │ │ │ ├── newton.rb │ │ │ └── util.rb │ └── sample │ │ ├── linear.rb │ │ ├── nlsolve.rb │ │ └── pi.rb ├── claide-1.1.0 │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── .kick │ ├── .rubocop.yml │ ├── .rubocop_cocoapods.yml │ ├── .rubocop_todo.yml │ ├── .yardopts │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── 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 │ │ ├── gem_version.rb │ │ ├── help.rb │ │ └── informative_error.rb ├── cocoapods-1.15.2 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── pod │ │ └── sandbox-pod │ └── lib │ │ ├── cocoapods.rb │ │ └── cocoapods │ │ ├── command.rb │ │ ├── command │ │ ├── cache.rb │ │ ├── cache │ │ │ ├── clean.rb │ │ │ └── list.rb │ │ ├── env.rb │ │ ├── init.rb │ │ ├── install.rb │ │ ├── ipc.rb │ │ ├── ipc │ │ │ ├── list.rb │ │ │ ├── podfile.rb │ │ │ ├── podfile_json.rb │ │ │ ├── repl.rb │ │ │ ├── spec.rb │ │ │ └── update_search_index.rb │ │ ├── lib.rb │ │ ├── lib │ │ │ ├── create.rb │ │ │ └── lint.rb │ │ ├── list.rb │ │ ├── options │ │ │ ├── project_directory.rb │ │ │ └── repo_update.rb │ │ ├── outdated.rb │ │ ├── repo.rb │ │ ├── repo │ │ │ ├── add.rb │ │ │ ├── add_cdn.rb │ │ │ ├── lint.rb │ │ │ ├── list.rb │ │ │ ├── push.rb │ │ │ ├── remove.rb │ │ │ └── update.rb │ │ ├── setup.rb │ │ ├── spec.rb │ │ ├── spec │ │ │ ├── cat.rb │ │ │ ├── create.rb │ │ │ ├── edit.rb │ │ │ ├── lint.rb │ │ │ └── which.rb │ │ └── update.rb │ │ ├── config.rb │ │ ├── core_overrides.rb │ │ ├── downloader.rb │ │ ├── downloader │ │ ├── cache.rb │ │ ├── request.rb │ │ └── response.rb │ │ ├── executable.rb │ │ ├── external_sources.rb │ │ ├── external_sources │ │ ├── abstract_external_source.rb │ │ ├── downloader_source.rb │ │ ├── path_source.rb │ │ └── podspec_source.rb │ │ ├── gem_version.rb │ │ ├── generator │ │ ├── acknowledgements.rb │ │ ├── acknowledgements │ │ │ ├── markdown.rb │ │ │ └── plist.rb │ │ ├── app_target_helper.rb │ │ ├── bridge_support.rb │ │ ├── constant.rb │ │ ├── copy_dsyms_script.rb │ │ ├── copy_resources_script.rb │ │ ├── copy_xcframework_script.rb │ │ ├── dummy_source.rb │ │ ├── embed_frameworks_script.rb │ │ ├── file_list.rb │ │ ├── header.rb │ │ ├── info_plist_file.rb │ │ ├── module_map.rb │ │ ├── prefix_header.rb │ │ ├── script_phase_constants.rb │ │ └── umbrella_header.rb │ │ ├── hooks_manager.rb │ │ ├── installer.rb │ │ ├── installer │ │ ├── analyzer.rb │ │ ├── analyzer │ │ │ ├── analysis_result.rb │ │ │ ├── locking_dependency_analyzer.rb │ │ │ ├── pod_variant.rb │ │ │ ├── pod_variant_set.rb │ │ │ ├── podfile_dependency_cache.rb │ │ │ ├── sandbox_analyzer.rb │ │ │ ├── specs_state.rb │ │ │ ├── target_inspection_result.rb │ │ │ └── target_inspector.rb │ │ ├── base_install_hooks_context.rb │ │ ├── installation_options.rb │ │ ├── pod_source_downloader.rb │ │ ├── pod_source_installer.rb │ │ ├── pod_source_preparer.rb │ │ ├── podfile_validator.rb │ │ ├── post_install_hooks_context.rb │ │ ├── post_integrate_hooks_context.rb │ │ ├── pre_install_hooks_context.rb │ │ ├── pre_integrate_hooks_context.rb │ │ ├── project_cache │ │ │ ├── project_cache.rb │ │ │ ├── project_cache_analysis_result.rb │ │ │ ├── project_cache_analyzer.rb │ │ │ ├── project_cache_version.rb │ │ │ ├── project_installation_cache.rb │ │ │ ├── project_metadata_cache.rb │ │ │ ├── target_cache_key.rb │ │ │ └── target_metadata.rb │ │ ├── sandbox_dir_cleaner.rb │ │ ├── sandbox_header_paths_installer.rb │ │ ├── source_provider_hooks_context.rb │ │ ├── target_uuid_generator.rb │ │ ├── user_project_integrator.rb │ │ ├── user_project_integrator │ │ │ ├── target_integrator.rb │ │ │ └── target_integrator │ │ │ │ └── xcconfig_integrator.rb │ │ ├── xcode.rb │ │ └── xcode │ │ │ ├── multi_pods_project_generator.rb │ │ │ ├── pods_project_generator.rb │ │ │ ├── pods_project_generator │ │ │ ├── aggregate_target_dependency_installer.rb │ │ │ ├── aggregate_target_installer.rb │ │ │ ├── app_host_installer.rb │ │ │ ├── file_references_installer.rb │ │ │ ├── pod_target_dependency_installer.rb │ │ │ ├── pod_target_installer.rb │ │ │ ├── pod_target_integrator.rb │ │ │ ├── pods_project_writer.rb │ │ │ ├── project_generator.rb │ │ │ ├── target_installation_result.rb │ │ │ ├── target_installer.rb │ │ │ └── target_installer_helper.rb │ │ │ ├── pods_project_generator_result.rb │ │ │ ├── single_pods_project_generator.rb │ │ │ └── target_validator.rb │ │ ├── native_target_extension.rb │ │ ├── open-uri.rb │ │ ├── podfile.rb │ │ ├── project.rb │ │ ├── resolver.rb │ │ ├── resolver │ │ ├── lazy_specification.rb │ │ └── resolver_specification.rb │ │ ├── sandbox.rb │ │ ├── sandbox │ │ ├── file_accessor.rb │ │ ├── headers_store.rb │ │ ├── path_list.rb │ │ ├── pod_dir_cleaner.rb │ │ └── podspec_finder.rb │ │ ├── sources_manager.rb │ │ ├── target.rb │ │ ├── target │ │ ├── aggregate_target.rb │ │ ├── build_settings.rb │ │ └── pod_target.rb │ │ ├── user_interface.rb │ │ ├── user_interface │ │ ├── error_report.rb │ │ └── inspector_reporter.rb │ │ ├── validator.rb │ │ ├── version_metadata.rb │ │ ├── xcode.rb │ │ └── xcode │ │ ├── framework_paths.rb │ │ ├── linkage_analyzer.rb │ │ ├── xcframework.rb │ │ └── xcframework │ │ └── xcframework_slice.rb ├── cocoapods-core-1.15.2 │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── cocoapods-core.rb │ │ └── cocoapods-core │ │ ├── build_type.rb │ │ ├── cdn_source.rb │ │ ├── core_ui.rb │ │ ├── dependency.rb │ │ ├── gem_version.rb │ │ ├── github.rb │ │ ├── http.rb │ │ ├── lockfile.rb │ │ ├── metrics.rb │ │ ├── platform.rb │ │ ├── podfile.rb │ │ ├── podfile │ │ ├── dsl.rb │ │ └── target_definition.rb │ │ ├── requirement.rb │ │ ├── source.rb │ │ ├── source │ │ ├── acceptor.rb │ │ ├── aggregate.rb │ │ ├── health_reporter.rb │ │ ├── manager.rb │ │ └── metadata.rb │ │ ├── specification.rb │ │ ├── specification │ │ ├── consumer.rb │ │ ├── dsl.rb │ │ ├── dsl │ │ │ ├── attribute.rb │ │ │ ├── attribute_support.rb │ │ │ ├── deprecations.rb │ │ │ └── platform_proxy.rb │ │ ├── json.rb │ │ ├── linter.rb │ │ ├── linter │ │ │ ├── analyzer.rb │ │ │ └── result.rb │ │ ├── root_attribute_accessors.rb │ │ ├── set.rb │ │ └── set │ │ │ └── presenter.rb │ │ ├── standard_error.rb │ │ ├── trunk_source.rb │ │ ├── vendor.rb │ │ ├── vendor │ │ ├── requirement.rb │ │ └── version.rb │ │ ├── version.rb │ │ └── yaml_helper.rb ├── cocoapods-deintegrate-1.0.5 │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── cocoapods │ │ ├── command │ │ │ └── deintegrate.rb │ │ ├── deintegrate │ │ │ └── gem_version.rb │ │ └── deintegrator.rb │ │ ├── cocoapods_deintegrate.rb │ │ └── cocoapods_plugin.rb ├── cocoapods-downloader-2.1 │ ├── LICENSE │ ├── README.markdown │ └── lib │ │ ├── cocoapods-downloader.rb │ │ └── cocoapods-downloader │ │ ├── api.rb │ │ ├── api_exposable.rb │ │ ├── base.rb │ │ ├── gem_version.rb │ │ ├── git.rb │ │ ├── http.rb │ │ ├── mercurial.rb │ │ ├── remote_file.rb │ │ ├── scp.rb │ │ └── subversion.rb ├── cocoapods-plugins-1.0.0 │ ├── .gitignore │ ├── .rubocop.yml │ ├── .rubocop_cocoapods.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── cocoapods-plugins.gemspec │ ├── lib │ │ ├── cocoapods_plugin.rb │ │ ├── cocoapods_plugins.rb │ │ └── pod │ │ │ └── command │ │ │ ├── gem_helper.rb │ │ │ ├── gem_index_cache.rb │ │ │ ├── plugins.rb │ │ │ ├── plugins │ │ │ ├── create.rb │ │ │ ├── installed.rb │ │ │ ├── list.rb │ │ │ ├── publish.rb │ │ │ └── search.rb │ │ │ └── plugins_helper.rb │ ├── plugins.json │ └── spec │ │ ├── command │ │ ├── gem_helper_spec.rb │ │ ├── gem_index_cache_spec.rb │ │ ├── plugins │ │ │ ├── create_spec.rb │ │ │ ├── installed_spec.rb │ │ │ ├── list_spec.rb │ │ │ ├── publish_spec.rb │ │ │ └── search_spec.rb │ │ ├── plugins_helper_spec.rb │ │ └── plugins_spec.rb │ │ ├── fixtures │ │ ├── cocoapods-foo1.gemspec │ │ ├── cocoapods-foo2.gemspec │ │ ├── plugins.json │ │ └── unprefixed.gemspec │ │ └── spec_helper.rb ├── cocoapods-search-1.0.1 │ ├── .github │ │ └── workflows │ │ │ └── Specs.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── cocoapods-search.gemspec │ ├── lib │ │ ├── cocoapods-search.rb │ │ ├── cocoapods-search │ │ │ ├── command.rb │ │ │ ├── command │ │ │ │ └── search.rb │ │ │ └── gem_version.rb │ │ └── cocoapods_plugin.rb │ └── spec │ │ ├── command │ │ └── search_spec.rb │ │ ├── fixtures │ │ └── spec-repos │ │ │ └── test_repo │ │ │ ├── BananaLib │ │ │ └── 1.0 │ │ │ │ └── BananaLib.podspec │ │ │ ├── JSONKit │ │ │ ├── 1.4 │ │ │ │ └── JSONKit.podspec │ │ │ └── 999.999.999 │ │ │ │ └── JSONKit.podspec │ │ │ ├── OrangeFramework │ │ │ └── 0.1.0 │ │ │ │ └── OrangeFramework.podspec │ │ │ ├── Pod+With+Plus+Signs │ │ │ └── 1.0 │ │ │ │ └── Pod+With+Plus+Signs.podspec │ │ │ ├── Realm │ │ │ └── 0.94 │ │ │ │ └── Realm.podspec │ │ │ └── monkey │ │ │ └── 1.0.2 │ │ │ └── monkey.podspec │ │ ├── spec_helper.rb │ │ └── spec_helper │ │ ├── command.rb │ │ ├── fixture.rb │ │ ├── pre_flight.rb │ │ ├── temporary_repos.rb │ │ └── user_interface.rb ├── cocoapods-trunk-1.6.0 │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── .kick │ ├── .rubocop.yml │ ├── .rubocop_cocoapods.yml │ ├── .rubocop_todo.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── cocoapods-trunk.gemspec │ ├── lib │ │ ├── cocoapods_plugin.rb │ │ ├── cocoapods_trunk.rb │ │ └── pod │ │ │ └── command │ │ │ ├── trunk.rb │ │ │ └── trunk │ │ │ ├── add_owner.rb │ │ │ ├── delete.rb │ │ │ ├── deprecate.rb │ │ │ ├── info.rb │ │ │ ├── me.rb │ │ │ ├── push.rb │ │ │ ├── register.rb │ │ │ └── remove_owner.rb │ └── spec │ │ ├── command │ │ ├── trunk │ │ │ ├── addowner_spec.rb │ │ │ ├── delete_spec.rb │ │ │ ├── deprecate_spec.rb │ │ │ ├── info_spec.rb │ │ │ ├── me_spec.rb │ │ │ ├── push_spec.rb │ │ │ ├── register_spec.rb │ │ │ └── remove_owner_spec.rb │ │ └── trunk_spec.rb │ │ ├── fixtures │ │ └── BananaLib.podspec │ │ └── spec_helper.rb ├── cocoapods-try-1.2.0 │ ├── .gitignore │ ├── .rubocop.yml │ ├── .rubocop_cocoapods.yml │ ├── .rubocop_todo.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── cocoapods-try.gemspec │ ├── lib │ │ ├── cocoapods_plugin.rb │ │ ├── cocoapods_try.rb │ │ └── pod │ │ │ ├── command │ │ │ └── try.rb │ │ │ └── try_settings.rb │ └── spec │ │ ├── command │ │ ├── try_settings_spec.rb │ │ └── try_spec.rb │ │ └── spec_helper.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 ├── concurrent-ruby-1.3.4 │ ├── CHANGELOG.md │ ├── Gemfile │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── ext │ │ └── concurrent-ruby │ │ │ ├── ConcurrentRubyService.java │ │ │ └── com │ │ │ └── concurrent_ruby │ │ │ └── ext │ │ │ ├── AtomicReferenceLibrary.java │ │ │ ├── JRubyMapBackendLibrary.java │ │ │ ├── JavaAtomicBooleanLibrary.java │ │ │ ├── JavaAtomicFixnumLibrary.java │ │ │ ├── JavaSemaphoreLibrary.java │ │ │ ├── SynchronizationLibrary.java │ │ │ ├── jsr166e │ │ │ ├── ConcurrentHashMap.java │ │ │ ├── ConcurrentHashMapV8.java │ │ │ ├── LongAdder.java │ │ │ ├── Striped64.java │ │ │ └── nounsafe │ │ │ │ ├── ConcurrentHashMapV8.java │ │ │ │ ├── LongAdder.java │ │ │ │ └── Striped64.java │ │ │ └── jsr166y │ │ │ └── ThreadLocalRandom.java │ └── lib │ │ └── concurrent-ruby │ │ ├── concurrent-ruby.rb │ │ ├── concurrent.rb │ │ └── concurrent │ │ ├── agent.rb │ │ ├── array.rb │ │ ├── async.rb │ │ ├── atom.rb │ │ ├── atomic │ │ ├── atomic_boolean.rb │ │ ├── atomic_fixnum.rb │ │ ├── atomic_markable_reference.rb │ │ ├── atomic_reference.rb │ │ ├── count_down_latch.rb │ │ ├── cyclic_barrier.rb │ │ ├── event.rb │ │ ├── fiber_local_var.rb │ │ ├── java_count_down_latch.rb │ │ ├── locals.rb │ │ ├── lock_local_var.rb │ │ ├── mutex_atomic_boolean.rb │ │ ├── mutex_atomic_fixnum.rb │ │ ├── mutex_count_down_latch.rb │ │ ├── mutex_semaphore.rb │ │ ├── read_write_lock.rb │ │ ├── reentrant_read_write_lock.rb │ │ ├── semaphore.rb │ │ └── thread_local_var.rb │ │ ├── atomic_reference │ │ ├── atomic_direct_update.rb │ │ ├── mutex_atomic.rb │ │ └── numeric_cas_wrapper.rb │ │ ├── atomics.rb │ │ ├── collection │ │ ├── copy_on_notify_observer_set.rb │ │ ├── copy_on_write_observer_set.rb │ │ ├── java_non_concurrent_priority_queue.rb │ │ ├── lock_free_stack.rb │ │ ├── map │ │ │ ├── mri_map_backend.rb │ │ │ ├── non_concurrent_map_backend.rb │ │ │ ├── synchronized_map_backend.rb │ │ │ └── truffleruby_map_backend.rb │ │ ├── non_concurrent_priority_queue.rb │ │ └── ruby_non_concurrent_priority_queue.rb │ │ ├── concern │ │ ├── deprecation.rb │ │ ├── dereferenceable.rb │ │ ├── logging.rb │ │ ├── obligation.rb │ │ └── observable.rb │ │ ├── concurrent_ruby.jar │ │ ├── configuration.rb │ │ ├── constants.rb │ │ ├── dataflow.rb │ │ ├── delay.rb │ │ ├── errors.rb │ │ ├── exchanger.rb │ │ ├── executor │ │ ├── abstract_executor_service.rb │ │ ├── cached_thread_pool.rb │ │ ├── executor_service.rb │ │ ├── fixed_thread_pool.rb │ │ ├── immediate_executor.rb │ │ ├── indirect_immediate_executor.rb │ │ ├── java_executor_service.rb │ │ ├── java_single_thread_executor.rb │ │ ├── java_thread_pool_executor.rb │ │ ├── ruby_executor_service.rb │ │ ├── ruby_single_thread_executor.rb │ │ ├── ruby_thread_pool_executor.rb │ │ ├── safe_task_executor.rb │ │ ├── serial_executor_service.rb │ │ ├── serialized_execution.rb │ │ ├── serialized_execution_delegator.rb │ │ ├── simple_executor_service.rb │ │ ├── single_thread_executor.rb │ │ ├── thread_pool_executor.rb │ │ └── timer_set.rb │ │ ├── executors.rb │ │ ├── future.rb │ │ ├── hash.rb │ │ ├── immutable_struct.rb │ │ ├── ivar.rb │ │ ├── map.rb │ │ ├── maybe.rb │ │ ├── mutable_struct.rb │ │ ├── mvar.rb │ │ ├── options.rb │ │ ├── promise.rb │ │ ├── promises.rb │ │ ├── re_include.rb │ │ ├── scheduled_task.rb │ │ ├── set.rb │ │ ├── settable_struct.rb │ │ ├── synchronization.rb │ │ ├── synchronization │ │ ├── abstract_lockable_object.rb │ │ ├── abstract_object.rb │ │ ├── abstract_struct.rb │ │ ├── condition.rb │ │ ├── full_memory_barrier.rb │ │ ├── jruby_lockable_object.rb │ │ ├── lock.rb │ │ ├── lockable_object.rb │ │ ├── mutex_lockable_object.rb │ │ ├── object.rb │ │ ├── safe_initialization.rb │ │ └── volatile.rb │ │ ├── thread_safe │ │ ├── synchronized_delegator.rb │ │ ├── util.rb │ │ └── util │ │ │ ├── adder.rb │ │ │ ├── data_structures.rb │ │ │ ├── power_of_two_tuple.rb │ │ │ ├── striped64.rb │ │ │ ├── volatile.rb │ │ │ └── xor_shift_random.rb │ │ ├── timer_task.rb │ │ ├── tuple.rb │ │ ├── tvar.rb │ │ ├── utility │ │ ├── engine.rb │ │ ├── monotonic_time.rb │ │ ├── native_extension_loader.rb │ │ ├── native_integer.rb │ │ └── processor_counter.rb │ │ └── version.rb ├── connection_pool-2.4.1 │ ├── Changes.md │ ├── LICENSE │ ├── README.md │ ├── connection_pool.gemspec │ └── lib │ │ ├── connection_pool.rb │ │ └── connection_pool │ │ ├── timed_stack.rb │ │ ├── version.rb │ │ └── wrapper.rb ├── drb-2.2.1 │ ├── LICENSE.txt │ ├── drb.gemspec │ └── lib │ │ ├── drb.rb │ │ └── drb │ │ ├── acl.rb │ │ ├── drb.rb │ │ ├── eq.rb │ │ ├── extserv.rb │ │ ├── extservm.rb │ │ ├── gw.rb │ │ ├── invokemethod.rb │ │ ├── observer.rb │ │ ├── ssl.rb │ │ ├── timeridconv.rb │ │ ├── unix.rb │ │ ├── version.rb │ │ └── weakidconv.rb ├── escape-0.0.4 │ ├── Readme │ ├── doc_include │ │ └── template │ │ │ └── qualitysmith.rb │ └── lib │ │ └── escape.rb ├── ethon-0.16.0 │ ├── .github │ │ └── workflows │ │ │ └── ruby.yml │ ├── .gitignore │ ├── .rspec │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Guardfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── ethon.gemspec │ ├── lib │ │ ├── ethon.rb │ │ └── ethon │ │ │ ├── curl.rb │ │ │ ├── curls │ │ │ ├── classes.rb │ │ │ ├── codes.rb │ │ │ ├── constants.rb │ │ │ ├── form_options.rb │ │ │ ├── functions.rb │ │ │ ├── infos.rb │ │ │ ├── messages.rb │ │ │ ├── options.rb │ │ │ └── settings.rb │ │ │ ├── easy.rb │ │ │ ├── easy │ │ │ ├── callbacks.rb │ │ │ ├── debug_info.rb │ │ │ ├── features.rb │ │ │ ├── form.rb │ │ │ ├── header.rb │ │ │ ├── http.rb │ │ │ ├── http │ │ │ │ ├── actionable.rb │ │ │ │ ├── custom.rb │ │ │ │ ├── delete.rb │ │ │ │ ├── get.rb │ │ │ │ ├── head.rb │ │ │ │ ├── options.rb │ │ │ │ ├── patch.rb │ │ │ │ ├── post.rb │ │ │ │ ├── postable.rb │ │ │ │ ├── put.rb │ │ │ │ └── putable.rb │ │ │ ├── informations.rb │ │ │ ├── mirror.rb │ │ │ ├── operations.rb │ │ │ ├── options.rb │ │ │ ├── params.rb │ │ │ ├── queryable.rb │ │ │ ├── response_callbacks.rb │ │ │ └── util.rb │ │ │ ├── errors.rb │ │ │ ├── errors │ │ │ ├── ethon_error.rb │ │ │ ├── global_init.rb │ │ │ ├── invalid_option.rb │ │ │ ├── invalid_value.rb │ │ │ ├── multi_add.rb │ │ │ ├── multi_fdset.rb │ │ │ ├── multi_remove.rb │ │ │ ├── multi_timeout.rb │ │ │ └── select.rb │ │ │ ├── libc.rb │ │ │ ├── loggable.rb │ │ │ ├── multi.rb │ │ │ ├── multi │ │ │ ├── operations.rb │ │ │ ├── options.rb │ │ │ └── stack.rb │ │ │ └── version.rb │ ├── profile │ │ ├── benchmarks.rb │ │ ├── memory_leaks.rb │ │ ├── perf_spec_helper.rb │ │ └── support │ │ │ ├── memory_test_helpers.rb │ │ │ ├── os_memory_leak_tracker.rb │ │ │ └── ruby_object_leak_tracker.rb │ └── spec │ │ ├── ethon │ │ ├── curl_spec.rb │ │ ├── easy │ │ │ ├── callbacks_spec.rb │ │ │ ├── debug_info_spec.rb │ │ │ ├── features_spec.rb │ │ │ ├── form_spec.rb │ │ │ ├── header_spec.rb │ │ │ ├── http │ │ │ │ ├── custom_spec.rb │ │ │ │ ├── delete_spec.rb │ │ │ │ ├── get_spec.rb │ │ │ │ ├── head_spec.rb │ │ │ │ ├── options_spec.rb │ │ │ │ ├── patch_spec.rb │ │ │ │ ├── post_spec.rb │ │ │ │ └── put_spec.rb │ │ │ ├── http_spec.rb │ │ │ ├── informations_spec.rb │ │ │ ├── mirror_spec.rb │ │ │ ├── operations_spec.rb │ │ │ ├── options_spec.rb │ │ │ ├── queryable_spec.rb │ │ │ ├── response_callbacks_spec.rb │ │ │ └── util_spec.rb │ │ ├── easy_spec.rb │ │ ├── libc_spec.rb │ │ ├── loggable_spec.rb │ │ ├── multi │ │ │ ├── operations_spec.rb │ │ │ ├── options_spec.rb │ │ │ └── stack_spec.rb │ │ └── multi_spec.rb │ │ ├── spec_helper.rb │ │ └── support │ │ ├── localhost_server.rb │ │ └── server.rb ├── ffi-1.17.0 │ ├── CHANGELOG.md │ ├── COPYING │ ├── Gemfile │ ├── LICENSE │ ├── LICENSE.SPECS │ ├── README.md │ ├── Rakefile │ ├── ext │ │ └── ffi_c │ │ │ ├── .sitearchdir.time │ │ │ ├── AbstractMemory.c │ │ │ ├── AbstractMemory.h │ │ │ ├── AbstractMemory.o │ │ │ ├── ArrayType.c │ │ │ ├── ArrayType.h │ │ │ ├── ArrayType.o │ │ │ ├── Buffer.c │ │ │ ├── Buffer.o │ │ │ ├── Call.c │ │ │ ├── Call.h │ │ │ ├── Call.o │ │ │ ├── ClosurePool.c │ │ │ ├── ClosurePool.h │ │ │ ├── ClosurePool.o │ │ │ ├── DynamicLibrary.c │ │ │ ├── DynamicLibrary.h │ │ │ ├── DynamicLibrary.o │ │ │ ├── Function.c │ │ │ ├── Function.h │ │ │ ├── Function.o │ │ │ ├── FunctionInfo.c │ │ │ ├── FunctionInfo.o │ │ │ ├── LastError.c │ │ │ ├── LastError.h │ │ │ ├── LastError.o │ │ │ ├── LongDouble.c │ │ │ ├── LongDouble.h │ │ │ ├── LongDouble.o │ │ │ ├── Makefile │ │ │ ├── MappedType.c │ │ │ ├── MappedType.h │ │ │ ├── MappedType.o │ │ │ ├── MemoryPointer.c │ │ │ ├── MemoryPointer.h │ │ │ ├── MemoryPointer.o │ │ │ ├── MethodHandle.c │ │ │ ├── MethodHandle.h │ │ │ ├── MethodHandle.o │ │ │ ├── Platform.c │ │ │ ├── Platform.h │ │ │ ├── Platform.o │ │ │ ├── Pointer.c │ │ │ ├── Pointer.h │ │ │ ├── Pointer.o │ │ │ ├── Struct.c │ │ │ ├── Struct.h │ │ │ ├── Struct.o │ │ │ ├── StructByValue.c │ │ │ ├── StructByValue.h │ │ │ ├── StructByValue.o │ │ │ ├── StructLayout.c │ │ │ ├── StructLayout.o │ │ │ ├── Thread.c │ │ │ ├── Thread.h │ │ │ ├── Thread.o │ │ │ ├── Type.c │ │ │ ├── Type.h │ │ │ ├── Type.o │ │ │ ├── Types.c │ │ │ ├── Types.h │ │ │ ├── Types.o │ │ │ ├── Variadic.c │ │ │ ├── Variadic.o │ │ │ ├── compat.h │ │ │ ├── extconf.h │ │ │ ├── extconf.rb │ │ │ ├── ffi.c │ │ │ ├── ffi.o │ │ │ ├── ffi_c.bundle │ │ │ ├── libffi-arm64-darwin22 │ │ │ ├── .libs │ │ │ │ ├── libffi.a │ │ │ │ ├── libffi.la │ │ │ │ ├── libffi.lai │ │ │ │ ├── libffi_convenience.a │ │ │ │ └── libffi_convenience.la │ │ │ ├── Makefile │ │ │ ├── config.log │ │ │ ├── config.status │ │ │ ├── doc │ │ │ │ └── Makefile │ │ │ ├── fficonfig.h │ │ │ ├── include │ │ │ │ ├── Makefile │ │ │ │ ├── ffi.h │ │ │ │ └── ffitarget.h │ │ │ ├── libffi.la │ │ │ ├── libffi.pc │ │ │ ├── libffi_convenience.la │ │ │ ├── libtool │ │ │ ├── local.exp │ │ │ ├── man │ │ │ │ └── Makefile │ │ │ ├── src │ │ │ │ ├── .deps │ │ │ │ │ └── .dirstamp │ │ │ │ ├── .dirstamp │ │ │ │ ├── aarch64 │ │ │ │ │ ├── .deps │ │ │ │ │ │ └── .dirstamp │ │ │ │ │ ├── .dirstamp │ │ │ │ │ ├── ffi.lo │ │ │ │ │ ├── ffi.o │ │ │ │ │ ├── sysv.lo │ │ │ │ │ └── sysv.o │ │ │ │ ├── closures.lo │ │ │ │ ├── closures.o │ │ │ │ ├── java_raw_api.lo │ │ │ │ ├── java_raw_api.o │ │ │ │ ├── prep_cif.lo │ │ │ │ ├── prep_cif.o │ │ │ │ ├── raw_api.lo │ │ │ │ ├── raw_api.o │ │ │ │ ├── tramp.lo │ │ │ │ ├── tramp.o │ │ │ │ ├── types.lo │ │ │ │ └── types.o │ │ │ ├── stamp-h1 │ │ │ └── testsuite │ │ │ │ └── Makefile │ │ │ ├── libffi.bsd.mk │ │ │ ├── libffi.darwin.mk │ │ │ ├── libffi.gnu.mk │ │ │ ├── libffi.mk │ │ │ ├── libffi.vc.mk │ │ │ ├── libffi.vc64.mk │ │ │ ├── libffi │ │ │ ├── .allow-ai-service │ │ │ ├── .appveyor.yml │ │ │ ├── .appveyor │ │ │ │ ├── site.exp │ │ │ │ └── unix-noexec.exp │ │ │ ├── .ci │ │ │ │ ├── ar-lib │ │ │ │ ├── bfin-sim.exp │ │ │ │ ├── build-cross-in-container.sh │ │ │ │ ├── build-in-container.sh │ │ │ │ ├── build.sh │ │ │ │ ├── compile │ │ │ │ ├── install.sh │ │ │ │ ├── m32r-sim.exp │ │ │ │ ├── moxie-sim.exp │ │ │ │ ├── msvs-detect │ │ │ │ ├── or1k-sim.exp │ │ │ │ ├── powerpc-eabisim.exp │ │ │ │ ├── site.exp │ │ │ │ └── wine-sim.exp │ │ │ ├── .circleci │ │ │ │ └── config.yml │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── issue_template.md │ │ │ │ └── workflows │ │ │ │ │ ├── build.yml │ │ │ │ │ └── emscripten.yml │ │ │ ├── .gitignore │ │ │ ├── ChangeLog.old │ │ │ ├── LICENSE │ │ │ ├── LICENSE-BUILDTOOLS │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── acinclude.m4 │ │ │ ├── autogen.sh │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure.ac │ │ │ ├── configure.host │ │ │ ├── doc │ │ │ │ ├── Makefile.am │ │ │ │ ├── libffi.texi │ │ │ │ └── version.texi │ │ │ ├── generate-darwin-source-and-headers.py │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ ├── ffi.h.in │ │ │ │ ├── ffi_cfi.h │ │ │ │ ├── ffi_common.h │ │ │ │ └── tramp.h │ │ │ ├── libffi.map.in │ │ │ ├── libffi.pc.in │ │ │ ├── libffi.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── libtool-ldflags │ │ │ ├── libtool-version │ │ │ ├── m4 │ │ │ │ ├── asmcfi.m4 │ │ │ │ ├── ax_append_flag.m4 │ │ │ │ ├── ax_cc_maxopt.m4 │ │ │ │ ├── ax_cflags_warn_all.m4 │ │ │ │ ├── ax_check_compile_flag.m4 │ │ │ │ ├── ax_compiler_vendor.m4 │ │ │ │ ├── ax_configure_args.m4 │ │ │ │ ├── ax_enable_builddir.m4 │ │ │ │ ├── ax_gcc_archflag.m4 │ │ │ │ ├── ax_gcc_x86_cpuid.m4 │ │ │ │ ├── ax_prepend_flag.m4 │ │ │ │ └── ax_require_defined.m4 │ │ │ ├── make_sunver.pl │ │ │ ├── man │ │ │ │ ├── Makefile.am │ │ │ │ ├── ffi.3 │ │ │ │ ├── ffi_call.3 │ │ │ │ ├── ffi_prep_cif.3 │ │ │ │ └── ffi_prep_cif_var.3 │ │ │ ├── msvc_build │ │ │ │ └── aarch64 │ │ │ │ │ ├── Ffi_staticLib.sln │ │ │ │ │ ├── Ffi_staticLib.vcxproj │ │ │ │ │ ├── Ffi_staticLib.vcxproj.filters │ │ │ │ │ ├── Ffi_staticLib.vcxproj.user │ │ │ │ │ └── aarch64_include │ │ │ │ │ └── ffi.h │ │ │ ├── msvcc.sh │ │ │ ├── src │ │ │ │ ├── aarch64 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── sysv.S │ │ │ │ │ └── win64_armasm.S │ │ │ │ ├── alpha │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── internal.h │ │ │ │ │ └── osf.S │ │ │ │ ├── arc │ │ │ │ │ ├── arcompact.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── arm │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── sysv.S │ │ │ │ │ └── sysv_msvc_arm32.S │ │ │ │ ├── avr32 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── bfin │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── closures.c │ │ │ │ ├── cris │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── csky │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── debug.c │ │ │ │ ├── dlmalloc.c │ │ │ │ ├── frv │ │ │ │ │ ├── eabi.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── ia64 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── ia64_flags.h │ │ │ │ │ └── unix.S │ │ │ │ ├── java_raw_api.c │ │ │ │ ├── kvx │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── loongarch64 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── m32r │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── m68k │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── m88k │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── obsd.S │ │ │ │ ├── metag │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── microblaze │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── mips │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── n32.S │ │ │ │ │ └── o32.S │ │ │ │ ├── moxie │ │ │ │ │ ├── eabi.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── nios2 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── or1k │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── pa │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffi64.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── hpux32.S │ │ │ │ │ ├── hpux64.S │ │ │ │ │ └── linux.S │ │ │ │ ├── powerpc │ │ │ │ │ ├── aix.S │ │ │ │ │ ├── aix_closure.S │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── darwin.S │ │ │ │ │ ├── darwin_closure.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffi_darwin.c │ │ │ │ │ ├── ffi_linux64.c │ │ │ │ │ ├── ffi_powerpc.h │ │ │ │ │ ├── ffi_sysv.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── linux64.S │ │ │ │ │ ├── linux64_closure.S │ │ │ │ │ ├── ppc_closure.S │ │ │ │ │ ├── sysv.S │ │ │ │ │ └── t-aix │ │ │ │ ├── prep_cif.c │ │ │ │ ├── raw_api.c │ │ │ │ ├── riscv │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── s390 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── internal.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── sh │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── sh64 │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ │ ├── sparc │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffi64.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── v8.S │ │ │ │ │ └── v9.S │ │ │ │ ├── tile │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── tile.S │ │ │ │ ├── tramp.c │ │ │ │ ├── types.c │ │ │ │ ├── vax │ │ │ │ │ ├── elfbsd.S │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── wasm32 │ │ │ │ │ ├── ffi.c │ │ │ │ │ └── ffitarget.h │ │ │ │ ├── x86 │ │ │ │ │ ├── asmnames.h │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffi64.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── ffiw64.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── internal64.h │ │ │ │ │ ├── sysv.S │ │ │ │ │ ├── sysv_intel.S │ │ │ │ │ ├── unix64.S │ │ │ │ │ ├── win64.S │ │ │ │ │ └── win64_intel.S │ │ │ │ └── xtensa │ │ │ │ │ ├── ffi.c │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ └── sysv.S │ │ │ ├── stamp-h.in │ │ │ └── testsuite │ │ │ │ ├── Makefile.am │ │ │ │ ├── config │ │ │ │ └── default.exp │ │ │ │ ├── emscripten │ │ │ │ ├── build-tests.sh │ │ │ │ ├── build.sh │ │ │ │ ├── conftest.py │ │ │ │ ├── node-tests.sh │ │ │ │ ├── test.html │ │ │ │ └── test_libffi.py │ │ │ │ ├── lib │ │ │ │ ├── libffi.exp │ │ │ │ ├── target-libpath.exp │ │ │ │ └── wrapper.exp │ │ │ │ ├── libffi.bhaible │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── alignof.h │ │ │ │ ├── bhaible.exp │ │ │ │ ├── test-call.c │ │ │ │ ├── test-callback.c │ │ │ │ └── testcases.c │ │ │ │ ├── libffi.call │ │ │ │ ├── align_mixed.c │ │ │ │ ├── align_stdcall.c │ │ │ │ ├── bpo_38748.c │ │ │ │ ├── call.exp │ │ │ │ ├── callback.c │ │ │ │ ├── callback2.c │ │ │ │ ├── callback3.c │ │ │ │ ├── callback4.c │ │ │ │ ├── err_bad_typedef.c │ │ │ │ ├── ffitest.h │ │ │ │ ├── float.c │ │ │ │ ├── float1.c │ │ │ │ ├── float2.c │ │ │ │ ├── float3.c │ │ │ │ ├── float4.c │ │ │ │ ├── float_va.c │ │ │ │ ├── many.c │ │ │ │ ├── many2.c │ │ │ │ ├── many_double.c │ │ │ │ ├── many_mixed.c │ │ │ │ ├── negint.c │ │ │ │ ├── offsets.c │ │ │ │ ├── pr1172638.c │ │ │ │ ├── promotion.c │ │ │ │ ├── pyobjc_tc.c │ │ │ │ ├── return_dbl.c │ │ │ │ ├── return_dbl1.c │ │ │ │ ├── return_dbl2.c │ │ │ │ ├── return_fl.c │ │ │ │ ├── return_fl1.c │ │ │ │ ├── return_fl2.c │ │ │ │ ├── return_fl3.c │ │ │ │ ├── return_ldl.c │ │ │ │ ├── return_ll.c │ │ │ │ ├── return_ll1.c │ │ │ │ ├── return_sc.c │ │ │ │ ├── return_sl.c │ │ │ │ ├── return_uc.c │ │ │ │ ├── return_ul.c │ │ │ │ ├── s55.c │ │ │ │ ├── strlen.c │ │ │ │ ├── strlen2.c │ │ │ │ ├── strlen3.c │ │ │ │ ├── strlen4.c │ │ │ │ ├── struct1.c │ │ │ │ ├── struct10.c │ │ │ │ ├── struct2.c │ │ │ │ ├── struct3.c │ │ │ │ ├── struct4.c │ │ │ │ ├── struct5.c │ │ │ │ ├── struct6.c │ │ │ │ ├── struct7.c │ │ │ │ ├── struct8.c │ │ │ │ ├── struct9.c │ │ │ │ ├── struct_by_value_2.c │ │ │ │ ├── struct_by_value_3.c │ │ │ │ ├── struct_by_value_3f.c │ │ │ │ ├── struct_by_value_4.c │ │ │ │ ├── struct_by_value_4f.c │ │ │ │ ├── struct_by_value_big.c │ │ │ │ ├── struct_by_value_small.c │ │ │ │ ├── struct_return_2H.c │ │ │ │ ├── struct_return_8H.c │ │ │ │ ├── uninitialized.c │ │ │ │ ├── va_1.c │ │ │ │ ├── va_2.c │ │ │ │ ├── va_3.c │ │ │ │ ├── va_struct1.c │ │ │ │ ├── va_struct2.c │ │ │ │ └── va_struct3.c │ │ │ │ ├── libffi.closures │ │ │ │ ├── closure.exp │ │ │ │ ├── closure_fn0.c │ │ │ │ ├── closure_fn1.c │ │ │ │ ├── closure_fn2.c │ │ │ │ ├── closure_fn3.c │ │ │ │ ├── closure_fn4.c │ │ │ │ ├── closure_fn5.c │ │ │ │ ├── closure_fn6.c │ │ │ │ ├── closure_loc_fn0.c │ │ │ │ ├── closure_simple.c │ │ │ │ ├── cls_12byte.c │ │ │ │ ├── cls_16byte.c │ │ │ │ ├── cls_18byte.c │ │ │ │ ├── cls_19byte.c │ │ │ │ ├── cls_1_1byte.c │ │ │ │ ├── cls_20byte.c │ │ │ │ ├── cls_20byte1.c │ │ │ │ ├── cls_24byte.c │ │ │ │ ├── cls_2byte.c │ │ │ │ ├── cls_3_1byte.c │ │ │ │ ├── cls_3byte1.c │ │ │ │ ├── cls_3byte2.c │ │ │ │ ├── cls_3float.c │ │ │ │ ├── cls_4_1byte.c │ │ │ │ ├── cls_4byte.c │ │ │ │ ├── cls_5_1_byte.c │ │ │ │ ├── cls_5byte.c │ │ │ │ ├── cls_64byte.c │ │ │ │ ├── cls_6_1_byte.c │ │ │ │ ├── cls_6byte.c │ │ │ │ ├── cls_7_1_byte.c │ │ │ │ ├── cls_7byte.c │ │ │ │ ├── cls_8byte.c │ │ │ │ ├── cls_9byte1.c │ │ │ │ ├── cls_9byte2.c │ │ │ │ ├── cls_align_double.c │ │ │ │ ├── cls_align_float.c │ │ │ │ ├── cls_align_longdouble.c │ │ │ │ ├── cls_align_longdouble_split.c │ │ │ │ ├── cls_align_longdouble_split2.c │ │ │ │ ├── cls_align_pointer.c │ │ │ │ ├── cls_align_sint16.c │ │ │ │ ├── cls_align_sint32.c │ │ │ │ ├── cls_align_sint64.c │ │ │ │ ├── cls_align_uint16.c │ │ │ │ ├── cls_align_uint32.c │ │ │ │ ├── cls_align_uint64.c │ │ │ │ ├── cls_dbls_struct.c │ │ │ │ ├── cls_double.c │ │ │ │ ├── cls_double_va.c │ │ │ │ ├── cls_float.c │ │ │ │ ├── cls_longdouble.c │ │ │ │ ├── cls_longdouble_va.c │ │ │ │ ├── cls_many_mixed_args.c │ │ │ │ ├── cls_many_mixed_float_double.c │ │ │ │ ├── cls_multi_schar.c │ │ │ │ ├── cls_multi_sshort.c │ │ │ │ ├── cls_multi_sshortchar.c │ │ │ │ ├── cls_multi_uchar.c │ │ │ │ ├── cls_multi_ushort.c │ │ │ │ ├── cls_multi_ushortchar.c │ │ │ │ ├── cls_pointer.c │ │ │ │ ├── cls_pointer_stack.c │ │ │ │ ├── cls_schar.c │ │ │ │ ├── cls_sint.c │ │ │ │ ├── cls_sshort.c │ │ │ │ ├── cls_struct_va1.c │ │ │ │ ├── cls_uchar.c │ │ │ │ ├── cls_uint.c │ │ │ │ ├── cls_uint_va.c │ │ │ │ ├── cls_ulong_va.c │ │ │ │ ├── cls_ulonglong.c │ │ │ │ ├── cls_ushort.c │ │ │ │ ├── err_bad_abi.c │ │ │ │ ├── ffitest.h │ │ │ │ ├── huge_struct.c │ │ │ │ ├── nested_struct.c │ │ │ │ ├── nested_struct1.c │ │ │ │ ├── nested_struct10.c │ │ │ │ ├── nested_struct11.c │ │ │ │ ├── nested_struct12.c │ │ │ │ ├── nested_struct13.c │ │ │ │ ├── nested_struct2.c │ │ │ │ ├── nested_struct3.c │ │ │ │ ├── nested_struct4.c │ │ │ │ ├── nested_struct5.c │ │ │ │ ├── nested_struct6.c │ │ │ │ ├── nested_struct7.c │ │ │ │ ├── nested_struct8.c │ │ │ │ ├── nested_struct9.c │ │ │ │ ├── problem1.c │ │ │ │ ├── single_entry_structs1.c │ │ │ │ ├── single_entry_structs2.c │ │ │ │ ├── single_entry_structs3.c │ │ │ │ ├── stret_large.c │ │ │ │ ├── stret_large2.c │ │ │ │ ├── stret_medium.c │ │ │ │ ├── stret_medium2.c │ │ │ │ ├── testclosure.c │ │ │ │ ├── unwindtest.cc │ │ │ │ └── unwindtest_ffi_call.cc │ │ │ │ ├── libffi.complex │ │ │ │ ├── cls_align_complex.inc │ │ │ │ ├── cls_align_complex_double.c │ │ │ │ ├── cls_align_complex_float.c │ │ │ │ ├── cls_align_complex_longdouble.c │ │ │ │ ├── cls_complex.inc │ │ │ │ ├── cls_complex_double.c │ │ │ │ ├── cls_complex_float.c │ │ │ │ ├── cls_complex_longdouble.c │ │ │ │ ├── cls_complex_struct.inc │ │ │ │ ├── cls_complex_struct_double.c │ │ │ │ ├── cls_complex_struct_float.c │ │ │ │ ├── cls_complex_struct_longdouble.c │ │ │ │ ├── cls_complex_va.inc │ │ │ │ ├── cls_complex_va_double.c │ │ │ │ ├── cls_complex_va_float.c │ │ │ │ ├── cls_complex_va_longdouble.c │ │ │ │ ├── complex.exp │ │ │ │ ├── complex.inc │ │ │ │ ├── complex_defs_double.inc │ │ │ │ ├── complex_defs_float.inc │ │ │ │ ├── complex_defs_longdouble.inc │ │ │ │ ├── complex_double.c │ │ │ │ ├── complex_float.c │ │ │ │ ├── complex_int.c │ │ │ │ ├── complex_longdouble.c │ │ │ │ ├── ffitest.h │ │ │ │ ├── many_complex.inc │ │ │ │ ├── many_complex_double.c │ │ │ │ ├── many_complex_float.c │ │ │ │ ├── many_complex_longdouble.c │ │ │ │ ├── return_complex.inc │ │ │ │ ├── return_complex1.inc │ │ │ │ ├── return_complex1_double.c │ │ │ │ ├── return_complex1_float.c │ │ │ │ ├── return_complex1_longdouble.c │ │ │ │ ├── return_complex2.inc │ │ │ │ ├── return_complex2_double.c │ │ │ │ ├── return_complex2_float.c │ │ │ │ ├── return_complex2_longdouble.c │ │ │ │ ├── return_complex_double.c │ │ │ │ ├── return_complex_float.c │ │ │ │ └── return_complex_longdouble.c │ │ │ │ └── libffi.go │ │ │ │ ├── aa-direct.c │ │ │ │ ├── closure1.c │ │ │ │ ├── ffitest.h │ │ │ │ ├── go.exp │ │ │ │ └── static-chain.h │ │ │ ├── rbffi.h │ │ │ └── rbffi_endian.h │ ├── ffi.gemspec │ ├── lib │ │ ├── ffi.rb │ │ ├── ffi │ │ │ ├── abstract_memory.rb │ │ │ ├── autopointer.rb │ │ │ ├── buffer.rb │ │ │ ├── callback.rb │ │ │ ├── compat.rb │ │ │ ├── data_converter.rb │ │ │ ├── dynamic_library.rb │ │ │ ├── enum.rb │ │ │ ├── errno.rb │ │ │ ├── ffi.rb │ │ │ ├── function.rb │ │ │ ├── io.rb │ │ │ ├── library.rb │ │ │ ├── library_path.rb │ │ │ ├── managedstruct.rb │ │ │ ├── memorypointer.rb │ │ │ ├── platform.rb │ │ │ ├── platform │ │ │ │ ├── aarch64-darwin │ │ │ │ │ └── types.conf │ │ │ │ ├── aarch64-freebsd │ │ │ │ │ └── types.conf │ │ │ │ ├── aarch64-freebsd12 │ │ │ │ │ └── types.conf │ │ │ │ ├── aarch64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── aarch64-openbsd │ │ │ │ │ └── types.conf │ │ │ │ ├── aarch64-windows │ │ │ │ │ └── types.conf │ │ │ │ ├── arm-freebsd │ │ │ │ │ └── types.conf │ │ │ │ ├── arm-freebsd12 │ │ │ │ │ └── types.conf │ │ │ │ ├── arm-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── hppa1.1-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── hppa2.0-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-cygwin │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-darwin │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-freebsd │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-freebsd12 │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-gnu │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-netbsd │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-openbsd │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-solaris │ │ │ │ │ └── types.conf │ │ │ │ ├── i386-windows │ │ │ │ │ └── types.conf │ │ │ │ ├── ia64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── loongarch64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mips-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mips64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mips64el-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mipsel-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mipsisa32r6-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mipsisa32r6el-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mipsisa64r6-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── mipsisa64r6el-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── powerpc-aix │ │ │ │ │ └── types.conf │ │ │ │ ├── powerpc-darwin │ │ │ │ │ └── types.conf │ │ │ │ ├── powerpc-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── powerpc-openbsd │ │ │ │ │ └── types.conf │ │ │ │ ├── powerpc64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── powerpc64le-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── riscv64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── s390-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── s390x-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── sparc-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── sparc-solaris │ │ │ │ │ └── types.conf │ │ │ │ ├── sparcv9-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── sparcv9-openbsd │ │ │ │ │ └── types.conf │ │ │ │ ├── sparcv9-solaris │ │ │ │ │ └── types.conf │ │ │ │ ├── sw_64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-cygwin │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-darwin │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-dragonflybsd │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-freebsd │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-freebsd12 │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-haiku │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-linux │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-msys │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-netbsd │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-openbsd │ │ │ │ │ └── types.conf │ │ │ │ ├── x86_64-solaris │ │ │ │ │ └── types.conf │ │ │ │ └── x86_64-windows │ │ │ │ │ └── types.conf │ │ │ ├── pointer.rb │ │ │ ├── struct.rb │ │ │ ├── struct_by_reference.rb │ │ │ ├── struct_layout.rb │ │ │ ├── struct_layout_builder.rb │ │ │ ├── tools │ │ │ │ ├── const_generator.rb │ │ │ │ ├── generator.rb │ │ │ │ ├── generator_task.rb │ │ │ │ ├── struct_generator.rb │ │ │ │ └── types_generator.rb │ │ │ ├── types.rb │ │ │ ├── union.rb │ │ │ ├── variadic.rb │ │ │ └── version.rb │ │ └── ffi_c.bundle │ ├── rakelib │ │ └── ffi_gem_helper.rb │ ├── samples │ │ ├── getlogin.rb │ │ ├── getpid.rb │ │ ├── gettimeofday.rb │ │ ├── hello.rb │ │ ├── hello_ractor.rb │ │ ├── inotify.rb │ │ ├── pty.rb │ │ ├── qsort.rb │ │ └── qsort_ractor.rb │ └── sig │ │ ├── ffi.rbs │ │ └── ffi │ │ ├── abstract_memory.rbs │ │ ├── auto_pointer.rbs │ │ ├── buffer.rbs │ │ ├── data_converter.rbs │ │ ├── dynamic_library.rbs │ │ ├── enum.rbs │ │ ├── function.rbs │ │ ├── library.rbs │ │ ├── native_type.rbs │ │ ├── pointer.rbs │ │ ├── struct.rbs │ │ ├── struct_by_reference.rbs │ │ ├── struct_by_value.rbs │ │ ├── struct_layout.rbs │ │ ├── struct_layout_builder.rbs │ │ └── type.rbs ├── fourflusher-2.3.1 │ ├── .gitignore │ ├── .rubocop.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── bin │ │ ├── console │ │ └── setup │ ├── fourflusher.gemspec │ └── lib │ │ ├── fourflusher.rb │ │ └── fourflusher │ │ ├── compat.rb │ │ ├── executable.rb │ │ ├── find.rb │ │ ├── simctl.rb │ │ ├── version.rb │ │ └── xcodebuild.rb ├── fuzzy_match-2.0.4 │ ├── .gitignore │ ├── .rspec │ ├── CHANGELOG │ ├── Gemfile │ ├── LICENSE │ ├── README.markdown │ ├── Rakefile │ ├── THANKS-WILLIAM-JAMES.rb │ ├── benchmark │ │ ├── before-with-free.txt │ │ ├── before-without-last-result.txt │ │ ├── before.txt │ │ └── memory.rb │ ├── bin │ │ └── fuzzy_match │ ├── fuzzy_match.gemspec │ ├── groupings-screenshot.png │ ├── highlevel.graffle │ ├── highlevel.png │ ├── lib │ │ ├── fuzzy_match.rb │ │ └── fuzzy_match │ │ │ ├── cached_result.rb │ │ │ ├── record.rb │ │ │ ├── result.rb │ │ │ ├── rule.rb │ │ │ ├── rule │ │ │ ├── grouping.rb │ │ │ └── identity.rb │ │ │ ├── score.rb │ │ │ ├── score │ │ │ ├── amatch.rb │ │ │ └── pure_ruby.rb │ │ │ ├── similarity.rb │ │ │ └── version.rb │ └── spec │ │ ├── amatch_spec.rb │ │ ├── cache_spec.rb │ │ ├── foo.rb │ │ ├── fuzzy_match_spec.rb │ │ ├── grouping_spec.rb │ │ ├── identity_spec.rb │ │ ├── record_spec.rb │ │ └── spec_helper.rb ├── gh_inspector-1.1.3 │ ├── .gitignore │ ├── .rspec │ ├── .rubocop.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── bin │ │ ├── console │ │ └── setup │ ├── gh_inspector.gemspec │ └── lib │ │ ├── gh_inspector.rb │ │ └── gh_inspector │ │ ├── evidence.rb │ │ ├── exception_hound.rb │ │ ├── inspector.rb │ │ ├── sidekick.rb │ │ └── version.rb ├── httpclient-2.8.3 │ ├── README.md │ ├── bin │ │ ├── httpclient │ │ └── jsonclient │ ├── lib │ │ ├── hexdump.rb │ │ ├── http-access2.rb │ │ ├── http-access2 │ │ │ ├── cookie.rb │ │ │ └── http.rb │ │ ├── httpclient.rb │ │ ├── httpclient │ │ │ ├── auth.rb │ │ │ ├── cacert.pem │ │ │ ├── cacert1024.pem │ │ │ ├── connection.rb │ │ │ ├── cookie.rb │ │ │ ├── http.rb │ │ │ ├── include_client.rb │ │ │ ├── jruby_ssl_socket.rb │ │ │ ├── session.rb │ │ │ ├── ssl_config.rb │ │ │ ├── ssl_socket.rb │ │ │ ├── timeout.rb │ │ │ ├── util.rb │ │ │ ├── version.rb │ │ │ └── webagent-cookie.rb │ │ ├── jsonclient.rb │ │ └── oauthclient.rb │ ├── sample │ │ ├── async.rb │ │ ├── auth.rb │ │ ├── cookie.rb │ │ ├── dav.rb │ │ ├── howto.rb │ │ ├── jsonclient.rb │ │ ├── oauth_buzz.rb │ │ ├── oauth_friendfeed.rb │ │ ├── oauth_twitter.rb │ │ ├── ssl │ │ │ ├── 0cert.pem │ │ │ ├── 0key.pem │ │ │ ├── 1000cert.pem │ │ │ ├── 1000key.pem │ │ │ ├── htdocs │ │ │ │ └── index.html │ │ │ ├── ssl_client.rb │ │ │ └── webrick_httpsd.rb │ │ ├── stream.rb │ │ ├── thread.rb │ │ └── wcat.rb │ └── test │ │ ├── ca-chain.pem │ │ ├── ca.cert │ │ ├── client-pass.key │ │ ├── client.cert │ │ ├── client.key │ │ ├── helper.rb │ │ ├── htdigest │ │ ├── htpasswd │ │ ├── jruby_ssl_socket │ │ └── test_pemutils.rb │ │ ├── runner.rb │ │ ├── server.cert │ │ ├── server.key │ │ ├── sslsvr.rb │ │ ├── subca.cert │ │ ├── test_auth.rb │ │ ├── test_cookie.rb │ │ ├── test_hexdump.rb │ │ ├── test_http-access2.rb │ │ ├── test_httpclient.rb │ │ ├── test_include_client.rb │ │ ├── test_jsonclient.rb │ │ ├── test_ssl.rb │ │ └── test_webagent-cookie.rb ├── i18n-1.14.5 │ ├── MIT-LICENSE │ ├── README.md │ └── lib │ │ ├── i18n.rb │ │ └── i18n │ │ ├── backend.rb │ │ ├── backend │ │ ├── base.rb │ │ ├── cache.rb │ │ ├── cache_file.rb │ │ ├── cascade.rb │ │ ├── chain.rb │ │ ├── fallbacks.rb │ │ ├── flatten.rb │ │ ├── gettext.rb │ │ ├── interpolation_compiler.rb │ │ ├── key_value.rb │ │ ├── lazy_loadable.rb │ │ ├── memoize.rb │ │ ├── metadata.rb │ │ ├── pluralization.rb │ │ ├── simple.rb │ │ └── transliterator.rb │ │ ├── config.rb │ │ ├── exceptions.rb │ │ ├── gettext.rb │ │ ├── gettext │ │ ├── helpers.rb │ │ └── po_parser.rb │ │ ├── interpolate │ │ └── ruby.rb │ │ ├── locale.rb │ │ ├── locale │ │ ├── fallbacks.rb │ │ ├── tag.rb │ │ └── tag │ │ │ ├── parents.rb │ │ │ ├── rfc4646.rb │ │ │ └── simple.rb │ │ ├── middleware.rb │ │ ├── tests.rb │ │ ├── tests │ │ ├── basics.rb │ │ ├── defaults.rb │ │ ├── interpolation.rb │ │ ├── link.rb │ │ ├── localization.rb │ │ ├── localization │ │ │ ├── date.rb │ │ │ ├── date_time.rb │ │ │ ├── procs.rb │ │ │ └── time.rb │ │ ├── lookup.rb │ │ ├── pluralization.rb │ │ └── procs.rb │ │ ├── utils.rb │ │ └── version.rb ├── json-2.7.2 │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── ext │ │ └── json │ │ │ ├── Makefile │ │ │ ├── ext │ │ │ ├── fbuffer │ │ │ │ └── fbuffer.h │ │ │ ├── generator │ │ │ │ ├── .sitearchdir.-.json.-.ext.time │ │ │ │ ├── Makefile │ │ │ │ ├── depend │ │ │ │ ├── extconf.rb │ │ │ │ ├── generator.bundle │ │ │ │ ├── generator.c │ │ │ │ ├── generator.h │ │ │ │ └── generator.o │ │ │ └── parser │ │ │ │ ├── .sitearchdir.-.json.-.ext.time │ │ │ │ ├── Makefile │ │ │ │ ├── depend │ │ │ │ ├── extconf.rb │ │ │ │ ├── parser.bundle │ │ │ │ ├── parser.c │ │ │ │ ├── parser.h │ │ │ │ ├── parser.o │ │ │ │ └── parser.rl │ │ │ └── extconf.rb │ ├── json.gemspec │ └── lib │ │ ├── json.rb │ │ └── json │ │ ├── add │ │ ├── bigdecimal.rb │ │ ├── complex.rb │ │ ├── core.rb │ │ ├── date.rb │ │ ├── date_time.rb │ │ ├── exception.rb │ │ ├── ostruct.rb │ │ ├── range.rb │ │ ├── rational.rb │ │ ├── regexp.rb │ │ ├── set.rb │ │ ├── struct.rb │ │ ├── symbol.rb │ │ └── time.rb │ │ ├── common.rb │ │ ├── ext.rb │ │ ├── ext │ │ ├── generator.bundle │ │ └── parser.bundle │ │ ├── generic_object.rb │ │ ├── pure.rb │ │ ├── pure │ │ ├── generator.rb │ │ └── parser.rb │ │ └── version.rb ├── minitest-5.25.1 │ ├── .autotest │ ├── History.rdoc │ ├── Manifest.txt │ ├── README.rdoc │ ├── Rakefile │ ├── design_rationale.rb │ ├── lib │ │ ├── hoe │ │ │ └── minitest.rb │ │ ├── minitest.rb │ │ └── minitest │ │ │ ├── assertions.rb │ │ │ ├── autorun.rb │ │ │ ├── benchmark.rb │ │ │ ├── compress.rb │ │ │ ├── error_on_warning.rb │ │ │ ├── expectations.rb │ │ │ ├── hell.rb │ │ │ ├── manual_plugins.rb │ │ │ ├── mock.rb │ │ │ ├── parallel.rb │ │ │ ├── pride.rb │ │ │ ├── pride_plugin.rb │ │ │ ├── spec.rb │ │ │ ├── test.rb │ │ │ ├── test_task.rb │ │ │ └── unit.rb │ └── test │ │ └── minitest │ │ ├── metametameta.rb │ │ ├── test_minitest_assertions.rb │ │ ├── test_minitest_benchmark.rb │ │ ├── test_minitest_mock.rb │ │ ├── test_minitest_reporter.rb │ │ ├── test_minitest_spec.rb │ │ ├── test_minitest_test.rb │ │ └── test_minitest_test_task.rb ├── molinillo-0.8.0 │ ├── ARCHITECTURE.md │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── molinillo.rb │ │ └── molinillo │ │ ├── delegates │ │ ├── resolution_state.rb │ │ └── specification_provider.rb │ │ ├── dependency_graph.rb │ │ ├── dependency_graph │ │ ├── action.rb │ │ ├── add_edge_no_circular.rb │ │ ├── add_vertex.rb │ │ ├── delete_edge.rb │ │ ├── detach_vertex_named.rb │ │ ├── log.rb │ │ ├── set_payload.rb │ │ ├── tag.rb │ │ └── vertex.rb │ │ ├── errors.rb │ │ ├── gem_metadata.rb │ │ ├── modules │ │ ├── specification_provider.rb │ │ └── ui.rb │ │ ├── resolution.rb │ │ ├── resolver.rb │ │ └── state.rb ├── mutex_m-0.2.0 │ ├── Gemfile │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── lib │ │ └── mutex_m.rb │ └── mutex_m.gemspec ├── nanaimo-0.3.0 │ ├── .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 ├── nap-1.1.0 │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── rest.rb │ │ └── rest │ │ │ ├── error.rb │ │ │ ├── request.rb │ │ │ └── response.rb │ └── support │ │ └── cacert.pem ├── netrc-0.11.0 │ ├── LICENSE.md │ ├── Readme.md │ ├── changelog.txt │ ├── data │ │ ├── default_only.netrc │ │ ├── login.netrc │ │ ├── newlineless.netrc │ │ ├── password.netrc │ │ ├── permissive.netrc │ │ ├── sample.netrc │ │ ├── sample_multi.netrc │ │ ├── sample_multi_with_default.netrc │ │ └── sample_with_default.netrc │ ├── lib │ │ └── netrc.rb │ └── test │ │ ├── test_lex.rb │ │ ├── test_netrc.rb │ │ └── test_parse.rb ├── nkf-0.2.0 │ ├── .git-blame-ignore-revs │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ └── test.yml │ ├── .gitignore │ ├── Gemfile │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── bin │ │ ├── console │ │ └── setup │ ├── ext │ │ ├── java │ │ │ └── org │ │ │ │ └── jruby │ │ │ │ └── ext │ │ │ │ └── nkf │ │ │ │ ├── Command.java │ │ │ │ ├── CommandParser.java │ │ │ │ ├── NKFLibrary.java │ │ │ │ ├── Option.java │ │ │ │ ├── Options.java │ │ │ │ └── RubyNKF.java │ │ └── nkf │ │ │ ├── .sitearchdir.time │ │ │ ├── Makefile │ │ │ ├── extconf.rb │ │ │ ├── nkf-utf8 │ │ │ ├── config.h │ │ │ ├── nkf.c │ │ │ ├── nkf.h │ │ │ ├── utf8tbl.c │ │ │ └── utf8tbl.h │ │ │ ├── nkf.c │ │ │ └── nkf.o │ ├── lib │ │ ├── kconv.rb │ │ └── nkf.rb │ └── nkf.gemspec ├── public_suffix-4.0.7 │ ├── .github │ │ ├── FUNDING.yml │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── release.yml │ │ │ └── tests.yml │ ├── .gitignore │ ├── .rubocop.yml │ ├── .rubocop_opinionated.yml │ ├── .yardopts │ ├── 2.0-Upgrade.md │ ├── CHANGELOG.md │ ├── Gemfile │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── SECURITY.md │ ├── bin │ │ └── console │ ├── data │ │ └── list.txt │ ├── lib │ │ ├── public_suffix.rb │ │ └── public_suffix │ │ │ ├── domain.rb │ │ │ ├── errors.rb │ │ │ ├── list.rb │ │ │ ├── rule.rb │ │ │ └── version.rb │ ├── public_suffix.gemspec │ └── test │ │ ├── .empty │ │ ├── acceptance_test.rb │ │ ├── benchmarks │ │ ├── bm_find.rb │ │ ├── bm_find_all.rb │ │ ├── bm_names.rb │ │ ├── bm_select.rb │ │ ├── bm_select_incremental.rb │ │ └── bm_valid.rb │ │ ├── profilers │ │ ├── domain_profiler.rb │ │ ├── find_profiler.rb │ │ ├── find_profiler_jp.rb │ │ ├── initialization_profiler.rb │ │ ├── list_profsize.rb │ │ └── object_binsize.rb │ │ ├── psl_test.rb │ │ ├── test_helper.rb │ │ ├── tests.txt │ │ └── unit │ │ ├── domain_test.rb │ │ ├── errors_test.rb │ │ ├── list_test.rb │ │ ├── public_suffix_test.rb │ │ └── rule_test.rb ├── rexml-3.3.7 │ ├── LICENSE.txt │ ├── NEWS.md │ ├── README.md │ ├── doc │ │ └── rexml │ │ │ ├── context.rdoc │ │ │ ├── tasks │ │ │ ├── rdoc │ │ │ │ ├── child.rdoc │ │ │ │ ├── document.rdoc │ │ │ │ ├── element.rdoc │ │ │ │ ├── node.rdoc │ │ │ │ └── parent.rdoc │ │ │ └── tocs │ │ │ │ ├── child_toc.rdoc │ │ │ │ ├── document_toc.rdoc │ │ │ │ ├── element_toc.rdoc │ │ │ │ ├── master_toc.rdoc │ │ │ │ ├── node_toc.rdoc │ │ │ │ └── parent_toc.rdoc │ │ │ └── tutorial.rdoc │ └── lib │ │ ├── rexml.rb │ │ └── rexml │ │ ├── attlistdecl.rb │ │ ├── attribute.rb │ │ ├── cdata.rb │ │ ├── child.rb │ │ ├── comment.rb │ │ ├── doctype.rb │ │ ├── document.rb │ │ ├── dtd │ │ ├── attlistdecl.rb │ │ ├── dtd.rb │ │ ├── elementdecl.rb │ │ ├── entitydecl.rb │ │ └── notationdecl.rb │ │ ├── element.rb │ │ ├── encoding.rb │ │ ├── entity.rb │ │ ├── formatters │ │ ├── default.rb │ │ ├── pretty.rb │ │ └── transitive.rb │ │ ├── functions.rb │ │ ├── instruction.rb │ │ ├── light │ │ └── node.rb │ │ ├── namespace.rb │ │ ├── node.rb │ │ ├── output.rb │ │ ├── parent.rb │ │ ├── parseexception.rb │ │ ├── parsers │ │ ├── baseparser.rb │ │ ├── lightparser.rb │ │ ├── pullparser.rb │ │ ├── sax2parser.rb │ │ ├── streamparser.rb │ │ ├── treeparser.rb │ │ ├── ultralightparser.rb │ │ └── xpathparser.rb │ │ ├── quickpath.rb │ │ ├── rexml.rb │ │ ├── sax2listener.rb │ │ ├── security.rb │ │ ├── source.rb │ │ ├── streamlistener.rb │ │ ├── text.rb │ │ ├── undefinednamespaceexception.rb │ │ ├── validation │ │ ├── relaxng.rb │ │ ├── validation.rb │ │ └── validationexception.rb │ │ ├── xmldecl.rb │ │ ├── xmltokens.rb │ │ ├── xpath.rb │ │ └── xpath_parser.rb ├── ruby-macho-2.5.1 │ ├── .yardopts │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── macho.rb │ │ └── macho │ │ ├── exceptions.rb │ │ ├── fat_file.rb │ │ ├── headers.rb │ │ ├── load_commands.rb │ │ ├── macho_file.rb │ │ ├── sections.rb │ │ ├── structure.rb │ │ ├── tools.rb │ │ ├── utils.rb │ │ └── view.rb ├── typhoeus-1.4.1 │ ├── .github │ │ └── workflows │ │ │ ├── ci.yml │ │ │ └── experimental.yml │ ├── .gitignore │ ├── .rspec │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── Guardfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── UPGRADE.md │ ├── lib │ │ ├── rack │ │ │ ├── typhoeus.rb │ │ │ └── typhoeus │ │ │ │ └── middleware │ │ │ │ ├── params_decoder.rb │ │ │ │ └── params_decoder │ │ │ │ └── helper.rb │ │ ├── typhoeus.rb │ │ └── typhoeus │ │ │ ├── adapters │ │ │ └── faraday.rb │ │ │ ├── cache │ │ │ ├── dalli.rb │ │ │ ├── rails.rb │ │ │ └── redis.rb │ │ │ ├── config.rb │ │ │ ├── easy_factory.rb │ │ │ ├── errors.rb │ │ │ ├── errors │ │ │ ├── no_stub.rb │ │ │ └── typhoeus_error.rb │ │ │ ├── expectation.rb │ │ │ ├── hydra.rb │ │ │ ├── hydra │ │ │ ├── addable.rb │ │ │ ├── before.rb │ │ │ ├── block_connection.rb │ │ │ ├── cacheable.rb │ │ │ ├── memoizable.rb │ │ │ ├── queueable.rb │ │ │ ├── runnable.rb │ │ │ └── stubbable.rb │ │ │ ├── pool.rb │ │ │ ├── railtie.rb │ │ │ ├── request.rb │ │ │ ├── request │ │ │ ├── actions.rb │ │ │ ├── before.rb │ │ │ ├── block_connection.rb │ │ │ ├── cacheable.rb │ │ │ ├── callbacks.rb │ │ │ ├── marshal.rb │ │ │ ├── memoizable.rb │ │ │ ├── operations.rb │ │ │ ├── responseable.rb │ │ │ ├── streamable.rb │ │ │ └── stubbable.rb │ │ │ ├── response.rb │ │ │ ├── response │ │ │ ├── cacheable.rb │ │ │ ├── header.rb │ │ │ ├── informations.rb │ │ │ └── status.rb │ │ │ └── version.rb │ ├── perf │ │ ├── profile.rb │ │ └── vs_nethttp.rb │ ├── spec │ │ ├── rack │ │ │ └── typhoeus │ │ │ │ └── middleware │ │ │ │ ├── params_decoder │ │ │ │ └── helper_spec.rb │ │ │ │ └── params_decoder_spec.rb │ │ ├── spec_helper.rb │ │ ├── support │ │ │ ├── localhost_server.rb │ │ │ ├── memory_cache.rb │ │ │ └── server.rb │ │ ├── typhoeus │ │ │ ├── adapters │ │ │ │ └── faraday_spec.rb │ │ │ ├── cache │ │ │ │ ├── dalli_spec.rb │ │ │ │ └── redis_spec.rb │ │ │ ├── config_spec.rb │ │ │ ├── easy_factory_spec.rb │ │ │ ├── errors │ │ │ │ └── no_stub_spec.rb │ │ │ ├── expectation_spec.rb │ │ │ ├── hydra │ │ │ │ ├── addable_spec.rb │ │ │ │ ├── before_spec.rb │ │ │ │ ├── block_connection_spec.rb │ │ │ │ ├── cacheable_spec.rb │ │ │ │ ├── memoizable_spec.rb │ │ │ │ ├── queueable_spec.rb │ │ │ │ ├── runnable_spec.rb │ │ │ │ └── stubbable_spec.rb │ │ │ ├── hydra_spec.rb │ │ │ ├── pool_spec.rb │ │ │ ├── request │ │ │ │ ├── actions_spec.rb │ │ │ │ ├── before_spec.rb │ │ │ │ ├── block_connection_spec.rb │ │ │ │ ├── cacheable_spec.rb │ │ │ │ ├── callbacks_spec.rb │ │ │ │ ├── marshal_spec.rb │ │ │ │ ├── memoizable_spec.rb │ │ │ │ ├── operations_spec.rb │ │ │ │ ├── responseable_spec.rb │ │ │ │ └── stubbable_spec.rb │ │ │ ├── request_spec.rb │ │ │ ├── response │ │ │ │ ├── header_spec.rb │ │ │ │ ├── informations_spec.rb │ │ │ │ └── status_spec.rb │ │ │ └── response_spec.rb │ │ └── typhoeus_spec.rb │ └── typhoeus.gemspec ├── tzinfo-2.0.6 │ ├── .yardopts │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── tzinfo.rb │ │ └── tzinfo │ │ ├── annual_rules.rb │ │ ├── country.rb │ │ ├── country_timezone.rb │ │ ├── data_source.rb │ │ ├── data_sources.rb │ │ ├── data_sources │ │ ├── constant_offset_data_timezone_info.rb │ │ ├── country_info.rb │ │ ├── data_timezone_info.rb │ │ ├── linked_timezone_info.rb │ │ ├── posix_time_zone_parser.rb │ │ ├── ruby_data_source.rb │ │ ├── timezone_info.rb │ │ ├── transitions_data_timezone_info.rb │ │ ├── zoneinfo_data_source.rb │ │ └── zoneinfo_reader.rb │ │ ├── data_timezone.rb │ │ ├── datetime_with_offset.rb │ │ ├── format1.rb │ │ ├── format1 │ │ ├── country_definer.rb │ │ ├── country_index_definition.rb │ │ ├── timezone_definer.rb │ │ ├── timezone_definition.rb │ │ └── timezone_index_definition.rb │ │ ├── format2.rb │ │ ├── format2 │ │ ├── country_definer.rb │ │ ├── country_index_definer.rb │ │ ├── country_index_definition.rb │ │ ├── timezone_definer.rb │ │ ├── timezone_definition.rb │ │ ├── timezone_index_definer.rb │ │ └── timezone_index_definition.rb │ │ ├── info_timezone.rb │ │ ├── linked_timezone.rb │ │ ├── offset_timezone_period.rb │ │ ├── ruby_core_support.rb │ │ ├── string_deduper.rb │ │ ├── time_with_offset.rb │ │ ├── timestamp.rb │ │ ├── timestamp_with_offset.rb │ │ ├── timezone.rb │ │ ├── timezone_offset.rb │ │ ├── timezone_period.rb │ │ ├── timezone_proxy.rb │ │ ├── timezone_transition.rb │ │ ├── transition_rule.rb │ │ ├── transitions_timezone_period.rb │ │ ├── version.rb │ │ └── with_offset.rb └── xcodeproj-1.25.0 │ ├── 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 │ │ ├── swift_package_local_reference.rb │ │ ├── swift_package_product_dependency.rb │ │ ├── swift_package_remote_reference.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 │ ├── execution_action.rb │ ├── launch_action.rb │ ├── location_scenario_reference.rb │ ├── macro_expansion.rb │ ├── profile_action.rb │ ├── remote_runnable.rb │ ├── send_email_action_content.rb │ ├── shell_script_action_content.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.7.gemspec ├── activesupport-7.1.4.gemspec ├── addressable-2.8.7.gemspec ├── algoliasearch-1.27.5.gemspec ├── atomos-0.1.3.gemspec ├── base64-0.2.0.gemspec ├── bigdecimal-3.1.8.gemspec ├── claide-1.1.0.gemspec ├── cocoapods-1.15.2.gemspec ├── cocoapods-core-1.15.2.gemspec ├── cocoapods-deintegrate-1.0.5.gemspec ├── cocoapods-downloader-2.1.gemspec ├── cocoapods-plugins-1.0.0.gemspec ├── cocoapods-search-1.0.1.gemspec ├── cocoapods-trunk-1.6.0.gemspec ├── cocoapods-try-1.2.0.gemspec ├── colored2-3.1.2.gemspec ├── concurrent-ruby-1.3.4.gemspec ├── connection_pool-2.4.1.gemspec ├── drb-2.2.1.gemspec ├── escape-0.0.4.gemspec ├── ethon-0.16.0.gemspec ├── ffi-1.17.0.gemspec ├── fourflusher-2.3.1.gemspec ├── fuzzy_match-2.0.4.gemspec ├── gh_inspector-1.1.3.gemspec ├── httpclient-2.8.3.gemspec ├── i18n-1.14.5.gemspec ├── json-2.7.2.gemspec ├── minitest-5.25.1.gemspec ├── molinillo-0.8.0.gemspec ├── mutex_m-0.2.0.gemspec ├── nanaimo-0.3.0.gemspec ├── nap-1.1.0.gemspec ├── netrc-0.11.0.gemspec ├── nkf-0.2.0.gemspec ├── public_suffix-4.0.7.gemspec ├── rexml-3.3.7.gemspec ├── ruby-macho-2.5.1.gemspec ├── typhoeus-1.4.1.gemspec ├── tzinfo-2.0.6.gemspec └── xcodeproj-1.25.0.gemspec /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.bundle/config -------------------------------------------------------------------------------- /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.prettier.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/** -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /assets/axios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/assets/axios.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/react-native-typescript-boilerplate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/assets/react-native-typescript-boilerplate.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/axios-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/docs/axios-hooks.md -------------------------------------------------------------------------------- /docs/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/docs/components.md -------------------------------------------------------------------------------- /docs/event-emitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/docs/event-emitter.md -------------------------------------------------------------------------------- /docs/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/docs/project-structure.md -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/global.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate/AppDelegate.h -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate/AppDelegate.mm -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate/Info.plist -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplate/main.m -------------------------------------------------------------------------------- /ios/rnTypescriptZustandBoilerplateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/ios/rnTypescriptZustandBoilerplateTests/Info.plist -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/fonts/Montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /src/assets/splash/shifaaz-shamoon-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/assets/splash/shifaaz-shamoon-unsplash.jpg -------------------------------------------------------------------------------- /src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/navigation/index.tsx -------------------------------------------------------------------------------- /src/screens/detail/DetailScreen.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/detail/DetailScreen.style.ts -------------------------------------------------------------------------------- /src/screens/detail/DetailScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/detail/DetailScreen.tsx -------------------------------------------------------------------------------- /src/screens/home/HomeScreen.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/home/HomeScreen.style.ts -------------------------------------------------------------------------------- /src/screens/home/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/home/HomeScreen.tsx -------------------------------------------------------------------------------- /src/screens/home/components/card-item/CardItem.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/home/components/card-item/CardItem.style.ts -------------------------------------------------------------------------------- /src/screens/home/components/card-item/CardItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/home/components/card-item/CardItem.tsx -------------------------------------------------------------------------------- /src/screens/home/mock/MockData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/home/mock/MockData.ts -------------------------------------------------------------------------------- /src/screens/notification/NotificationScreen.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/notification/NotificationScreen.style.ts -------------------------------------------------------------------------------- /src/screens/notification/NotificationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/notification/NotificationScreen.tsx -------------------------------------------------------------------------------- /src/screens/profile/ProfileScreen.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/profile/ProfileScreen.style.ts -------------------------------------------------------------------------------- /src/screens/profile/ProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/profile/ProfileScreen.tsx -------------------------------------------------------------------------------- /src/screens/search/SearchScreen.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/search/SearchScreen.style.ts -------------------------------------------------------------------------------- /src/screens/search/SearchScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/screens/search/SearchScreen.tsx -------------------------------------------------------------------------------- /src/services/event-emitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/services/event-emitter/index.ts -------------------------------------------------------------------------------- /src/services/local-storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/services/local-storage/index.ts -------------------------------------------------------------------------------- /src/services/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/services/models/index.ts -------------------------------------------------------------------------------- /src/services/zustand/app/AppSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/services/zustand/app/AppSlice.ts -------------------------------------------------------------------------------- /src/services/zustand/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/services/zustand/context.ts -------------------------------------------------------------------------------- /src/services/zustand/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/services/zustand/store.ts -------------------------------------------------------------------------------- /src/services/zustand/user/UserSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/services/zustand/user/UserSlice.ts -------------------------------------------------------------------------------- /src/shared/components/text-wrapper/TextWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/shared/components/text-wrapper/TextWrapper.tsx -------------------------------------------------------------------------------- /src/shared/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/shared/constants/index.ts -------------------------------------------------------------------------------- /src/shared/localization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/shared/localization/index.ts -------------------------------------------------------------------------------- /src/shared/theme/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/shared/theme/fonts.ts -------------------------------------------------------------------------------- /src/shared/theme/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/shared/theme/themes.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/fuzzy_match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/bin/fuzzy_match -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/httpclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/bin/httpclient -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/bin/pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/ruby_executable_hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/bin/ruby_executable_hooks -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/sandbox-pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/bin/sandbox-pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/bin/xcodeproj -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/CFPropertyList-3.0.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/CFPropertyList-3.0.7.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/activesupport-7.1.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/activesupport-7.1.4.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/addressable-2.8.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/addressable-2.8.7.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/algoliasearch-1.27.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/algoliasearch-1.27.5.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/atomos-0.1.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/atomos-0.1.3.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/base64-0.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/base64-0.2.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/bigdecimal-3.1.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/bigdecimal-3.1.8.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/claide-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/claide-1.1.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-1.15.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-1.15.2.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-core-1.15.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-core-1.15.2.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-deintegrate-1.0.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-deintegrate-1.0.5.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-downloader-2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-downloader-2.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-plugins-1.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-plugins-1.0.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-search-1.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-search-1.0.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-trunk-1.6.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-trunk-1.6.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-try-1.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-try-1.2.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/colored2-3.1.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/colored2-3.1.2.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/concurrent-ruby-1.3.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/concurrent-ruby-1.3.4.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/connection_pool-2.4.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/connection_pool-2.4.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/drb-2.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/drb-2.2.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/escape-0.0.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/escape-0.0.4.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/ethon-0.16.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/ethon-0.16.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/ffi-1.17.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/ffi-1.17.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/fourflusher-2.3.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/fourflusher-2.3.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/fuzzy_match-2.0.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/fuzzy_match-2.0.4.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/gh_inspector-1.1.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/gh_inspector-1.1.3.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/httpclient-2.8.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/httpclient-2.8.3.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/i18n-1.14.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/i18n-1.14.5.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/json-2.7.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/json-2.7.2.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/minitest-5.25.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/minitest-5.25.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/molinillo-0.8.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/molinillo-0.8.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/mutex_m-0.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/mutex_m-0.2.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/nanaimo-0.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/nanaimo-0.3.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/nap-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/nap-1.1.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/netrc-0.11.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/netrc-0.11.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/nkf-0.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/nkf-0.2.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/public_suffix-4.0.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/public_suffix-4.0.7.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/rexml-3.3.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/rexml-3.3.7.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/ruby-macho-2.5.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/ruby-macho-2.5.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/typhoeus-1.4.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/typhoeus-1.4.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/tzinfo-2.0.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/tzinfo-2.0.6.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/xcodeproj-1.25.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/cache/xcodeproj-1.25.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/extensions/arm64-darwin-22/2.7.0/bigdecimal-3.1.8/gem.build_complete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/extensions/arm64-darwin-22/2.7.0/ffi-1.17.0/gem.build_complete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/extensions/arm64-darwin-22/2.7.0/json-2.7.2/gem.build_complete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/extensions/arm64-darwin-22/2.7.0/nkf-0.2.0/gem.build_complete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/README.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.7/THANKS -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/activesupport-7.1.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/activesupport-7.1.4/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/activesupport-7.1.4/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/activesupport-7.1.4/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/activesupport-7.1.4/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/activesupport-7.1.4/README.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/gem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/gem.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/git.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/git.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/rspec.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/yard.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.7/tasks/yard.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format d 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/contacts.json -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/algoliasearch-1.27.5/lib/algolia/version.rb: -------------------------------------------------------------------------------- 1 | module Algolia 2 | VERSION = "1.27.5" 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: .rubocop_todo.yml 2 | 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.rubocop_todo.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.3 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/atomos.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/atomos.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/console -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/rspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/rubocop -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/bin/setup -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/lib/atomos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/lib/atomos.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/lib/atomos/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/lib/atomos/version.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/base64-0.2.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/base64-0.2.0/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/base64-0.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/base64-0.2.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/base64-0.2.0/lib/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/base64-0.2.0/lib/base64.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/ext/bigdecimal/.sitearchdir.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/lib/bigdecimal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/lib/bigdecimal.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/sample/linear.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/sample/linear.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/sample/nlsolve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/sample/nlsolve.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/sample/pi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/bigdecimal-3.1.8/sample/pi.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.kick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.kick -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.rubocop.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.rubocop_todo.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.yardopts -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/claide.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/claide.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/ansi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/ansi.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/argv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/argv.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/command.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/help.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/bin/pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/bin/pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/bin/sandbox-pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/bin/sandbox-pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/lib/cocoapods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/lib/cocoapods.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.15.2/lib/cocoapods/core_overrides.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods/sources_manager' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.15.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.15.2/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.15.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.15.2/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-deintegrate-1.0.5/lib/cocoapods/deintegrate/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsDeintegrate 2 | VERSION = '1.0.5'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-downloader-2.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-downloader-2.1/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: 2 | - .rubocop_cocoapods.yml 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'pod/command/plugins' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/lib/cocoapods-search.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-search/gem_version' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/lib/cocoapods-search/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsSearch 2 | VERSION = '1.0.1'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-search/command' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/.kick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/.kick -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/.rubocop.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'pod/command/trunk' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-trunk-1.6.0/lib/cocoapods_trunk.rb: -------------------------------------------------------------------------------- 1 | module CocoaPodsTrunk 2 | VERSION = '1.6.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/.rubocop.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-try-1.2.0/lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'pod/command/try' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/lib/colored2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/lib/colored2.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/lib/colored2/version.rb: -------------------------------------------------------------------------------- 1 | module Colored2 2 | VERSION = '3.1.2' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/version.rb: -------------------------------------------------------------------------------- 1 | module Concurrent 2 | VERSION = '1.3.4' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/connection_pool-2.4.1/Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/connection_pool-2.4.1/Changes.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/connection_pool-2.4.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/connection_pool-2.4.1/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/connection_pool-2.4.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/connection_pool-2.4.1/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/connection_pool-2.4.1/lib/connection_pool/version.rb: -------------------------------------------------------------------------------- 1 | class ConnectionPool 2 | VERSION = "2.4.1" 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/drb.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/drb.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: false 2 | require 'drb/drb' 3 | 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/acl.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/drb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/drb.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/eq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/eq.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/extserv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/extserv.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/extservm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/extservm.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/gw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/gw.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/invokemethod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/invokemethod.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/observer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/ssl.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/timeridconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/timeridconv.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/unix.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/version.rb: -------------------------------------------------------------------------------- 1 | module DRb 2 | VERSION = "2.2.1" 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/weakidconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/drb-2.2.1/lib/drb/weakidconv.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/escape-0.0.4/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/escape-0.0.4/Readme -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/escape-0.0.4/lib/escape.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/escape-0.0.4/lib/escape.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/.rspec: -------------------------------------------------------------------------------- 1 | --tty 2 | --color 3 | --format documentation 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/Guardfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/ethon.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/ethon.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/curl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/curl.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/easy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/easy.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/errors.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/libc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/libc.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/loggable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/loggable.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/multi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/multi.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/version.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/profile/benchmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/profile/benchmarks.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/COPYING -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/LICENSE.SPECS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/LICENSE.SPECS -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/.sitearchdir.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ArrayType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ArrayType.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ArrayType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ArrayType.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ArrayType.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ArrayType.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Buffer.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Buffer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Buffer.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Call.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Call.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Call.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Call.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ClosurePool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ClosurePool.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ClosurePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ClosurePool.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ClosurePool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ClosurePool.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Function.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Function.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Function.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Function.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LastError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LastError.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LastError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LastError.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LastError.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LastError.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LongDouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LongDouble.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LongDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LongDouble.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LongDouble.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/LongDouble.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Makefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/MappedType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/MappedType.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/MappedType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/MappedType.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/MappedType.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/MappedType.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Platform.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Platform.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Platform.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Platform.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Pointer.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Pointer.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Pointer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Pointer.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Struct.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Struct.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Struct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Struct.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Thread.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Thread.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Thread.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Type.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Type.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Type.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Type.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Types.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Types.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Types.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Types.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Variadic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Variadic.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Variadic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/Variadic.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/compat.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/extconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/extconf.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/extconf.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ffi.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ffi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ffi.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ffi_c.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/ffi_c.bundle -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi-arm64-darwin22/.libs/libffi.la: -------------------------------------------------------------------------------- 1 | ../libffi.la -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi-arm64-darwin22/.libs/libffi_convenience.la: -------------------------------------------------------------------------------- 1 | ../libffi_convenience.la -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi-arm64-darwin22/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi-arm64-darwin22/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi-arm64-darwin22/src/aarch64/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi-arm64-darwin22/src/aarch64/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi-arm64-darwin22/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for fficonfig.h 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.bsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.bsd.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.gnu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.gnu.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.vc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi.vc.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/.allow-ai-service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec autoreconf -v -i 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this with automake to create Makefile.in 2 | 3 | info_TEXINFOS = libffi.texi 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h: -------------------------------------------------------------------------------- 1 | #include "../libffi.call/ffitest.h" 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h: -------------------------------------------------------------------------------- 1 | #include "../libffi.call/ffitest.h" 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h: -------------------------------------------------------------------------------- 1 | #include "../libffi.call/ffitest.h" 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/rbffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ext/ffi_c/rbffi.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ffi.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/ffi.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/autopointer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/autopointer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/buffer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/callback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/callback.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/compat.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/enum.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/errno.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/errno.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/ffi.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/function.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/io.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/library.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/library.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/library_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/library_path.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/memorypointer.rb: -------------------------------------------------------------------------------- 1 | # This class is now implemented in C 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/platform.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/pointer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/pointer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/struct.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/types.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/union.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/variadic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/variadic.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi/version.rb: -------------------------------------------------------------------------------- 1 | module FFI 2 | VERSION = '1.17.0' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi_c.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/lib/ffi_c.bundle -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/getlogin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/getlogin.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/getpid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/getpid.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/gettimeofday.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/gettimeofday.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/hello.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/hello_ractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/hello_ractor.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/inotify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/inotify.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/pty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/pty.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/qsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/qsort.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/qsort_ractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/samples/qsort_ractor.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/buffer.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/buffer.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/enum.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/enum.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/function.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/function.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/library.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/library.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/native_type.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/native_type.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/pointer.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/pointer.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/struct.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/struct.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/type.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.17.0/sig/ffi/type.rbs -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/.rubocop.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/bin/console -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/bin/setup -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/lib/fourflusher/version.rb: -------------------------------------------------------------------------------- 1 | module Fourflusher 2 | VERSION = '2.3.1' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/CHANGELOG -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/README.markdown -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/bin/fuzzy_match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/bin/fuzzy_match -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/highlevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/highlevel.png -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/lib/fuzzy_match/version.rb: -------------------------------------------------------------------------------- 1 | class FuzzyMatch 2 | VERSION = '2.0.4' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/spec/foo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/spec/foo.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/.rubocop.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/bin/console -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/bin/setup -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/gh_inspector-1.1.3/lib/gh_inspector/version.rb: -------------------------------------------------------------------------------- 1 | module GhInspector 2 | VERSION = '1.1.3'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/bin/httpclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/bin/httpclient -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/bin/jsonclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/bin/jsonclient -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/hexdump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/hexdump.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/http-access2/cookie.rb: -------------------------------------------------------------------------------- 1 | require 'httpclient/cookie' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/httpclient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/httpclient.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/httpclient/version.rb: -------------------------------------------------------------------------------- 1 | class HTTPClient 2 | VERSION = '2.8.3' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/jsonclient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/jsonclient.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/async.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/auth.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/cookie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/cookie.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/dav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/dav.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/howto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/howto.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/stream.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/thread.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/wcat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/wcat.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/ca-chain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/ca-chain.pem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/ca.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/ca.cert -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/client.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/client.cert -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/client.key -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/helper.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/htdigest: -------------------------------------------------------------------------------- 1 | admin:auth:4302fe65caa32f27721949149ccd3083 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/htpasswd: -------------------------------------------------------------------------------- 1 | admin:Qg266hq/YYKe2 2 | guest:gbPc4vPCH.h12 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/runner.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/server.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/server.cert -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/server.key -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/sslsvr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/sslsvr.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/subca.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/subca.cert -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/test_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/test_auth.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/test_ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/test_ssl.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/backend.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/config.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/exceptions.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/gettext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/gettext.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/locale.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/locale/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/locale/tag.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/middleware.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/tests.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/tests/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/tests/link.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/utils.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.14.5/lib/i18n/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module I18n 4 | VERSION = "1.14.5" 5 | end 6 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/CHANGES.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/ext/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/ext/json/Makefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/ext/json/ext/generator/.sitearchdir.-.json.-.ext.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/ext/json/ext/generator/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | $defs << "-DJSON_GENERATOR" 4 | create_makefile 'json/ext/generator' 5 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/ext/json/ext/parser/.sitearchdir.-.json.-.ext.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/ext/json/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | create_makefile('json') 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/json.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/json.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/complex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/complex.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/core.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/date.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/ostruct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/ostruct.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/range.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/regexp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/regexp.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/set.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/struct.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/add/time.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/common.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/ext.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/pure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/pure.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.7.2/lib/json/version.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/.autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/.autotest -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/History.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/History.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/Manifest.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/README.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/lib/minitest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.25.1/lib/minitest.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/ARCHITECTURE.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/lib/mutex_m.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/lib/mutex_m.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/mutex_m.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/mutex_m-0.2.0/mutex_m.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.rubocop.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.rubocop_todo.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/bin/console -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/bin/setup -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Nanaimo 4 | VERSION = '0.3.0'.freeze 5 | end 6 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/nanaimo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/nanaimo.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest/error.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest/request.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/lib/rest/response.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/support/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nap-1.1.0/support/cacert.pem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/LICENSE.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/Readme.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/changelog.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/login.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/login.netrc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/sample.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/sample.netrc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/lib/netrc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/lib/netrc.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/test/test_lex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/test/test_lex.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/test/test_netrc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/test/test_netrc.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/test/test_parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/test/test_parse.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/bin/console -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/bin/setup -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/.sitearchdir.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/Makefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/extconf.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/nkf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/nkf.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/nkf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/ext/nkf/nkf.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/lib/kconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/lib/kconv.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/lib/nkf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/lib/nkf.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/nkf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/nkf-0.2.0/nkf.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/.yardopts: -------------------------------------------------------------------------------- 1 | --title 'Ruby Public Suffix API Documentation' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/SECURITY.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/bin/console -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/.empty -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/NEWS.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "rexml/document" 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/cdata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/cdata.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/child.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/entity.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/node.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/output.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/parent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/parent.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/rexml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/rexml.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/source.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/text.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/xpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.3.7/lib/rexml/xpath.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/.yardopts -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/.rspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/Guardfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/UPGRADE.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/lib/rack/typhoeus.rb: -------------------------------------------------------------------------------- 1 | require "rack/typhoeus/middleware/params_decoder" 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/lib/typhoeus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/lib/typhoeus.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/perf/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/perf/profile.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/typhoeus.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.1/typhoeus.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/.yardopts -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/CHANGES.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.25.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.25.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.25.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.25.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.25.0/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.25.0/bin/xcodeproj -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/atomos-0.1.3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/atomos-0.1.3.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/base64-0.2.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/base64-0.2.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/claide-1.1.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/claide-1.1.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/drb-2.2.1.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/drb-2.2.1.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/escape-0.0.4.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/escape-0.0.4.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/ethon-0.16.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/ethon-0.16.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/ffi-1.17.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/ffi-1.17.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/i18n-1.14.5.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/i18n-1.14.5.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/json-2.7.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/json-2.7.2.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/mutex_m-0.2.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/mutex_m-0.2.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/nanaimo-0.3.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/nanaimo-0.3.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/nap-1.1.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/nap-1.1.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/netrc-0.11.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/netrc-0.11.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/nkf-0.2.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/nkf-0.2.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/rexml-3.3.7.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/rexml-3.3.7.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/tzinfo-2.0.6.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-typescript-zustand-boilerplate/HEAD/vendor/bundle/ruby/2.7.0/specifications/tzinfo-2.0.6.gemspec --------------------------------------------------------------------------------