├── .gitignore ├── GemFile ├── GemFile.lock ├── LICENSE ├── lib ├── choose_branch.rb ├── encode_url.rb ├── fetch_branches.rb ├── fetch_file_content.rb ├── filter_extension.rb ├── generate_file_url.rb ├── generate_unique_folder_name.rb ├── parse_directory.rb ├── print_tree.rb ├── run_scraper.rb └── save_tree.rb ├── main.rb └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | projectResults/ 2 | -------------------------------------------------------------------------------- /GemFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/GemFile -------------------------------------------------------------------------------- /GemFile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/GemFile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/LICENSE -------------------------------------------------------------------------------- /lib/choose_branch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/choose_branch.rb -------------------------------------------------------------------------------- /lib/encode_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/encode_url.rb -------------------------------------------------------------------------------- /lib/fetch_branches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/fetch_branches.rb -------------------------------------------------------------------------------- /lib/fetch_file_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/fetch_file_content.rb -------------------------------------------------------------------------------- /lib/filter_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/filter_extension.rb -------------------------------------------------------------------------------- /lib/generate_file_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/generate_file_url.rb -------------------------------------------------------------------------------- /lib/generate_unique_folder_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/generate_unique_folder_name.rb -------------------------------------------------------------------------------- /lib/parse_directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/parse_directory.rb -------------------------------------------------------------------------------- /lib/print_tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/print_tree.rb -------------------------------------------------------------------------------- /lib/run_scraper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/run_scraper.rb -------------------------------------------------------------------------------- /lib/save_tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/lib/save_tree.rb -------------------------------------------------------------------------------- /main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/main.rb -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gui25/CodeHarvest/HEAD/readme.md --------------------------------------------------------------------------------