├── .github └── workflows │ ├── prerelease.yml │ ├── release.yml │ └── release_homebrew.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README-CN.md ├── README.md ├── Rakefile ├── doc └── wechat.png ├── mbox-package.yml └── scripts ├── common ├── extension.rb ├── github_action.rb ├── install_mbox.rb └── log.rb ├── network └── github_api.rb ├── package ├── run.rb └── update_plugins_version.rb ├── plugin ├── build.rb └── release_plugin.rb └── release ├── check_released_version.rb └── run.rb /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/release_homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/.github/workflows/release_homebrew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | build 3 | temp 4 | *.token 5 | .bundle 6 | ruby 7 | vendor 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/Rakefile -------------------------------------------------------------------------------- /doc/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/doc/wechat.png -------------------------------------------------------------------------------- /mbox-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/mbox-package.yml -------------------------------------------------------------------------------- /scripts/common/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/common/extension.rb -------------------------------------------------------------------------------- /scripts/common/github_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/common/github_action.rb -------------------------------------------------------------------------------- /scripts/common/install_mbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/common/install_mbox.rb -------------------------------------------------------------------------------- /scripts/common/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/common/log.rb -------------------------------------------------------------------------------- /scripts/network/github_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/network/github_api.rb -------------------------------------------------------------------------------- /scripts/package/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/package/run.rb -------------------------------------------------------------------------------- /scripts/package/update_plugins_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/package/update_plugins_version.rb -------------------------------------------------------------------------------- /scripts/plugin/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/plugin/build.rb -------------------------------------------------------------------------------- /scripts/plugin/release_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/plugin/release_plugin.rb -------------------------------------------------------------------------------- /scripts/release/check_released_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/release/check_released_version.rb -------------------------------------------------------------------------------- /scripts/release/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBoxPlus/mbox/HEAD/scripts/release/run.rb --------------------------------------------------------------------------------