├── .github └── workflows │ └── ci.yml ├── .github_actions_build_config.rb ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Rakefile ├── TODO ├── example └── create.rb ├── mrbgem.rake ├── mrblib ├── main.rb ├── mrb_mrbgem_template.rb ├── options.rb └── version.rb ├── snapcraft.yaml ├── template_config.rb ├── test ├── mrb_mrbgem_template_test.rb └── options_test.rb └── tools └── mrbgem-template └── mrbgem-template.c /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github_actions_build_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/.github_actions_build_config.rb -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | rake 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | Add test 2 | -------------------------------------------------------------------------------- /example/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/example/create.rb -------------------------------------------------------------------------------- /mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/mrbgem.rake -------------------------------------------------------------------------------- /mrblib/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/mrblib/main.rb -------------------------------------------------------------------------------- /mrblib/mrb_mrbgem_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/mrblib/mrb_mrbgem_template.rb -------------------------------------------------------------------------------- /mrblib/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/mrblib/options.rb -------------------------------------------------------------------------------- /mrblib/version.rb: -------------------------------------------------------------------------------- 1 | class MrbgemTemplate 2 | VERSION = '0.3.1' 3 | end 4 | -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /template_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/template_config.rb -------------------------------------------------------------------------------- /test/mrb_mrbgem_template_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/test/mrb_mrbgem_template_test.rb -------------------------------------------------------------------------------- /test/options_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/test/options_test.rb -------------------------------------------------------------------------------- /tools/mrbgem-template/mrbgem-template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/mruby-mrbgem-template/HEAD/tools/mrbgem-template/mrbgem-template.c --------------------------------------------------------------------------------