├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .prettierignore ├── .prettierrc ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── README.md ├── ToDo.md ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── instaclone │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── instaclone │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── 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 │ │ └── release │ │ └── java │ │ └── com │ │ └── instaclone │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── db_dump.sql ├── example.env ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── instaclone.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── instaclone.xcscheme ├── instaclone.xcworkspace │ └── contents.xcworkspacedata ├── instaclone │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── instacloneTests │ ├── Info.plist │ └── instacloneTests.m ├── metro.config.js ├── package.json ├── src ├── api │ └── index.ts ├── app │ ├── App.tsx │ ├── Components │ │ ├── Error │ │ │ └── index.tsx │ │ ├── Messages │ │ │ ├── ImageMessage.tsx │ │ │ ├── PostMessage.tsx │ │ │ ├── StoryMessage.tsx │ │ │ └── TextMessage.tsx │ │ ├── Post │ │ │ ├── PostMenuModal.tsx │ │ │ ├── ShareModal.tsx │ │ │ └── index.tsx │ │ ├── Story │ │ │ └── index.tsx │ │ └── UserAvatar │ │ │ └── index.tsx │ ├── Screens │ │ ├── Activity │ │ │ └── index.tsx │ │ ├── Comments │ │ │ ├── CommentItem.tsx │ │ │ └── index.tsx │ │ ├── Explore │ │ │ └── index.tsx │ │ ├── Home │ │ │ └── index.tsx │ │ ├── Likes │ │ │ └── index.tsx │ │ ├── Login │ │ │ ├── Signup │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Messages │ │ │ ├── ChatList.tsx │ │ │ ├── Messages.tsx │ │ │ ├── NewChat.tsx │ │ │ └── NewChatItem.tsx │ │ ├── NewPost │ │ │ └── index.tsx │ │ ├── NewStory │ │ │ └── index.tsx │ │ ├── Post │ │ │ ├── EditPost.tsx │ │ │ └── index.tsx │ │ ├── PostList │ │ │ └── index.tsx │ │ ├── PostMenu │ │ │ ├── Share │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Profile │ │ │ ├── Edit │ │ │ │ └── index.tsx │ │ │ ├── Followers.tsx │ │ │ ├── Following.tsx │ │ │ ├── Settings │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Splash │ │ │ └── index.tsx │ │ └── StoryView │ │ │ ├── OwnStorySheet.tsx │ │ │ └── index.tsx │ ├── navigation │ │ ├── ActivityStack.tsx │ │ ├── BottomTabNavigator.tsx │ │ ├── ExploreStack.tsx │ │ ├── HomeStack.tsx │ │ ├── MainSwipeNavigation.tsx │ │ ├── MessageStack.tsx │ │ ├── PostStack.tsx │ │ ├── ProfileStack.tsx │ │ ├── SignInNavigation.tsx │ │ ├── SignedInStackNavigator.tsx │ │ └── index.tsx │ ├── types.ts │ ├── types │ │ ├── navigation │ │ │ ├── ActivityStack.ts │ │ │ ├── BottomTab.ts │ │ │ ├── ExploreStack.ts │ │ │ ├── HomeStack.ts │ │ │ ├── MessagesStack.ts │ │ │ ├── PostStack.ts │ │ │ ├── ProfileStack.ts │ │ │ ├── RootStack.ts │ │ │ ├── SignInStack.ts │ │ │ └── SwipeTab.ts │ │ └── supabase.ts │ └── utils │ │ ├── Constants.ts │ │ ├── appContext.tsx │ │ ├── queryClient.ts │ │ ├── supabaseClient.ts │ │ ├── uploadToSupabase.ts │ │ └── utils.ts ├── assets │ └── images │ │ └── account_circle.png └── hooks │ ├── useImageUpload.tsx │ └── useIsAppForeground.tsx ├── tsconfig.json ├── vendor └── bundle │ └── ruby │ └── 2.7.0 │ ├── bin │ ├── fuzzy_match │ ├── httpclient │ ├── pod │ ├── sandbox-pod │ └── xcodeproj │ ├── cache │ ├── CFPropertyList-3.0.6.gem │ ├── activesupport-7.0.4.2.gem │ ├── addressable-2.8.1.gem │ ├── algoliasearch-1.27.5.gem │ ├── atomos-0.1.3.gem │ ├── claide-1.1.0.gem │ ├── cocoapods-1.12.0.gem │ ├── cocoapods-core-1.12.0.gem │ ├── cocoapods-deintegrate-1.0.5.gem │ ├── cocoapods-downloader-1.6.3.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.2.2.gem │ ├── escape-0.0.4.gem │ ├── ethon-0.16.0.gem │ ├── ffi-1.15.5.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.12.0.gem │ ├── json-2.6.3.gem │ ├── minitest-5.18.0.gem │ ├── molinillo-0.8.0.gem │ ├── nanaimo-0.3.0.gem │ ├── nap-1.1.0.gem │ ├── netrc-0.11.0.gem │ ├── public_suffix-4.0.7.gem │ ├── rexml-3.2.5.gem │ ├── ruby-macho-2.5.1.gem │ ├── typhoeus-1.4.0.gem │ ├── tzinfo-2.0.6.gem │ └── xcodeproj-1.22.0.gem │ ├── extensions │ └── arm64-darwin-22 │ │ └── 2.7.0 │ │ ├── ffi-1.15.5 │ │ ├── ffi_c.bundle │ │ ├── gem.build_complete │ │ ├── gem_make.out │ │ └── mkmf.log │ │ └── json-2.6.3 │ │ ├── gem.build_complete │ │ ├── gem_make.out │ │ ├── json │ │ └── ext │ │ │ ├── generator.bundle │ │ │ └── parser.bundle │ │ └── mkmf.log │ ├── gems │ ├── CFPropertyList-3.0.6 │ │ ├── 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.0.4.2 │ │ ├── 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 │ │ │ ├── builder.rb │ │ │ ├── cache.rb │ │ │ ├── cache │ │ │ ├── file_store.rb │ │ │ ├── mem_cache_store.rb │ │ │ ├── memory_store.rb │ │ │ ├── null_store.rb │ │ │ ├── redis_cache_store.rb │ │ │ └── strategy │ │ │ │ ├── local_cache.rb │ │ │ │ └── local_cache_middleware.rb │ │ │ ├── callbacks.rb │ │ │ ├── code_generator.rb │ │ │ ├── concern.rb │ │ │ ├── concurrency │ │ │ ├── load_interlock_aware_monitor.rb │ │ │ └── share_lock.rb │ │ │ ├── configurable.rb │ │ │ ├── configuration_file.rb │ │ │ ├── core_ext.rb │ │ │ ├── core_ext │ │ │ ├── array.rb │ │ │ ├── array │ │ │ │ ├── access.rb │ │ │ │ ├── conversions.rb │ │ │ │ ├── deprecated_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 │ │ │ │ ├── deprecated_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 │ │ │ │ └── deprecated_conversions.rb │ │ │ ├── digest.rb │ │ │ ├── digest │ │ │ │ └── uuid.rb │ │ │ ├── enumerable.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 │ │ │ │ ├── deprecated_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_options.rb │ │ │ ├── pathname.rb │ │ │ ├── pathname │ │ │ │ └── existence.rb │ │ │ ├── range.rb │ │ │ ├── range │ │ │ │ ├── compare_range.rb │ │ │ │ ├── conversions.rb │ │ │ │ ├── deprecated_conversions.rb │ │ │ │ ├── each.rb │ │ │ │ ├── include_time_with_zone.rb │ │ │ │ └── overlaps.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 │ │ │ ├── time.rb │ │ │ ├── time │ │ │ │ ├── acts_like.rb │ │ │ │ ├── calculations.rb │ │ │ │ ├── compatibility.rb │ │ │ │ ├── conversions.rb │ │ │ │ ├── deprecated_conversions.rb │ │ │ │ └── zones.rb │ │ │ └── uri.rb │ │ │ ├── current_attributes.rb │ │ │ ├── current_attributes │ │ │ └── test_helper.rb │ │ │ ├── dependencies.rb │ │ │ ├── dependencies │ │ │ ├── autoload.rb │ │ │ ├── interlock.rb │ │ │ └── require_dependency.rb │ │ │ ├── deprecation.rb │ │ │ ├── deprecation │ │ │ ├── behaviors.rb │ │ │ ├── constant_accessor.rb │ │ │ ├── disallowed.rb │ │ │ ├── instance_delegator.rb │ │ │ ├── method_wrappers.rb │ │ │ ├── proxy_wrappers.rb │ │ │ └── reporting.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 │ │ │ ├── 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_verifier.rb │ │ │ ├── messages │ │ │ ├── metadata.rb │ │ │ ├── rotation_configuration.rb │ │ │ └── rotator.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 │ │ │ ├── per_thread_registry.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 │ │ │ ├── tagged_logging.rb │ │ │ ├── test_case.rb │ │ │ ├── testing │ │ │ ├── assertions.rb │ │ │ ├── autorun.rb │ │ │ ├── constant_lookup.rb │ │ │ ├── declarative.rb │ │ │ ├── deprecation.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 │ │ │ ├── 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.1 │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Rakefile │ │ ├── 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 │ ├── 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.12.0 │ │ ├── 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.12.0 │ │ ├── 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-1.6.3 │ │ ├── LICENSE │ │ ├── README.markdown │ │ └── lib │ │ │ ├── cocoapods-downloader.rb │ │ │ └── cocoapods-downloader │ │ │ ├── api.rb │ │ │ ├── api_exposable.rb │ │ │ ├── base.rb │ │ │ ├── bazaar.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.2.2 │ │ ├── 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 │ │ │ │ ├── atomic_reference_map_backend.rb │ │ │ │ ├── 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 │ │ │ │ ├── cheap_lockable.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 │ ├── 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.15.5 │ │ ├── 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.bsd.mk │ │ │ │ ├── libffi.darwin.mk │ │ │ │ ├── libffi.gnu.mk │ │ │ │ ├── libffi.mk │ │ │ │ ├── libffi.vc.mk │ │ │ │ ├── libffi.vc64.mk │ │ │ │ ├── libffi │ │ │ │ ├── .appveyor.yml │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ │ └── issue_template.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── .travis │ │ │ │ │ ├── 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 │ │ │ │ │ ├── or1k-sim.exp │ │ │ │ │ ├── powerpc-eabisim.exp │ │ │ │ │ ├── site.exp │ │ │ │ │ └── wine-sim.exp │ │ │ │ ├── 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 │ │ │ │ ├── libffi.map.in │ │ │ │ ├── libffi.pc.in │ │ │ │ ├── libffi.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── 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_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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ │ ├── hpux32.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── types.c │ │ │ │ │ ├── vax │ │ │ │ │ │ ├── elfbsd.S │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── call.exp │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── uninitialized.c │ │ │ │ │ ├── va_1.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_uchar_va.c │ │ │ │ │ ├── cls_uint.c │ │ │ │ │ ├── cls_uint_va.c │ │ │ │ │ ├── cls_ulong_va.c │ │ │ │ │ ├── cls_ulonglong.c │ │ │ │ │ ├── cls_ushort.c │ │ │ │ │ ├── cls_ushort_va.c │ │ │ │ │ ├── err_bad_abi.c │ │ │ │ │ ├── ffitest.h │ │ │ │ │ ├── huge_struct.c │ │ │ │ │ ├── nested_struct.c │ │ │ │ │ ├── nested_struct1.c │ │ │ │ │ ├── nested_struct10.c │ │ │ │ │ ├── nested_struct11.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 │ │ │ │ │ ├── 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 │ │ │ │ ├── data_converter.rb │ │ │ │ ├── enum.rb │ │ │ │ ├── errno.rb │ │ │ │ ├── ffi.rb │ │ │ │ ├── io.rb │ │ │ │ ├── library.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 │ │ │ │ │ ├── arm-freebsd │ │ │ │ │ │ └── types.conf │ │ │ │ │ ├── arm-freebsd12 │ │ │ │ │ │ └── types.conf │ │ │ │ │ ├── arm-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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── sparc64-linux │ │ │ │ │ │ └── types.conf │ │ │ │ │ ├── sparcv9-openbsd │ │ │ │ │ │ └── types.conf │ │ │ │ │ ├── sparcv9-solaris │ │ │ │ │ │ └── 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 │ │ │ ├── inotify.rb │ │ │ ├── pty.rb │ │ │ └── qsort.rb │ ├── 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.12.0 │ │ ├── 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.6.3 │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── 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.18.0 │ │ ├── .autotest │ │ ├── History.rdoc │ │ ├── Manifest.txt │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── design_rationale.rb │ │ ├── lib │ │ │ ├── hoe │ │ │ │ └── minitest.rb │ │ │ ├── minitest.rb │ │ │ └── minitest │ │ │ │ ├── assertions.rb │ │ │ │ ├── autorun.rb │ │ │ │ ├── benchmark.rb │ │ │ │ ├── expectations.rb │ │ │ │ ├── hell.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 │ ├── 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 │ ├── 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.2.5 │ │ ├── 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 │ │ └── 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.0 │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .travis.yml │ │ ├── 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.22.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_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.6.gemspec │ ├── activesupport-7.0.4.2.gemspec │ ├── addressable-2.8.1.gemspec │ ├── algoliasearch-1.27.5.gemspec │ ├── atomos-0.1.3.gemspec │ ├── claide-1.1.0.gemspec │ ├── cocoapods-1.12.0.gemspec │ ├── cocoapods-core-1.12.0.gemspec │ ├── cocoapods-deintegrate-1.0.5.gemspec │ ├── cocoapods-downloader-1.6.3.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.2.2.gemspec │ ├── escape-0.0.4.gemspec │ ├── ethon-0.16.0.gemspec │ ├── ffi-1.15.5.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.12.0.gemspec │ ├── json-2.6.3.gemspec │ ├── minitest-5.18.0.gemspec │ ├── molinillo-0.8.0.gemspec │ ├── nanaimo-0.3.0.gemspec │ ├── nap-1.1.0.gemspec │ ├── netrc-0.11.0.gemspec │ ├── public_suffix-4.0.7.gemspec │ ├── rexml-3.2.5.gemspec │ ├── ruby-macho-2.5.1.gemspec │ ├── typhoeus-1.4.0.gemspec │ ├── tzinfo-2.0.6.gemspec │ └── xcodeproj-1.22.0.gemspec └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn run type-check 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/.prettierrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/README.md -------------------------------------------------------------------------------- /ToDo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ToDo.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/instaclone/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/src/debug/java/com/instaclone/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/instaclone/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/src/main/java/com/instaclone/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/instaclone/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/src/main/java/com/instaclone/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/babel.config.js -------------------------------------------------------------------------------- /db_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/db_dump.sql -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/example.env -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/instaclone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/instaclone.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/instaclone/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone/AppDelegate.h -------------------------------------------------------------------------------- /ios/instaclone/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone/AppDelegate.mm -------------------------------------------------------------------------------- /ios/instaclone/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/instaclone/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/instaclone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone/Info.plist -------------------------------------------------------------------------------- /ios/instaclone/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/instaclone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instaclone/main.m -------------------------------------------------------------------------------- /ios/instacloneTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instacloneTests/Info.plist -------------------------------------------------------------------------------- /ios/instacloneTests/instacloneTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/ios/instacloneTests/instacloneTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/package.json -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/App.tsx -------------------------------------------------------------------------------- /src/app/Components/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Error/index.tsx -------------------------------------------------------------------------------- /src/app/Components/Messages/ImageMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Messages/ImageMessage.tsx -------------------------------------------------------------------------------- /src/app/Components/Messages/PostMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Messages/PostMessage.tsx -------------------------------------------------------------------------------- /src/app/Components/Messages/StoryMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Messages/StoryMessage.tsx -------------------------------------------------------------------------------- /src/app/Components/Messages/TextMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Messages/TextMessage.tsx -------------------------------------------------------------------------------- /src/app/Components/Post/PostMenuModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Post/PostMenuModal.tsx -------------------------------------------------------------------------------- /src/app/Components/Post/ShareModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Post/ShareModal.tsx -------------------------------------------------------------------------------- /src/app/Components/Post/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Post/index.tsx -------------------------------------------------------------------------------- /src/app/Components/Story/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/Story/index.tsx -------------------------------------------------------------------------------- /src/app/Components/UserAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Components/UserAvatar/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Activity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Activity/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Comments/CommentItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Comments/CommentItem.tsx -------------------------------------------------------------------------------- /src/app/Screens/Comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Comments/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Explore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Explore/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Home/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Likes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Likes/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Login/Signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Login/Signup/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Login/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Messages/ChatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Messages/ChatList.tsx -------------------------------------------------------------------------------- /src/app/Screens/Messages/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Messages/Messages.tsx -------------------------------------------------------------------------------- /src/app/Screens/Messages/NewChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Messages/NewChat.tsx -------------------------------------------------------------------------------- /src/app/Screens/Messages/NewChatItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Messages/NewChatItem.tsx -------------------------------------------------------------------------------- /src/app/Screens/NewPost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/NewPost/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/NewStory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/NewStory/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Post/EditPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Post/EditPost.tsx -------------------------------------------------------------------------------- /src/app/Screens/Post/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Post/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/PostList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/PostList/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/PostMenu/Share/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/PostMenu/Share/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/PostMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/PostMenu/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Profile/Edit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Profile/Edit/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Profile/Followers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Profile/Followers.tsx -------------------------------------------------------------------------------- /src/app/Screens/Profile/Following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Profile/Following.tsx -------------------------------------------------------------------------------- /src/app/Screens/Profile/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Profile/Settings/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Profile/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/Splash/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/Splash/index.tsx -------------------------------------------------------------------------------- /src/app/Screens/StoryView/OwnStorySheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/StoryView/OwnStorySheet.tsx -------------------------------------------------------------------------------- /src/app/Screens/StoryView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/Screens/StoryView/index.tsx -------------------------------------------------------------------------------- /src/app/navigation/ActivityStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/ActivityStack.tsx -------------------------------------------------------------------------------- /src/app/navigation/BottomTabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/BottomTabNavigator.tsx -------------------------------------------------------------------------------- /src/app/navigation/ExploreStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/ExploreStack.tsx -------------------------------------------------------------------------------- /src/app/navigation/HomeStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/HomeStack.tsx -------------------------------------------------------------------------------- /src/app/navigation/MainSwipeNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/MainSwipeNavigation.tsx -------------------------------------------------------------------------------- /src/app/navigation/MessageStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/MessageStack.tsx -------------------------------------------------------------------------------- /src/app/navigation/PostStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/PostStack.tsx -------------------------------------------------------------------------------- /src/app/navigation/ProfileStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/ProfileStack.tsx -------------------------------------------------------------------------------- /src/app/navigation/SignInNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/SignInNavigation.tsx -------------------------------------------------------------------------------- /src/app/navigation/SignedInStackNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/SignedInStackNavigator.tsx -------------------------------------------------------------------------------- /src/app/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/navigation/index.tsx -------------------------------------------------------------------------------- /src/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types.ts -------------------------------------------------------------------------------- /src/app/types/navigation/ActivityStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/ActivityStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/BottomTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/BottomTab.ts -------------------------------------------------------------------------------- /src/app/types/navigation/ExploreStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/ExploreStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/HomeStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/HomeStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/MessagesStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/MessagesStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/PostStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/PostStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/ProfileStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/ProfileStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/RootStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/RootStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/SignInStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/SignInStack.ts -------------------------------------------------------------------------------- /src/app/types/navigation/SwipeTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/navigation/SwipeTab.ts -------------------------------------------------------------------------------- /src/app/types/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/types/supabase.ts -------------------------------------------------------------------------------- /src/app/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/utils/Constants.ts -------------------------------------------------------------------------------- /src/app/utils/appContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/utils/appContext.tsx -------------------------------------------------------------------------------- /src/app/utils/queryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/utils/queryClient.ts -------------------------------------------------------------------------------- /src/app/utils/supabaseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/utils/supabaseClient.ts -------------------------------------------------------------------------------- /src/app/utils/uploadToSupabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/utils/uploadToSupabase.ts -------------------------------------------------------------------------------- /src/app/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/app/utils/utils.ts -------------------------------------------------------------------------------- /src/assets/images/account_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/assets/images/account_circle.png -------------------------------------------------------------------------------- /src/hooks/useImageUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/hooks/useImageUpload.tsx -------------------------------------------------------------------------------- /src/hooks/useIsAppForeground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/src/hooks/useIsAppForeground.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/fuzzy_match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/bin/fuzzy_match -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/httpclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/bin/httpclient -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/bin/pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/sandbox-pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/bin/sandbox-pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/bin/xcodeproj -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/CFPropertyList-3.0.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/CFPropertyList-3.0.6.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/activesupport-7.0.4.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/activesupport-7.0.4.2.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/addressable-2.8.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/addressable-2.8.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/algoliasearch-1.27.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/atomos-0.1.3.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/claide-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/claide-1.1.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-1.12.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-1.12.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-core-1.12.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-core-1.12.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-deintegrate-1.0.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-deintegrate-1.0.5.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-downloader-1.6.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/cocoapods-downloader-1.6.3.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/cocoapods-plugins-1.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/colored2-3.1.2.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/concurrent-ruby-1.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/concurrent-ruby-1.2.2.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/escape-0.0.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/ethon-0.16.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/ffi-1.15.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/ffi-1.15.5.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/fourflusher-2.3.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/httpclient-2.8.3.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/i18n-1.12.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/i18n-1.12.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/json-2.6.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/json-2.6.3.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/minitest-5.18.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/minitest-5.18.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/molinillo-0.8.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/molinillo-0.8.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/nanaimo-0.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/netrc-0.11.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/public_suffix-4.0.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/public_suffix-4.0.7.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/rexml-3.2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/rexml-3.2.5.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/ruby-macho-2.5.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/ruby-macho-2.5.1.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/typhoeus-1.4.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/typhoeus-1.4.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/tzinfo-2.0.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/tzinfo-2.0.6.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/cache/xcodeproj-1.22.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/cache/xcodeproj-1.22.0.gem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/extensions/arm64-darwin-22/2.7.0/ffi-1.15.5/gem.build_complete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/extensions/arm64-darwin-22/2.7.0/json-2.6.3/gem.build_complete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/README.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/CFPropertyList-3.0.6/THANKS -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/activesupport-7.0.4.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/activesupport-7.0.4.2/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/activesupport-7.0.4.2/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/activesupport-7.0.4.2/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/activesupport-7.0.4.2/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/activesupport-7.0.4.2/README.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/data/unicode.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/data/unicode.data -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/lib/addressable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/lib/addressable.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/clobber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/clobber.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/gem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/gem.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/git.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/git.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/metrics.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/metrics.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/profile.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/profile.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/rspec.rake -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/tasks/yard.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/addressable-2.8.1/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/atomos-0.1.3/lib/atomos/version.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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_cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.rubocop_cocoapods.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/argument.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/argument.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/claide-1.1.0/lib/claide/argv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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.12.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/bin/pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/bin/pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/bin/sandbox-pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/bin/sandbox-pod -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/lib/cocoapods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/lib/cocoapods.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-1.12.0/lib/cocoapods/core_overrides.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods/sources_manager' 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.12.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.12.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.12.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-deintegrate-1.0.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-deintegrate-1.0.5/LICENSE -------------------------------------------------------------------------------- /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-1.6.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-downloader-1.6.3/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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-plugins-1.0.0/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-plugins-1.0.0/plugins.json -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/Gemfile.lock -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/cocoapods-search-1.0.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/lib/colored2/codes.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/colored2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/spec/colored2_spec.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/colored2-3.1.2/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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.2.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/concurrent-ruby-1.2.2/lib/concurrent-ruby/concurrent/version.rb: -------------------------------------------------------------------------------- 1 | module Concurrent 2 | VERSION = '1.2.2' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/escape-0.0.4/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/easy/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/easy/form.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/easy/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/easy/http.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/easy/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/easy/util.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/lib/ethon/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/profile/memory_leaks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/profile/memory_leaks.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/ethon/curl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/ethon/curl_spec.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/ethon/easy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/ethon/easy_spec.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/ethon/libc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/ethon/libc_spec.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/support/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ethon-0.16.0/spec/support/server.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/COPYING -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/LICENSE.SPECS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/LICENSE.SPECS -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/.sitearchdir.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Call.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Call.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Call.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Call.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Function.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Function.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Function.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Function.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LastError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LastError.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LastError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LastError.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LastError.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LastError.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Makefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Platform.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Platform.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Platform.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Platform.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Struct.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Struct.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Struct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Struct.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Thread.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Thread.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Thread.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Type.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Type.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Type.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Type.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Types.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Types.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Types.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Types.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/compat.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/extconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/extconf.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/extconf.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ffi.c -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ffi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ffi.o -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ffi_c.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/ffi_c.bundle -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.bsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.bsd.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.gnu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.gnu.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.vc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.vc.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.vc64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi.vc64.mk -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec autoreconf -v -i 3 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/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.15.5/ext/ffi_c/libffi/msvcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvcc.sh -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/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.15.5/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.15.5/ext/ffi_c/rbffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/rbffi.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/rbffi_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ext/ffi_c/rbffi_endian.h -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ffi.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/ffi.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/autopointer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/autopointer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/buffer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/callback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/callback.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/data_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/data_converter.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/enum.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/errno.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/errno.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/ffi.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/io.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/library.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/library.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/managedstruct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/managedstruct.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/memorypointer.rb: -------------------------------------------------------------------------------- 1 | # This class is now implemented in C 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/platform.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/pointer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/pointer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/struct.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/struct_layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/struct_layout.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/types.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/union.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/variadic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/variadic.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi/version.rb: -------------------------------------------------------------------------------- 1 | module FFI 2 | VERSION = '1.15.5' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi_c.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/lib/ffi_c.bundle -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/rakelib/ffi_gem_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/rakelib/ffi_gem_helper.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/getlogin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/getlogin.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/getpid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/getpid.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/gettimeofday.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/gettimeofday.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/hello.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/inotify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/inotify.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/pty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/pty.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/qsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ffi-1.15.5/samples/qsort.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/fourflusher-2.3.1/lib/fourflusher.rb -------------------------------------------------------------------------------- /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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/highlevel.graffle -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/highlevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/lib/fuzzy_match.rb -------------------------------------------------------------------------------- /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/cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/spec/cache_spec.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/fuzzy_match-2.0.4/spec/foo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/http-access2.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/NiketanG/instaclone/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/NiketanG/instaclone/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/lib/oauthclient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/oauthclient.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/ssl/0key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/ssl/0key.pem -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/sample/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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_cookie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/test_cookie.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/test/test_ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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.12.0/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/backend.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/backend/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/backend/base.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/config.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/gettext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/gettext.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/locale.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/locale/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/locale/tag.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/middleware.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/basics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/basics.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/link.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/lookup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/lookup.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/procs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/tests/procs.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/utils.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/i18n-1.12.0/lib/i18n/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module I18n 4 | VERSION = "1.12.0" 5 | end 6 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/CHANGES.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/VERSION: -------------------------------------------------------------------------------- 1 | 2.6.3 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json/Makefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json/ext/generator/.sitearchdir.-.json.-.ext.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/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.6.3/ext/json/ext/parser/.sitearchdir.-.json.-.ext.time: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | create_makefile('json') 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/json.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/json.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/complex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/complex.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/core.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/date.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/date_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/date_time.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/exception.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/ostruct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/ostruct.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/range.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/rational.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/rational.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/regexp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/regexp.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/set.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/struct.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/symbol.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/time.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/common.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/ext.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/pure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/pure.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/pure/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/pure/parser.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/version.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/.autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/.autotest -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/History.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/History.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/Manifest.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/README.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/design_rationale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/design_rationale.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/hoe/minitest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/hoe/minitest.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/hell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/hell.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/mock.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/spec.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/test.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/minitest-5.18.0/lib/minitest/unit.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/lib/molinillo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/molinillo-0.8.0/lib/molinillo.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/object.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/plist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/plist.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/reader.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode.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/lib/nanaimo/writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/writer.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/nanaimo-0.3.0/nanaimo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/default_only.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/default_only.netrc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/login.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/newlineless.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/newlineless.netrc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/password.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/password.netrc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/permissive.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/permissive.netrc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/sample.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/data/sample_multi.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/data/sample_multi.netrc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/lib/netrc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/netrc-0.11.0/test/test_parse.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/.rubocop.yml -------------------------------------------------------------------------------- /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/2.0-Upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/2.0-Upgrade.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/data/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/data/list.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/.empty -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/psl_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/psl_test.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/public_suffix-4.0.7/test/tests.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/NEWS.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/doc/rexml/context.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/doc/rexml/context.rdoc -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "rexml/document" 4 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/attribute.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/cdata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/cdata.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/child.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/comment.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/doctype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/doctype.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/document.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/element.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/encoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/encoding.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/entity.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/functions.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/instruction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/instruction.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/light/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/light/node.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/namespace.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/node.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/output.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/parent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/parent.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/rexml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/rexml.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/security.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/source.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/text.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/xpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/rexml-3.2.5/lib/rexml/xpath.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho/tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho/tools.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho/utils.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/ruby-macho-2.5.1/lib/macho/view.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/.gitignore -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/.rspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/.travis.yml -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Gemfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Guardfile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/Rakefile -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/UPGRADE.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/rack/typhoeus.rb: -------------------------------------------------------------------------------- 1 | require "rack/typhoeus/middleware/params_decoder" 2 | -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/hydra.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/pool.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/perf/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/perf/profile.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/perf/vs_nethttp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/perf/vs_nethttp.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/spec/typhoeus_spec.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/typhoeus.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/typhoeus.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/country.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/country.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/format1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/format1.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/format2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/format2.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/timestamp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/timestamp.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/timezone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/timezone.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.6/lib/tzinfo/version.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/LICENSE -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/README.md -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/bin/xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/bin/xcodeproj -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/lib/xcodeproj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/gems/xcodeproj-1.22.0/lib/xcodeproj.rb -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/atomos-0.1.3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/atomos-0.1.3.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/claide-1.1.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/claide-1.1.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/cocoapods-1.12.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/cocoapods-1.12.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/colored2-3.1.2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/colored2-3.1.2.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/escape-0.0.4.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/ethon-0.16.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/ffi-1.15.5.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/ffi-1.15.5.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/httpclient-2.8.3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/httpclient-2.8.3.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/i18n-1.12.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/i18n-1.12.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/json-2.6.3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/json-2.6.3.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/minitest-5.18.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/minitest-5.18.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/molinillo-0.8.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/molinillo-0.8.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/nanaimo-0.3.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/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/NiketanG/instaclone/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/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/netrc-0.11.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/rexml-3.2.5.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/rexml-3.2.5.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/ruby-macho-2.5.1.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/ruby-macho-2.5.1.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/typhoeus-1.4.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/typhoeus-1.4.0.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/tzinfo-2.0.6.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/tzinfo-2.0.6.gemspec -------------------------------------------------------------------------------- /vendor/bundle/ruby/2.7.0/specifications/xcodeproj-1.22.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/vendor/bundle/ruby/2.7.0/specifications/xcodeproj-1.22.0.gemspec -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiketanG/instaclone/HEAD/yarn.lock --------------------------------------------------------------------------------