├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── exe └── tansaku ├── lib ├── tansaku.rb └── tansaku │ ├── cli.rb │ ├── crawler.rb │ ├── internet.rb │ ├── lists │ ├── admin.txt │ ├── backup.txt │ ├── database.txt │ ├── etc.txt │ ├── log.txt │ └── none.txt │ ├── monkey_patch.rb │ ├── path.rb │ └── version.rb ├── renovate.json ├── spec ├── cli_spec.rb ├── crawler_spec.rb ├── fixtures │ └── sample.txt ├── path_spec.rb ├── spec_helper.rb ├── support │ ├── helpers │ │ └── helper.rb │ └── shared_contexts │ │ └── http_server_shared_context.rb └── tansaku_spec.rb └── tansaku.gemspec /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/bin/setup -------------------------------------------------------------------------------- /exe/tansaku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/exe/tansaku -------------------------------------------------------------------------------- /lib/tansaku.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku.rb -------------------------------------------------------------------------------- /lib/tansaku/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/cli.rb -------------------------------------------------------------------------------- /lib/tansaku/crawler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/crawler.rb -------------------------------------------------------------------------------- /lib/tansaku/internet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/internet.rb -------------------------------------------------------------------------------- /lib/tansaku/lists/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/lists/admin.txt -------------------------------------------------------------------------------- /lib/tansaku/lists/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/lists/backup.txt -------------------------------------------------------------------------------- /lib/tansaku/lists/database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/lists/database.txt -------------------------------------------------------------------------------- /lib/tansaku/lists/etc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/lists/etc.txt -------------------------------------------------------------------------------- /lib/tansaku/lists/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/lists/log.txt -------------------------------------------------------------------------------- /lib/tansaku/lists/none.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tansaku/monkey_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/monkey_patch.rb -------------------------------------------------------------------------------- /lib/tansaku/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/lib/tansaku/path.rb -------------------------------------------------------------------------------- /lib/tansaku/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Tansaku 4 | VERSION = "1.4.0" 5 | end 6 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/renovate.json -------------------------------------------------------------------------------- /spec/cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/cli_spec.rb -------------------------------------------------------------------------------- /spec/crawler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/crawler_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/fixtures/sample.txt -------------------------------------------------------------------------------- /spec/path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/path_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/support/helpers/helper.rb -------------------------------------------------------------------------------- /spec/support/shared_contexts/http_server_shared_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/support/shared_contexts/http_server_shared_context.rb -------------------------------------------------------------------------------- /spec/tansaku_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/spec/tansaku_spec.rb -------------------------------------------------------------------------------- /tansaku.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninoseki/tansaku/HEAD/tansaku.gemspec --------------------------------------------------------------------------------