diff --git a/.check.rb b/.check.rb index 0db49a7..3c6ba05 100755 --- a/.check.rb +++ b/.check.rb @@ -1,15 +1,94 @@ #!/usr/bin/env ruby -require 'yaml' +require "yaml" + +# please add or remove files on the top dir for management if necessary. +# note that files in subdirectories are not included in the scan. +PROJECT_FILES = %w[ + .check.rb + .editorconfig + .gitattributes + .gitignore + .pre-commit-config.yaml + .travis.yml + CONTRIBUTING.md + Gemfile + Gemfile.lock + Makefile + Rakefile + README.md +].freeze + +$PROGRAM_NAME = File.basename($PROGRAM_NAME) + +def run_and_split_nul(cmd) + IO.popen(cmd, "rb") { |pipe| pipe.read.split("\0") } +end + +errinfo = Object.new +class << errinfo + def push(mesg) + @errors ||= [] + @errors << mesg.to_s.sub(/\n+\z/, "") + end + + def empty? + !@errors || @errors.empty? + end + + def size + @errors&.size || 0 + end + + def output + warn <<~ERR + + #{@errors&.join("\n")} + #{size} error(s) generated. + ERR + end +end + +Dir.chdir(__dir__) + +entries = run_and_split_nul(%w[git ls-files -z :^*/*]) + +puts "checking project management files" +unless (PROJECT_FILES - entries).empty? + errinfo.push <<~MESG + missing files: #{(PROJECT_FILES - entries).join(" ")} + > if you removed project management files, edit PROJECT_FILES in #{$PROGRAM_NAME} file. + MESG +end + +(entries - PROJECT_FILES).each do |f| + puts "checking #{f}" + + unless f.match?(/\.gem$/) + errinfo.push <<~MESG + #{f}: not a ".gem" file + > if you added files for mruby gem (mgem), the file extension should be changed to ".gem". + > if you added files for project management, add into PROJECT_FILES of #{$PROGRAM_NAME} file. + MESG + next + end + + tree = YAML.load_file(f) + %w[name description author website repository protocol license].each do |key| + errinfo.push "#{f}: no #{key}" unless tree[key] + end + errinfo.push "#{f}: invalid protocol" unless ["git"].include? tree["protocol"] # TODO -Dir.glob("#{File.dirname __FILE__}/*.gem") do |f| - print "checking #{f}\n" - tree = YAML.parse_file(f).transform - raise "invalid yaml" unless tree["name"] && tree["description"] && tree["author"] && tree["website"] && tree["repository"] - raise "invalid protocol" unless ["git"].include? tree["protocol"] # TODO tree["dependencies"].to_a.each do |x| - raise "invalid dependencies" unless x.kind_of?(String) + errinfo.push "#{f}: invalid dependencies" unless x.is_a?(String) end +rescue StandardError => e + errinfo.push e +end + +unless errinfo.empty? + errinfo.output + exit 1 end -print "gem files check OK\n" +puts "gem files check OK" diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..fa71e6b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# About this file, see: +# Website: https://editorconfig.org/ +# For Emacs users: https://github.com/editorconfig/editorconfig-emacs +# For Vim users: https://github.com/editorconfig/editorconfig-vim + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true + +[{Makefile,Makefile.*,makefile,*.mk}] +indent_style = tab +tab_width = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..83bea8b --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.gem linguist-language=YAML diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..9f91caa --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @matz diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..9301635 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,33 @@ +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/about-dependabot-version-updates +version: 2 +updates: + - package-ecosystem: 'bundler' + directory: '/' + schedule: + interval: 'daily' + groups: + bundler-dependencies: + patterns: + - '*' + cooldown: + default-days: 7 + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'daily' + groups: + github-actions-dependencies: + patterns: + - '*' + cooldown: + default-days: 7 + - package-ecosystem: 'pre-commit' + directory: '/' + schedule: + interval: 'daily' + groups: + pre-commit-hooks: + patterns: + - '*' + cooldown: + default-days: 7 diff --git a/.github/linters/.ecrc b/.github/linters/.ecrc new file mode 100644 index 0000000..d6791b6 --- /dev/null +++ b/.github/linters/.ecrc @@ -0,0 +1,10 @@ +{ + "verbose": false, + "ignore_defaults": false, + "disable": { + "end_of_line": false, + "trim_trailing_whitespace": false, + "insert_final_newline": false, + "indentation": false + } +} diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml new file mode 100644 index 0000000..60a3bbf --- /dev/null +++ b/.github/linters/.markdown-lint.yml @@ -0,0 +1,9 @@ +# https://github.com/DavidAnson/markdownlint#rules--aliases +# https://github.com/igorshubovych/markdownlint-cli +# markdownlint -c .github/linters/.markdown-lint.yml . + +# MD025 single-title/single-h1 - Multiple top-level headings in the same document +MD025: false + +# MD040 fenced-code-language - Fenced code blocks should have a language specified +MD040: false diff --git a/.github/linters/.rubocop.yml b/.github/linters/.rubocop.yml new file mode 100644 index 0000000..719d95b --- /dev/null +++ b/.github/linters/.rubocop.yml @@ -0,0 +1,12 @@ +# https://rubocop.org/ +AllCops: + NewCops: disable + +Style/FrozenStringLiteralComment: + Enabled: false + +Style/StringLiterals: + EnforcedStyle: double_quotes + +Style/StringLiteralsInInterpolation: + Enabled: false diff --git a/.github/linters/.yaml-lint.yml b/.github/linters/.yaml-lint.yml new file mode 100644 index 0000000..74bb3a5 --- /dev/null +++ b/.github/linters/.yaml-lint.yml @@ -0,0 +1,9 @@ +--- +# https://yamllint.readthedocs.io/en/stable/ +extends: default + +rules: + comments: disable + document-start: disable + line-length: disable + truthy: false diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/check-gems.yml b/.github/workflows/check-gems.yml new file mode 100644 index 0000000..64fe3aa --- /dev/null +++ b/.github/workflows/check-gems.yml @@ -0,0 +1,22 @@ +name: Lint + +on: [pull_request] + +permissions: + contents: read + +jobs: + check-gems: + name: Check gem files + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + persist-credentials: false + - uses: ruby/setup-ruby@003a5c4d8d6321bd302e38f6f0ec593f77f06600 # v1.319.0 + with: + ruby-version: '3.4' # Not needed with a .ruby-version file + bundler: 'default' + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - run: bundle exec .check.rb diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml new file mode 100644 index 0000000..e67bca6 --- /dev/null +++ b/.github/workflows/pre-commit.yml @@ -0,0 +1,24 @@ +# https://github.com/j178/prek +name: pre-commit + +on: [pull_request] + +permissions: + contents: read + +jobs: + pre-commit: + name: Run pre-commit + runs-on: ubuntu-latest + steps: + - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + persist-credentials: false + - uses: ruby/setup-ruby@003a5c4d8d6321bd302e38f6f0ec593f77f06600 # v1.319.0 + with: + ruby-version: '3.4' + bundler-cache: true + - uses: j178/prek-action@e98a699c41eb69ab013a45817a0406469a748f8d # v2.0.5 + with: + extra-args: --all-files diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml new file mode 100644 index 0000000..1e285a1 --- /dev/null +++ b/.github/workflows/super-linter.yml @@ -0,0 +1,28 @@ +# https://github.com/super-linter/super-linter +name: Super-Linter + +on: [pull_request] + +permissions: + contents: read + +jobs: + build: + name: Lint Code Base + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + persist-credentials: false + - name: Lint Code Base + uses: super-linter/super-linter/slim@4ce20838b8ab83717e78138c5b3a1407148e0918 # v8.7.0 + env: + VALIDATE_EDITORCONFIG: true + VALIDATE_GITHUB_ACTIONS: true + VALIDATE_GITLEAKS: true + DEFAULT_BRANCH: master + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + VALIDATE_ALL_CODEBASE: true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..4e423ed --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,102 @@ +--- +# https://pre-commit.com/ +default_stages: [pre-commit, pre-push] +default_language_version: + # force all unspecified Python hooks to run python3 + python: python3 +minimum_pre_commit_version: '3.2.0' +repos: + - repo: meta + hooks: + - id: identity + name: run identity + description: check your identity + - id: check-hooks-apply + name: run check-hooks-apply + description: check hooks apply to the repository + - repo: https://github.com/gitleaks/gitleaks + rev: v8.30.1 + hooks: + - id: gitleaks + name: run gitleaks + description: detect hardcoded secrets with gitleaks + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v6.0.0 + hooks: + - id: check-added-large-files + - id: check-case-conflict + - id: check-executables-have-shebangs + - id: check-illegal-windows-names + - id: check-merge-conflict + - id: check-shebang-scripts-are-executable + - id: check-vcs-permalinks + - id: check-yaml + - id: detect-aws-credentials + args: [--allow-missing-credentials] + - id: detect-private-key + - id: end-of-file-fixer + - id: fix-byte-order-marker + - id: forbid-submodules + - id: mixed-line-ending + - id: trailing-whitespace + args: [--markdown-linebreak-ext=md] + - repo: https://github.com/Lucas-C/pre-commit-hooks + rev: v1.5.6 + hooks: + - id: forbid-tabs + name: run forbid-tabs + description: check the codebase for tabs + exclude: ^Makefile$ + - id: remove-tabs + name: run remove-tabs + description: find and convert tabs to spaces + args: [--whitespaces-count, '2'] + exclude: ^Makefile$ + - repo: https://github.com/rhysd/actionlint + rev: v1.7.12 + hooks: + - id: actionlint + name: run actionlint + description: lint GitHub Actions workflow files + - repo: https://github.com/codespell-project/codespell + rev: v2.4.3 + hooks: + - id: codespell + name: run codespell + description: check spelling with codespell + args: [--ignore-words=.github/linters/codespell.txt] + - repo: https://github.com/tcort/markdown-link-check + rev: v3.14.2 + hooks: + - id: markdown-link-check + name: run markdown-link-check + description: checks for broken hyperlinks in Markdown files + args: [-q] + types: [markdown] + files: \.md$ + - repo: https://github.com/igorshubovych/markdownlint-cli + rev: v0.49.1 + hooks: + - id: markdownlint + name: run markdownlint + description: check all Markdown files with markdownlint + args: [--config=.github/linters/.markdown-lint.yml] + types: [markdown] + files: \.md$ + - repo: https://github.com/rubocop/rubocop + rev: v1.88.2 + hooks: + - id: rubocop + name: run rubocop + description: RuboCop is a Ruby code style checker (linter) and formatter based on the community-driven Ruby Style Guide + types: [ruby] + args: [--config=.github/linters/.rubocop.yml] + - repo: https://github.com/adrienverge/yamllint + rev: v1.38.0 + hooks: + - id: yamllint + name: run yamllint + description: check YAML files with yamllint + args: [--strict, -c=.github/linters/.yaml-lint.yml] + types: [yaml] + files: \.ya?ml$ diff --git a/.travis.yml b/.travis.yml index 81802f5..2d06aad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1 +1 @@ -script: "./.check.rb" +script: './.check.rb' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..61febd9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,21 @@ +# pre-commit + +A framework for managing and maintaining multi-language `pre-commit` hooks. +`pre-commit` can be [installed](https://pre-commit.com/#installation) with +`pip`, `curl`, `brew` or `conda`. + +You need to first install `pre-commit` and then install the `pre-commit` hooks +with `pre-commit install`. Now `pre-commit` will run automatically on git +commit! + +It's usually a good idea to run the hooks against all the files when +adding new hooks (usually `pre-commit` will only run on the changed files +during git hooks). Use `pre-commit run --all-files` to check all files. + +To run a single hook use `pre-commit run --all-files ` + +To update use `pre-commit autoupdate` + +- [Quick start](https://pre-commit.com/#quick-start) +- [Usage](https://pre-commit.com/#usage) +- [pre-commit-autoupdate](https://pre-commit.com/#pre-commit-autoupdate) diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..d9736ca --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem "yaml" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..a006f5b --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,14 @@ +GEM + remote: https://rubygems.org/ + specs: + yaml (0.4.0) + +PLATFORMS + x86_64-darwin-21 + x86_64-linux + +DEPENDENCIES + yaml + +BUNDLED WITH + 2.4.1 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a2f54cc --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: check +check: + pre-commit run --all-files + +.PHONY: checkinstall +checkinstall: + pre-commit install + +.PHONY: checkupdate +checkupdate: + pre-commit autoupdate diff --git a/README.md b/README.md index a56c37b..0dd19da 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ -[![Build Status](https://travis-ci.org/mruby/mgem-list.png?branch=master)](https://travis-ci.org/mruby/mgem-list) -mgem-list -========= +# mgem-list A list of all GEMs for mruby to be managed by mgem @@ -9,25 +7,31 @@ A list of all GEMs for mruby to be managed by mgem If you want to add your own mruby GEM to this list please create a pull request with your GEM details. +- [CONTRIBUTING.md](CONTRIBUTING.md) + ## Example Every GEM file is based on YAML: -``` +```yaml name: mruby-gem-name description: This is the description of this GEM author: Author Name -website: https://this.is/the/address/to/the/gem +license: MIT +website: https://gem.example/the/address/to/the/gem protocol: git -repository: https://github.com/the/address/to/the/gem.git +repository: https://gem.example/the/address/to/the/gem.git +branch: main # Need to set this if default branch is not "master" ``` -## Guidlines +## Guidelines When creating a new GEM please consider: -* the name should express the functionality of the GEM clearly -* words should be separated by using dash (-) -* don't use *under_score* and *PascalCaseas* -* prefix should be *mruby-* -* if it's an executable, prefix should be *mruby-bin-* +- the name should express the functionality of the GEM clearly +- words should be separated by using dash (-) +- don't use `under_score` and `CamelCase` +- prefix should be `mruby-` for mruby specific gems +- for gems compatible with both mruby and Rubygems (`dual-compatible gems`), + no prefix is needed +- if it's an executable, prefix should be _mruby-bin-_ diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..7663d6a --- /dev/null +++ b/Rakefile @@ -0,0 +1,14 @@ +desc "run all pre-commit hooks against all files" +task :check do + sh "pre-commit run --all-files" +end + +desc "install the pre-commit hooks" +task :checkinstall do + sh "pre-commit install" +end + +desc "check the pre-commit hooks for updates" +task :checkupdate do + sh "pre-commit autoupdate" +end diff --git a/gettextpo.gem b/gettextpo.gem new file mode 100644 index 0000000..499d426 --- /dev/null +++ b/gettextpo.gem @@ -0,0 +1,8 @@ +name: gettextpo +description: GNU gettext PO parser library with libgettextpo. +author: gemmaro +website: https://github.com/ruby-gettext/gettextpo +protocol: git +repository: https://github.com/ruby-gettext/gettextpo.git +license: GPL-3.0-or-later +branch: main diff --git a/mruby-alarm.gem b/mruby-alarm.gem index 48fd94c..057a617 100644 --- a/mruby-alarm.gem +++ b/mruby-alarm.gem @@ -4,3 +4,4 @@ author: k0u5uk3 website: https://github.com/k0u5uk3/mruby-alarm protocol: git repository: https://github.com/k0u5uk3/mruby-alarm.git +license: MIT diff --git a/mruby-allegro.gem b/mruby-allegro.gem index 7661c5f..6a68da4 100644 --- a/mruby-allegro.gem +++ b/mruby-allegro.gem @@ -4,3 +4,4 @@ author: cremno website: https://github.com/cremno/mruby-allegro protocol: git repository: https://github.com/cremno/mruby-allegro.git +license: MIT diff --git a/mruby-allocate.gem b/mruby-allocate.gem index c8c8855..957e1da 100644 --- a/mruby-allocate.gem +++ b/mruby-allocate.gem @@ -4,3 +4,4 @@ author: ppibburr website: https://github.com/ppibburr/mruby-allocate protocol: git repository: https://github.com/ppibburr/mruby-allocate.git +license: MIT diff --git a/mruby-ansi-colors.gem b/mruby-ansi-colors.gem index 4028b49..2ca57c7 100644 --- a/mruby-ansi-colors.gem +++ b/mruby-ansi-colors.gem @@ -1,6 +1,7 @@ name: mruby-ansi-colors description: Extends String class to use ANSI color escape codes. author: Mav7 -website: https://github.com/Mav7/mruby-ansi-colors +website: https://github.com/mruby-Forum/mruby-ansi-colors protocol: git -repository: https://github.com/Mav7/mruby-ansi-colors.git \ No newline at end of file +repository: https://github.com/mruby-Forum/mruby-ansi-colors.git +license: MIT diff --git a/mruby-apr.gem b/mruby-apr.gem index 58fe1b0..8e0ace6 100644 --- a/mruby-apr.gem +++ b/mruby-apr.gem @@ -4,3 +4,4 @@ author: Jared Breeden website: https://github.com/jbreeden/mruby-apr protocol: git repository: https://github.com/jbreeden/mruby-apr.git +license: Apache Version 2 diff --git a/mruby-arduino.gem b/mruby-arduino.gem index a744c33..d9a7548 100644 --- a/mruby-arduino.gem +++ b/mruby-arduino.gem @@ -3,4 +3,5 @@ description: Arduino binding author: kyab website: https://github.com/kyab/mruby-arduino protocol: git -repository: https://github.com/kyab/mruby-arduino.git \ No newline at end of file +repository: https://github.com/kyab/mruby-arduino.git +license: MIT diff --git a/mruby-argon2.gem b/mruby-argon2.gem index 833e4cc..01f0587 100644 --- a/mruby-argon2.gem +++ b/mruby-argon2.gem @@ -7,3 +7,4 @@ repository: https://github.com/Asmod4n/mruby-argon2.git dependencies: - mruby-errno - mruby-sysrandom +license: Apache-2.0 diff --git a/mruby-argtable.gem b/mruby-argtable.gem index 6fef321..b2de4d9 100644 --- a/mruby-argtable.gem +++ b/mruby-argtable.gem @@ -4,3 +4,4 @@ author: ["Uchio Kondo", "Stewart Heitmann"] website: https://github.com/udzura/mruby-argtable protocol: git repository: https://github.com/udzura/mruby-argtable.git +license: BSD diff --git a/mruby-at_exit.gem b/mruby-at_exit.gem index 8c48ba7..ed4d244 100644 --- a/mruby-at_exit.gem +++ b/mruby-at_exit.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-at_exit protocol: git repository: https://github.com/ksss/mruby-at_exit.git +license: MIT diff --git a/mruby-audite.gem b/mruby-audite.gem index 41d880a..4990261 100644 --- a/mruby-audite.gem +++ b/mruby-audite.gem @@ -3,4 +3,5 @@ description: Portable MP3 Player based on libmp123 and portaudio author: Matthias Georgi website: https://github.com/georgi/mruby-audite protocol: git -repository: https://github.com/georgi/mruby-audite.git +repository: https://github.com/georgi/mruby-audite.git +license: MIT diff --git a/mruby-augeas.gem b/mruby-augeas.gem index 9498945..d5a1b3d 100644 --- a/mruby-augeas.gem +++ b/mruby-augeas.gem @@ -4,3 +4,4 @@ author: lutter website: https://github.com/hercules-team/mruby-augeas protocol: git repository: https://github.com/hercules-team/mruby-augeas +license: MIT diff --git a/mruby-avl.gem b/mruby-avl.gem index f5f245d..5692fae 100644 --- a/mruby-avl.gem +++ b/mruby-avl.gem @@ -4,3 +4,4 @@ author: randym website: https://github.com/randym/mruby-avl protocol: git repository: https://github.com/randym/mruby-avl.git +license: MIT diff --git a/mruby-aws-s3.gem b/mruby-aws-s3.gem index f4f2c72..faee0cb 100644 --- a/mruby-aws-s3.gem +++ b/mruby-aws-s3.gem @@ -3,4 +3,5 @@ description: Client library for Amazon's (AWS) S3 REST API author: iij website: https://github.com/iij/mruby-aws-s3 protocol: git -repository: https://github.com/iij/mruby-aws-s3.git +repository: https://github.com/iij/mruby-aws-s3.git +license: MIT diff --git a/mruby-aws-sigv4.gem b/mruby-aws-sigv4.gem new file mode 100644 index 0000000..a91b9c2 --- /dev/null +++ b/mruby-aws-sigv4.gem @@ -0,0 +1,7 @@ +name: mruby-aws-sigv4 +description: AWS Signature Version 4 signing library for mruby. mruby port of aws-sigv4 RubyGem. +author: Okumura Takahiro +website: https://github.com/hfm/mruby-aws-sigv4 +protocol: git +repository: https://github.com/hfm/mruby-aws-sigv4.git +license: MIT diff --git a/mruby-b64.gem b/mruby-b64.gem index 1fffe8b..c04c332 100644 --- a/mruby-b64.gem +++ b/mruby-b64.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-b64 protocol: git repository: https://github.com/Asmod4n/mruby-b64.git +license: Apache-2 diff --git a/mruby-backtrace.gem b/mruby-backtrace.gem index d68b104..5447501 100644 --- a/mruby-backtrace.gem +++ b/mruby-backtrace.gem @@ -4,3 +4,4 @@ author: crimsonwoods website: https://github.com/crimsonwoods/mruby-backtrace protocol: git repository: https://github.com/crimsonwoods/mruby-backtrace.git +license: MIT diff --git a/mruby-base32.gem b/mruby-base32.gem index 5a6d953..3fcf67b 100644 --- a/mruby-base32.gem +++ b/mruby-base32.gem @@ -1,6 +1,7 @@ name: mruby-base32 description: Base32 Encoder/Decoder author: qtakamitsu -website: https://github.com/qtkmz/mruby-base32 +website: https://github.com/tk3/mruby-base32 protocol: git -repository: https://github.com/qtkmz/mruby-base32.git +repository: https://github.com/tk3/mruby-base32.git +license: MIT diff --git a/mruby-base58.gem b/mruby-base58.gem index 69507fc..c98ea8f 100644 --- a/mruby-base58.gem +++ b/mruby-base58.gem @@ -1,6 +1,7 @@ name: mruby-base58 -description: Base58 Encoder/Decoder +description: Base58 Encoder/Decoder (third-party fork) author: h2so5 -website: https://github.com/h2so5/mruby-base58 +website: https://github.com/sadasant/mruby-base58 protocol: git -repository: https://github.com/h2so5/mruby-base58.git +repository: https://github.com/sadasant/mruby-base58.git +license: MIT diff --git a/mruby-base64.gem b/mruby-base64.gem index d98c849..b1dd634 100644 --- a/mruby-base64.gem +++ b/mruby-base64.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-base64 protocol: git repository: https://github.com/mattn/mruby-base64.git +license: MIT diff --git a/mruby-bcrypt.gem b/mruby-bcrypt.gem index 67536bb..b80fab3 100644 --- a/mruby-bcrypt.gem +++ b/mruby-bcrypt.gem @@ -4,3 +4,4 @@ author: Emanuele Vicentini website: https://github.com/baldowl/mruby-bcrypt protocol: git repository: https://github.com/baldowl/mruby-bcrypt.git +license: MIT diff --git a/mruby-bignum.gem b/mruby-bignum.gem index a4aa20f..f81e4bc 100644 --- a/mruby-bignum.gem +++ b/mruby-bignum.gem @@ -4,3 +4,4 @@ author: Ray Chason website: https://github.com/chasonr/mruby-bignum protocol: git repository: https://github.com/chasonr/mruby-bignum.git +license: MIT diff --git a/mruby-bin-barista.gem b/mruby-bin-barista.gem new file mode 100644 index 0000000..3b20d20 --- /dev/null +++ b/mruby-bin-barista.gem @@ -0,0 +1,8 @@ +name: mruby-bin-barista +description: A cross-platform build tool for executing a DAG of tasks +author: skinnyjames +license: MIT +website: https://github.com/skinnyjames/mruby-bin-barista +protocol: git +repository: https://github.com/skinnyjames/mruby-bin-barista.git +branch: main diff --git a/mruby-bin-mirb-hostbased.gem b/mruby-bin-mirb-hostbased.gem index 91c4c90..4679537 100644 --- a/mruby-bin-mirb-hostbased.gem +++ b/mruby-bin-mirb-hostbased.gem @@ -1,6 +1,7 @@ -name: mruby-irb-mirb-hostbased -description: Hostbased mirb for serial connection +name: mruby-bin-mirb-hostbased +description: Hostbased mirb for serial connection author: kyab website: https://github.com/kyab/mruby-bin-mirb-hostbased protocol: git repository: https://github.com/kyab/mruby-bin-mirb-hostbased.git +license: MIT diff --git a/mruby-bin-monolith.gem b/mruby-bin-monolith.gem new file mode 100644 index 0000000..5f30ba8 --- /dev/null +++ b/mruby-bin-monolith.gem @@ -0,0 +1,8 @@ +name: mruby-bin-monolith +description: Tool to package mruby code in a single standalone executable +author: Chris Reuter +license: MIT +website: https://github.com/suetanvil/mruby-bin-monolith +protocol: git +repository: https://github.com/suetanvil/mruby-bin-monolith.git +branch: main diff --git a/mruby-bin-mruby-afl.gem b/mruby-bin-mruby-afl.gem index 17e0332..d4d39d2 100644 --- a/mruby-bin-mruby-afl.gem +++ b/mruby-bin-mruby-afl.gem @@ -4,3 +4,4 @@ author: Daniel Bovensiepen website: https://github.com/bovi/mruby-bin-mruby-afl protocol: git repository: https://github.com/bovi/mruby-bin-mruby-afl.git +license: MIT diff --git a/mruby-bin-scite-mruby.gem b/mruby-bin-scite-mruby.gem index eb70e54..2db98a6 100644 --- a/mruby-bin-scite-mruby.gem +++ b/mruby-bin-scite-mruby.gem @@ -4,3 +4,4 @@ author: Takashi Sawanaka website: https://github.com/sdottaka/mruby-bin-scite-mruby protocol: git repository: https://github.com/sdottaka/mruby-bin-scite-mruby.git +license: MIT License (ExtMan) diff --git a/mruby-bin-theorem.gem b/mruby-bin-theorem.gem new file mode 100644 index 0000000..7a82457 --- /dev/null +++ b/mruby-bin-theorem.gem @@ -0,0 +1,8 @@ +name: mruby-bin-theorem +description: A modern test library & runner toolkit for mruby +author: skinnyjames +website: https://github.com/skinnyjames/mruby-bin-theorem +protocol: git +repository: https://github.com/skinnyjames/mruby-bin-theorem.git +license: MIT +branch: main diff --git a/mruby-blendish.gem b/mruby-blendish.gem index ba08883..5ed1f2a 100644 --- a/mruby-blendish.gem +++ b/mruby-blendish.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/IceDragon200/mruby-blendish dependencies: - mruby-nanovg +license: MIT diff --git a/mruby-c-ares.gem b/mruby-c-ares.gem new file mode 100644 index 0000000..bdf0c98 --- /dev/null +++ b/mruby-c-ares.gem @@ -0,0 +1,8 @@ +name: mruby-c-ares +description: Async DNS requests for mruby as a binding for https://c-ares.org/ +author: Hendrik Beskow +website: https://github.com/Asmod4n/mruby-c-ares +protocol: git +repository: https://github.com/Asmod4n/mruby-c-ares.git +license: MIT +branch: main diff --git a/mruby-c-ext-helpers.gem b/mruby-c-ext-helpers.gem new file mode 100644 index 0000000..3138a70 --- /dev/null +++ b/mruby-c-ext-helpers.gem @@ -0,0 +1,7 @@ +name: mruby-c-ext-helpers +description: Helpers for mruby c extensions +author: Asmod4n +website: https://github.com/Asmod4n/mruby-c-ext-helpers +protocol: git +repository: https://github.com/Asmod4n/mruby-c-ext-helpers.git +license: MPL-2 diff --git a/mruby-cache.gem b/mruby-cache.gem index b10e378..31a0c5d 100644 --- a/mruby-cache.gem +++ b/mruby-cache.gem @@ -4,3 +4,4 @@ author: charlescui website: https://github.com/charlescui/mruby-cache protocol: git repository: https://github.com/charlescui/mruby-cache.git +license: MIT diff --git a/mruby-capability.gem b/mruby-capability.gem index e86839c..a1e169c 100644 --- a/mruby-capability.gem +++ b/mruby-capability.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-capability protocol: git repository: https://github.com/matsumotory/mruby-capability.git +license: MIT diff --git a/mruby-capacity.gem b/mruby-capacity.gem new file mode 100644 index 0000000..d58ea40 --- /dev/null +++ b/mruby-capacity.gem @@ -0,0 +1,7 @@ +name: mruby-capacity +description: mruby capacity interface +author: pyama86 +website: https://github.com/pyama86/mruby-capacity +protocol: git +repository: https://github.com/pyama86/mruby-capacity.git +license: MIT diff --git a/mruby-catch-throw.gem b/mruby-catch-throw.gem index 31d7ca3..ad366ac 100644 --- a/mruby-catch-throw.gem +++ b/mruby-catch-throw.gem @@ -4,3 +4,4 @@ author: Corey Powell website: https://github.com/IceDragon200/mruby-catch-throw protocol: git repository: https://github.com/IceDragon200/mruby-catch-throw +license: MIT diff --git a/mruby-cbor.gem b/mruby-cbor.gem new file mode 100644 index 0000000..c56d138 --- /dev/null +++ b/mruby-cbor.gem @@ -0,0 +1,8 @@ +name: mruby-cbor +description: CBOR (RFC 8949) Implementation in mruby. +author: Hendrik Beskow +website: https://github.com/Asmod4n/mruby-cbor +protocol: git +repository: https://github.com/Asmod4n/mruby-cbor.git +branch: main +license: Apache-2.0 diff --git a/mruby-cfunc.gem b/mruby-cfunc.gem index b6c57ea..cbf7c75 100644 --- a/mruby-cfunc.gem +++ b/mruby-cfunc.gem @@ -1,6 +1,8 @@ name: mruby-cfunc description: Interface to C functions based on libffi. author: Yuichiro MASUI -website: https://github.com/mobiruby/mruby-cfunc +website: https://github.com/mrbgems/mruby-cfunc protocol: git -repository: https://github.com/mobiruby/mruby-cfunc.git +repository: https://github.com/mrbgems/mruby-cfunc.git +branch: mgem +license: MIT diff --git a/mruby-cgroup.gem b/mruby-cgroup.gem index 9b2e506..80d5e3a 100644 --- a/mruby-cgroup.gem +++ b/mruby-cgroup.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-cgroup protocol: git repository: https://github.com/matsumotory/mruby-cgroup.git +license: MIT diff --git a/mruby-chan.gem b/mruby-chan.gem new file mode 100644 index 0000000..5e9a193 --- /dev/null +++ b/mruby-chan.gem @@ -0,0 +1,8 @@ +name: mruby-chan +description: An easy-to-use, nonblocking IPC library for mruby +author: 0x1eef +website: https://github.com/0x1eef/mruby-chan +protocol: git +repository: https://github.com/0x1eef/mruby-chan.git +branch: main +license: 0BSD diff --git a/mruby-changefinder.gem b/mruby-changefinder.gem index 73e39a7..7881485 100644 --- a/mruby-changefinder.gem +++ b/mruby-changefinder.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-changefinder protocol: git repository: https://github.com/matsumotory/mruby-changefinder.git +license: MIT diff --git a/mruby-channel.gem b/mruby-channel.gem index 16d740c..2ccae3e 100644 --- a/mruby-channel.gem +++ b/mruby-channel.gem @@ -1,6 +1,7 @@ name: mruby-channel -description: named FIFO queue with multithreading +description: named FIFO queue with multithreading author: bggd website: https://github.com/bggd/mruby-channel protocol: git repository: https://github.com/bggd/mruby-channel.git +license: MIT diff --git a/mruby-chipmunk2d.gem b/mruby-chipmunk2d.gem index 370b6dd..30936a9 100644 --- a/mruby-chipmunk2d.gem +++ b/mruby-chipmunk2d.gem @@ -4,3 +4,4 @@ author: Corey Powell website: https://github.com/IceDragon200/mruby-chipmunk2d protocol: git repository: https://github.com/IceDragon200/mruby-chipmunk2d +license: MIT diff --git a/mruby-chrono.gem b/mruby-chrono.gem index db4bd4e..3f3367b 100644 --- a/mruby-chrono.gem +++ b/mruby-chrono.gem @@ -1,6 +1,7 @@ -name: mruby-chrony +name: mruby-chrono description: Steady and System clocks for mruby author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-chrono protocol: git repository: https://github.com/Asmod4n/mruby-chrono.git +license: Apache-2 diff --git a/mruby-cidr.gem b/mruby-cidr.gem deleted file mode 100644 index b906a21..0000000 --- a/mruby-cidr.gem +++ /dev/null @@ -1,6 +0,0 @@ -name: mruby-cidr -description: CIDR class -author: kaihar4 -website: https://github.com/kaihar4/mruby-cidr -protocol: git -repository: https://github.com/kaihar4/mruby-cidr.git diff --git a/mruby-cipher.gem b/mruby-cipher.gem index d1cb8ca..36bd150 100644 --- a/mruby-cipher.gem +++ b/mruby-cipher.gem @@ -4,3 +4,4 @@ author: Seiei Miyagi website: https://github.com/hanachin/mruby-cipher protocol: git repository: https://github.com/hanachin/mruby-cipher.git +license: MIT diff --git a/mruby-clang-plugin.gem b/mruby-clang-plugin.gem index 51d0163..edf91e4 100644 --- a/mruby-clang-plugin.gem +++ b/mruby-clang-plugin.gem @@ -4,3 +4,4 @@ author: Takeshi Watanabe website: https://github.com/take-cheeze/mruby-clang-plugin protocol: git repository: https://github.com/take-cheeze/mruby-clang-plugin.git +license: MIT diff --git a/mruby-class-attribute.gem b/mruby-class-attribute.gem new file mode 100644 index 0000000..4bbbabf --- /dev/null +++ b/mruby-class-attribute.gem @@ -0,0 +1,8 @@ +name: mruby-class-attribute +description: inheritable class attributes ported from Hanami +author: Hanami developers (ported by Paweł Świątkowski) +website: https://github.com/katafrakt/mruby-class-attribute +protocol: git +repository: https://github.com/katafrakt/mruby-class-attribute.git +license: MIT +branch: main diff --git a/mruby-cmake-build.gem b/mruby-cmake-build.gem new file mode 100644 index 0000000..6af6167 --- /dev/null +++ b/mruby-cmake-build.gem @@ -0,0 +1,7 @@ +name: mruby-cmake-build +description: CMake configuration (CMakeLists.txt) generator for mruby. +author: Lanza Schneider +license: MIT License +website: https://github.com/LanzaSchneider/mruby-cmake-build +protocol: git +repository: https://github.com/LanzaSchneider/mruby-cmake-build.git diff --git a/mruby-cocoa.gem b/mruby-cocoa.gem index 398629c..6cf10a1 100644 --- a/mruby-cocoa.gem +++ b/mruby-cocoa.gem @@ -4,3 +4,4 @@ author: Yuichiro MASUI website: https://github.com/mobiruby/mruby-cocoa protocol: git repository: https://github.com/mobiruby/mruby-cocoa.git +license: MIT diff --git a/mruby-command.gem b/mruby-command.gem new file mode 100644 index 0000000..66b0f8a --- /dev/null +++ b/mruby-command.gem @@ -0,0 +1,8 @@ +name: mruby-command +description: Go-inspired, non-blocking commands for mruby +author: 0x1eef +website: https://github.com/0x1eef/mruby-command +protocol: git +repository: https://github.com/0x1eef/mruby-command.git +branch: main +license: 0BSD diff --git a/mruby-complex.gem b/mruby-complex.gem deleted file mode 100644 index b89956f..0000000 --- a/mruby-complex.gem +++ /dev/null @@ -1,6 +0,0 @@ -name: mruby-complex -description: Complex numbers. -author: Paolo Bosetti, University of Trento -website: https://github.com/pbosetti/mruby-complex -protocol: git -repository: https://github.com/pbosetti/mruby-complex.git diff --git a/mruby-concurrently.gem b/mruby-concurrently.gem index 8b6f08a..c665104 100644 --- a/mruby-concurrently.gem +++ b/mruby-concurrently.gem @@ -4,3 +4,4 @@ author: Christopher Aue website: https://github.com/christopheraue/m-ruby-concurrently protocol: git repository: https://github.com/christopheraue/m-ruby-concurrently.git +license: Apache-2.0 diff --git a/mruby-config.gem b/mruby-config.gem index 33d974d..ea1ad4c 100644 --- a/mruby-config.gem +++ b/mruby-config.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-config protocol: git repository: https://github.com/matsumotory/mruby-config.git +license: MIT diff --git a/mruby-consul.gem b/mruby-consul.gem index 2c97ddc..286ddb3 100644 --- a/mruby-consul.gem +++ b/mruby-consul.gem @@ -7,3 +7,4 @@ repository: https://github.com/inokappa/mruby-consul.git dependencies: - mruby-httprequest - mruby-json +license: MIT diff --git a/mruby-correlation.gem b/mruby-correlation.gem index f8cd2f2..29f51f3 100644 --- a/mruby-correlation.gem +++ b/mruby-correlation.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-correlation protocol: git repository: https://github.com/matsumotory/mruby-correlation.git +license: MIT diff --git a/mruby-cpuusage.gem b/mruby-cpuusage.gem new file mode 100644 index 0000000..f87318c --- /dev/null +++ b/mruby-cpuusage.gem @@ -0,0 +1,8 @@ +name: mruby-cpuusage +description: X Platform CPU usage stats for mruby +author: Hendrik Beskow +website: https://github.com/Asmod4n/mruby-cpuusage +protocol: git +repository: https://github.com/Asmod4n/mruby-cpuusage.git +branch: main +license: Apache-2.0 diff --git a/mruby-crc.gem b/mruby-crc.gem index 9bc91d6..44437bb 100644 --- a/mruby-crc.gem +++ b/mruby-crc.gem @@ -1,6 +1,7 @@ name: mruby-crc -description: Configurable general CRC calcurator for mruby +description: Configurable general CRC calculator for mruby author: dearblue website: https://github.com/dearblue/mruby-crc protocol: git repository: https://github.com/dearblue/mruby-crc.git +license: BSD-2-Clause diff --git a/mruby-criu.gem b/mruby-criu.gem index 45dda02..bf7b234 100644 --- a/mruby-criu.gem +++ b/mruby-criu.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-criu protocol: git repository: https://github.com/matsumotory/mruby-criu.git +license: MIT diff --git a/mruby-cross-compile-on-mac-osx.gem b/mruby-cross-compile-on-mac-osx.gem index 324ba8a..39fedb6 100644 --- a/mruby-cross-compile-on-mac-osx.gem +++ b/mruby-cross-compile-on-mac-osx.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-cross-compile-on-mac-osx protocol: git repository: https://github.com/matsumotory/mruby-cross-compile-on-mac-osx.git +license: MIT diff --git a/mruby-curl.gem b/mruby-curl.gem index 2a5b27a..c0f26d7 100644 --- a/mruby-curl.gem +++ b/mruby-curl.gem @@ -3,4 +3,5 @@ description: CURL HTTP Client author: mattn website: https://github.com/mattn/mruby-curl protocol: git -repository: https://github.com/mattn/mruby-curl.git +repository: https://github.com/mattn/mruby-curl.git +license: MIT diff --git a/mruby-curses.gem b/mruby-curses.gem index d98b521..3c79df0 100644 --- a/mruby-curses.gem +++ b/mruby-curses.gem @@ -1,6 +1,7 @@ name: mruby-curses -description: Curses for MRuby. Links to NCurses or PDCurses. +description: Curses for mruby. Links to NCurses or PDCurses. author: Jared Breeden website: https://github.com/jbreeden/mruby-curses protocol: git repository: https://github.com/jbreeden/mruby-curses.git +license: MIT diff --git a/mruby-cyberarm_engine.gem b/mruby-cyberarm_engine.gem new file mode 100644 index 0000000..8d3500c --- /dev/null +++ b/mruby-cyberarm_engine.gem @@ -0,0 +1,8 @@ +name: mruby-cyberarm_engine +description: Yet another framework for building games with Gosu +author: cyberarm +license: MIT +website: https://github.com/cyberarm/cyberarm_engine +protocol: git +repository: https://github.com/cyberarm/cyberarm_engine.git +branch: master diff --git a/mruby-czmq.gem b/mruby-czmq.gem deleted file mode 100644 index 6a9848e..0000000 --- a/mruby-czmq.gem +++ /dev/null @@ -1,8 +0,0 @@ -name: mruby-czmq -description: mruby bindings for czmq. -author: Hendrik Beskow -website: https://github.com/Asmod4n/mruby-czmq -protocol: git -repository: https://github.com/Asmod4n/mruby-czmq.git -dependencies: -- mruby-errno diff --git a/mruby-datadog.gem b/mruby-datadog.gem index 19d89e0..714df5e 100644 --- a/mruby-datadog.gem +++ b/mruby-datadog.gem @@ -8,3 +8,4 @@ dependencies: - mruby-httprequest - mruby-json - mruby-polarssl +license: MIT diff --git a/mruby-delegate.gem b/mruby-delegate.gem new file mode 100644 index 0000000..33946f1 --- /dev/null +++ b/mruby-delegate.gem @@ -0,0 +1,7 @@ +name: mruby-delegate +description: delegate implementation for mruby +author: dearblue +website: https://github.com/dearblue/mruby-delegate +protocol: git +repository: https://github.com/dearblue/mruby-delegate.git +license: CC0 diff --git a/mruby-digest.gem b/mruby-digest.gem index f2d9512..f1dcea7 100644 --- a/mruby-digest.gem +++ b/mruby-digest.gem @@ -4,3 +4,4 @@ author: Internet Initiative Japan., Inc. website: https://github.com/iij/mruby-digest protocol: git repository: https://github.com/iij/mruby-digest.git +license: MIT diff --git a/mruby-dir-glob.gem b/mruby-dir-glob.gem index c005baf..3d5ac29 100644 --- a/mruby-dir-glob.gem +++ b/mruby-dir-glob.gem @@ -4,3 +4,4 @@ author: Alexander Gromnitsky website: https://github.com/gromnitsky/mruby-dir-glob.git protocol: git repository: https://github.com/gromnitsky/mruby-dir-glob.git +license: MIT diff --git a/mruby-dir.gem b/mruby-dir.gem index 574c3e5..b8e6a23 100644 --- a/mruby-dir.gem +++ b/mruby-dir.gem @@ -4,3 +4,4 @@ author: Internet Initiative Japan., Inc. website: https://github.com/iij/mruby-dir protocol: git repository: https://github.com/iij/mruby-dir.git +license: MIT and MIT-like license diff --git a/mruby-discount.gem b/mruby-discount.gem index a7ffb25..9a894b1 100644 --- a/mruby-discount.gem +++ b/mruby-discount.gem @@ -1,6 +1,7 @@ name: mruby-discount -description: html generater from markdown using discount +description: HTML generator from Markdown using discount author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-discount protocol: git repository: https://github.com/matsumotory/mruby-discount.git +license: MIT diff --git a/mruby-disque.gem b/mruby-disque.gem index ac1d463..7116fac 100644 --- a/mruby-disque.gem +++ b/mruby-disque.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-disque protocol: git repository: https://github.com/matsumotory/mruby-disque.git +license: MIT diff --git a/mruby-dll.gem b/mruby-dll.gem index 9b7d23f..f697d55 100644 --- a/mruby-dll.gem +++ b/mruby-dll.gem @@ -3,4 +3,5 @@ description: DLL Windows Support author: mattn website: https://github.com/mattn/mruby-dll protocol: git -repository: https://github.com/mattn/mruby-dll.git +repository: https://github.com/mattn/mruby-dll.git +license: MIT diff --git a/mruby-eject.gem b/mruby-eject.gem index cf36094..454f7a4 100644 --- a/mruby-eject.gem +++ b/mruby-eject.gem @@ -3,4 +3,5 @@ description: Eject CD-ROM author: mattn website: https://github.com/mattn/mruby-eject protocol: git -repository: https://github.com/mattn/mruby-eject.git +repository: https://github.com/mattn/mruby-eject.git +license: MIT diff --git a/mruby-env.gem b/mruby-env.gem index 36939ea..6e91446 100644 --- a/mruby-env.gem +++ b/mruby-env.gem @@ -3,4 +3,5 @@ description: ENV class implementation author: iij website: https://github.com/iij/mruby-env protocol: git -repository: https://github.com/iij/mruby-env.git +repository: https://github.com/iij/mruby-env.git +license: MIT diff --git a/mruby-erb.gem b/mruby-erb.gem index dea481b..8dadc7b 100644 --- a/mruby-erb.gem +++ b/mruby-erb.gem @@ -4,3 +4,4 @@ author: Jared Breeden website: https://github.com/jbreeden/mruby-erb protocol: git repository: https://github.com/jbreeden/mruby-erb.git +license: You can redistribute it and/or modify it under the same terms as Ruby diff --git a/mruby-errno.gem b/mruby-errno.gem index fbb2024..6335954 100644 --- a/mruby-errno.gem +++ b/mruby-errno.gem @@ -4,3 +4,4 @@ author: iij website: https://github.com/iij/mruby-errno protocol: git repository: https://github.com/iij/mruby-errno.git +license: MIT diff --git a/mruby-esp32-gpio.gem b/mruby-esp32-gpio.gem index ea6a5f1..86d39a6 100644 --- a/mruby-esp32-gpio.gem +++ b/mruby-esp32-gpio.gem @@ -4,3 +4,4 @@ author: YAMAMOTO Masaya website: https://github.com/mruby-esp32/mruby-esp32-gpio protocol: git repository: https://github.com/mruby-esp32/mruby-esp32-gpio.git +license: MIT diff --git a/mruby-esp32-i2c.gem b/mruby-esp32-i2c.gem index 7347911..4cdaeef 100644 --- a/mruby-esp32-i2c.gem +++ b/mruby-esp32-i2c.gem @@ -4,3 +4,4 @@ author: YAMAMOTO Masaya website: https://github.com/mruby-esp32/mruby-esp32-i2c protocol: git repository: https://github.com/mruby-esp32/mruby-esp32-i2c.git +license: MIT diff --git a/mruby-esp32-system.gem b/mruby-esp32-system.gem index b0ad9e6..4a5b797 100644 --- a/mruby-esp32-system.gem +++ b/mruby-esp32-system.gem @@ -4,3 +4,4 @@ author: Carson McDonald website: https://github.com/mruby-esp32/mruby-esp32-system protocol: git repository: https://github.com/mruby-esp32/mruby-esp32-system.git +license: MIT diff --git a/mruby-esp32-wifi.gem b/mruby-esp32-wifi.gem index 78d1011..4dc04b3 100644 --- a/mruby-esp32-wifi.gem +++ b/mruby-esp32-wifi.gem @@ -4,3 +4,4 @@ author: Carson McDonald website: https://github.com/mruby-esp32/mruby-esp32-wifi protocol: git repository: https://github.com/mruby-esp32/mruby-esp32-wifi.git +license: MIT diff --git a/mruby-etcd.gem b/mruby-etcd.gem index cf62f50..57ba98b 100644 --- a/mruby-etcd.gem +++ b/mruby-etcd.gem @@ -4,3 +4,4 @@ author: Uchio Kondo website: https://github.com/udzura/mruby-etcd protocol: git repository: https://github.com/udzura/mruby-etcd.git +license: MIT diff --git a/mruby-eventfd.gem b/mruby-eventfd.gem index 6bb20b7..c0099d6 100644 --- a/mruby-eventfd.gem +++ b/mruby-eventfd.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-eventfd protocol: git repository: https://github.com/matsumotory/mruby-eventfd.git +license: MIT diff --git a/mruby-factory.gem b/mruby-factory.gem new file mode 100644 index 0000000..2252eb5 --- /dev/null +++ b/mruby-factory.gem @@ -0,0 +1,8 @@ +name: mruby-factory +description: Factory implementation for mruby +author: OKURA Masafumi +license: MIT +website: https://github.com/okuramasafumi/mruby-factory +protocol: git +repository: https://github.com/okuramasafumi/mruby-factory.git +branch: main diff --git a/mruby-fast-json.gem b/mruby-fast-json.gem new file mode 100644 index 0000000..e55dcc6 --- /dev/null +++ b/mruby-fast-json.gem @@ -0,0 +1,12 @@ +name: mruby-fast-json +description: JSON Parsing and dumping for mruby, fast +author: Hendrik Beskow +website: https://github.com/Asmod4n/mruby-fast-json +protocol: git +repository: https://github.com/Asmod4n/mruby-fast-json.git +branch: main +dependencies: +- mruby-bigint +- mruby-chrono +- mruby-c-ext-helpers +license: Apache-2 diff --git a/mruby-fast-remote-check.gem b/mruby-fast-remote-check.gem index c7be017..ecefdfc 100644 --- a/mruby-fast-remote-check.gem +++ b/mruby-fast-remote-check.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-fast-remote-check protocol: git repository: https://github.com/matsumotory/mruby-fast-remote-check.git +license: MIT diff --git a/mruby-fiberpool.gem b/mruby-fiberpool.gem new file mode 100644 index 0000000..eaa9eeb --- /dev/null +++ b/mruby-fiberpool.gem @@ -0,0 +1,7 @@ +name: mruby-fiberpool +description: mruby port of fiberpool +author: mattn +website: https://github.com/mattn/mruby-fiberpool +protocol: git +repository: https://github.com/mattn/mruby-fiberpool.git +license: MIT diff --git a/mruby-file-access.gem b/mruby-file-access.gem index 1a38a7a..5939fb6 100644 --- a/mruby-file-access.gem +++ b/mruby-file-access.gem @@ -4,3 +4,4 @@ author: takumakume website: https://github.com/takumakume/mruby-file-access protocol: git repository: https://github.com/takumakume/mruby-file-access.git +license: MIT diff --git a/mruby-file-fnmatch.gem b/mruby-file-fnmatch.gem new file mode 100644 index 0000000..f510dda --- /dev/null +++ b/mruby-file-fnmatch.gem @@ -0,0 +1,7 @@ +name: mruby-file-fnmatch +description: File.fnmatch() +author: katzer +website: https://github.com/katzer/mruby-file-fnmatch +protocol: git +repository: https://github.com/katzer/mruby-file-fnmatch.git +license: MIT diff --git a/mruby-file-stat.gem b/mruby-file-stat.gem index ba7aa13..001120e 100644 --- a/mruby-file-stat.gem +++ b/mruby-file-stat.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/ksss/mruby-file-stat.git dependencies: - mruby-time +license: MIT diff --git a/mruby-filemagic.gem b/mruby-filemagic.gem index 9ad595c..3ec3696 100644 --- a/mruby-filemagic.gem +++ b/mruby-filemagic.gem @@ -4,3 +4,4 @@ author: k0u5uk3 website: https://github.com/k0u5uk3/mruby-filemagic.git protocol: git repository: https://github.com/k0u5uk3/mruby-filemagic.git +license: MIT diff --git a/mruby-float4.gem b/mruby-float4.gem index 79b9cee..5646bd2 100644 --- a/mruby-float4.gem +++ b/mruby-float4.gem @@ -4,3 +4,4 @@ author: Tomasz Dabrowski website: https://github.com/dabroz/mruby-float4 protocol: git repository: https://github.com/dabroz/mruby-float4.git +license: MIT diff --git a/mruby-fltk3.gem b/mruby-fltk3.gem index 83dc027..3a18829 100644 --- a/mruby-fltk3.gem +++ b/mruby-fltk3.gem @@ -3,4 +3,5 @@ description: FLTK3 GUI binding. author: mattn website: https://github.com/mattn/mruby-fltk3 protocol: git -repository: https://github.com/mattn/mruby-fltk3.git +repository: https://github.com/mattn/mruby-fltk3.git +license: MIT diff --git a/mruby-fluent-logger.gem b/mruby-fluent-logger.gem index f56b330..0ada70c 100644 --- a/mruby-fluent-logger.gem +++ b/mruby-fluent-logger.gem @@ -1,5 +1,5 @@ name: mruby-fluent-logger -description: A structured logger for Fluentd. +description: A structured logger for Fluentd. author: Kentaro Yoshida website: https://github.com/y-ken/fluent-logger-mruby protocol: git @@ -12,3 +12,4 @@ dependencies: - mruby-http - mruby-simplehttp-socket - mruby-httprequest +license: MIT diff --git a/mruby-forwardable.gem b/mruby-forwardable.gem index a77e603..1707c15 100644 --- a/mruby-forwardable.gem +++ b/mruby-forwardable.gem @@ -4,3 +4,4 @@ author: Masayoshi Takahashi website: https://github.com/takahashim/mruby-forwardable protocol: git repository: https://github.com/takahashim/mruby-forwardable.git +license: BSDL diff --git a/mruby-fsm.gem b/mruby-fsm.gem index da69594..b2e47e4 100644 --- a/mruby-fsm.gem +++ b/mruby-fsm.gem @@ -4,3 +4,4 @@ author: Paolo Bosetti, University of Trento website: https://github.com/UniTN-Mechatronics/mruby-fsm protocol: git repository: https://github.com/UniTN-Mechatronics/mruby-fsm.git +license: GPL 2.0 diff --git a/mruby-ftp.gem b/mruby-ftp.gem index 28b618c..66de414 100644 --- a/mruby-ftp.gem +++ b/mruby-ftp.gem @@ -4,3 +4,4 @@ author: Paolo Bosetti and Matteo Ragni, University of Trento website: https://github.com/UniTN-Mechatronics/mruby-ftp protocol: git repository: https://github.com/UniTN-Mechatronics/mruby-ftp.git +license: GPL 2.0 diff --git a/mruby-gemcut.gem b/mruby-gemcut.gem new file mode 100644 index 0000000..64c9981 --- /dev/null +++ b/mruby-gemcut.gem @@ -0,0 +1,7 @@ +name: mruby-gemcut +description: runtime reconfigurer for mruby gems +author: dearblue +website: https://github.com/dearblue/mruby-gemcut +protocol: git +repository: https://github.com/dearblue/mruby-gemcut.git +license: BSD-2-Clause diff --git a/mruby-geoip.gem b/mruby-geoip.gem index abebbba..9fb9103 100644 --- a/mruby-geoip.gem +++ b/mruby-geoip.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-geoip protocol: git repository: https://github.com/matsumotory/mruby-geoip.git +license: MIT diff --git a/mruby-getloadavg.gem b/mruby-getloadavg.gem index 27d5070..10eb43b 100644 --- a/mruby-getloadavg.gem +++ b/mruby-getloadavg.gem @@ -4,3 +4,4 @@ author: takumakume website: https://github.com/takumakume/mruby-getloadavg protocol: git repository: https://github.com/takumakume/mruby-getloadavg.git +license: MIT diff --git a/mruby-getoptlong.gem b/mruby-getoptlong.gem index c64dd57..7941513 100644 --- a/mruby-getoptlong.gem +++ b/mruby-getoptlong.gem @@ -4,3 +4,4 @@ author: Sergio Rubio website: https://github.com/rubiojr/mruby-getoptlong protocol: git repository: https://github.com/rubiojr/mruby-getoptlong +license: MIT diff --git a/mruby-getopts.gem b/mruby-getopts.gem index ea410fa..e7262ca 100644 --- a/mruby-getopts.gem +++ b/mruby-getopts.gem @@ -4,3 +4,4 @@ author: M&T Technology, Inc. website: https://github.com/mttech/mruby-getopts protocol: git repository: https://github.com/mttech/mruby-getopts +license: GPL diff --git a/mruby-getpass.gem b/mruby-getpass.gem index 149a330..d5bc7d0 100644 --- a/mruby-getpass.gem +++ b/mruby-getpass.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-getpass protocol: git repository: https://github.com/Asmod4n/mruby-getpass.git +license: Apache-2 diff --git a/mruby-gettimeofday.gem b/mruby-gettimeofday.gem new file mode 100644 index 0000000..32ae56a --- /dev/null +++ b/mruby-gettimeofday.gem @@ -0,0 +1,7 @@ +name: mruby-gettimeofday +description: A simple wrapper of `gettimeofday(2)` for mruby +author: mame +website: https://github.com/mame/mruby-gettimeofday +protocol: git +repository: https://github.com/mame/mruby-gettimeofday.git +license: MIT diff --git a/mruby-girffi-docgen.gem b/mruby-girffi-docgen.gem index a7ecf59..63a6b1d 100644 --- a/mruby-girffi-docgen.gem +++ b/mruby-girffi-docgen.gem @@ -1,8 +1,9 @@ name: mruby-girffi-docgen -description: Generates YARD docuemntation for bindings generated by mruby-girffi +description: Generates YARD documentation for bindings generated by mruby-girffi author: ppibburr website: https://github.com/ppibburr/mruby-girffi-docgen protocol: git repository: https://github.com/ppibburr/mruby-girffi-docgen.git dependencies: - mruby-girffi +license: MIT diff --git a/mruby-girffi.gem b/mruby-girffi.gem index 1dc6f40..0a7aa9e 100644 --- a/mruby-girffi.gem +++ b/mruby-girffi.gem @@ -8,3 +8,4 @@ dependencies: - mruby-gobject-introspection - mruby-allocate - mruby-named-constants +license: MIT diff --git a/mruby-gles.gem b/mruby-gles.gem index bd2932a..149305c 100644 --- a/mruby-gles.gem +++ b/mruby-gles.gem @@ -4,3 +4,4 @@ author: xxuejie website: https://github.com/xxuejie/mruby-gles protocol: git repository: https://github.com/xxuejie/mruby-gles.git +license: MIT diff --git a/mruby-glfw3.gem b/mruby-glfw3.gem index 4fd9ff4..d7d51fd 100644 --- a/mruby-glfw3.gem +++ b/mruby-glfw3.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/take-cheeze/mruby-glfw3.git dependencies: - mruby-gles2 +license: MIT diff --git a/mruby-glib.gem b/mruby-glib.gem index 5a2b897..895861f 100644 --- a/mruby-glib.gem +++ b/mruby-glib.gem @@ -4,3 +4,4 @@ author: Jared Breeden website: https://github.com/jbreeden/mruby-glib protocol: git repository: https://github.com/jbreeden/mruby-glib.git +license: MIT diff --git a/mruby-glib2.gem b/mruby-glib2.gem index cf36d5d..021f8ae 100644 --- a/mruby-glib2.gem +++ b/mruby-glib2.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/ppibburr/mruby-glib2.git dependencies: - mruby-girffi +license: MIT diff --git a/mruby-gmp-bignum.gem b/mruby-gmp-bignum.gem index 5f4b862..d7be4df 100644 --- a/mruby-gmp-bignum.gem +++ b/mruby-gmp-bignum.gem @@ -4,3 +4,4 @@ author: Ray Chason website: https://github.com/chasonr/mruby-gmp-bignum protocol: git repository: https://github.com/chasonr/mruby-gmp-bignum.git +license: MIT diff --git a/mruby-gntp.gem b/mruby-gntp.gem index 12eaafc..122616f 100644 --- a/mruby-gntp.gem +++ b/mruby-gntp.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-gntp protocol: git repository: https://github.com/mattn/mruby-gntp.git +license: MIT diff --git a/mruby-gobject-introspection.gem b/mruby-gobject-introspection.gem index d65daab..9b43680 100644 --- a/mruby-gobject-introspection.gem +++ b/mruby-gobject-introspection.gem @@ -1,8 +1,9 @@ name: mruby-gobject-introspection -description: bindings to GobjectIntropsection (libgirepository) +description: bindings to GObjectIntrospection (libgirepository) author: ppibburr website: https://github.com/ppibburr/mruby-gobject-introspection protocol: git repository: https://github.com/ppibburr/mruby-gobject-introspection.git dependencies: - mruby-rubyffi-compat +license: MIT diff --git a/mruby-gobject.gem b/mruby-gobject.gem index 0dd44bd..a604d05 100644 --- a/mruby-gobject.gem +++ b/mruby-gobject.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/ppibburr/mruby-gobject.git dependencies: - mruby-girffi +license: MIT diff --git a/mruby-gosu.gem b/mruby-gosu.gem new file mode 100644 index 0000000..c096635 --- /dev/null +++ b/mruby-gosu.gem @@ -0,0 +1,8 @@ +name: mruby-gosu +description: mruby wrapper for the Gosu game library +author: cyberarm +license: MIT +website: https://github.com/cyberarm/mruby-gosu +protocol: git +repository: https://github.com/cyberarm/mruby-gosu.git +branch: master diff --git a/mruby-gpu-narray.gem b/mruby-gpu-narray.gem new file mode 100644 index 0000000..4588991 --- /dev/null +++ b/mruby-gpu-narray.gem @@ -0,0 +1,8 @@ +name: mruby-gpu-narray +description: Numo-like N-dimensional array computed on the GPU via Vulkan Compute +author: Yuji Teshima +website: https://github.com/yujiteshima/mruby-gpu-narray +protocol: git +repository: https://github.com/yujiteshima/mruby-gpu-narray.git +branch: main +license: MIT diff --git a/mruby-graphviz.gem b/mruby-graphviz.gem new file mode 100644 index 0000000..50efccf --- /dev/null +++ b/mruby-graphviz.gem @@ -0,0 +1,8 @@ +name: mruby-graphviz +description: Graphviz binding for mruby to render DOT language graph diagram +author: gemmaro +website: https://codeberg.org/gemmaro/mruby-graphviz +protocol: git +repository: https://codeberg.org/gemmaro/mruby-graphviz.git +license: GPL-3.0-or-later +branch: main diff --git a/mruby-growthforecast.gem b/mruby-growthforecast.gem index d195c85..1d8005a 100644 --- a/mruby-growthforecast.gem +++ b/mruby-growthforecast.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-growthforecast protocol: git repository: https://github.com/matsumotory/mruby-growthforecast.git +license: MIT diff --git a/mruby-gsl.gem b/mruby-gsl.gem index 9022680..46fa7ad 100644 --- a/mruby-gsl.gem +++ b/mruby-gsl.gem @@ -4,3 +4,4 @@ author: Paolo Bosetti, University of Trento website: https://github.com/UniTN-Mechatronics/mruby-gsl protocol: git repository: https://github.com/UniTN-Mechatronics/mruby-gsl.git +license: MIT diff --git a/mruby-gtk2.gem b/mruby-gtk2.gem index 4b4baa6..fc237e7 100644 --- a/mruby-gtk2.gem +++ b/mruby-gtk2.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/ppibburr/mruby-gtk2.git dependencies: - mruby-girffi +license: MIT diff --git a/mruby-gtk3.gem b/mruby-gtk3.gem index da7a7ac..d8c09e8 100644 --- a/mruby-gtk3.gem +++ b/mruby-gtk3.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/ppibburr/mruby-gtk3.git dependencies: - mruby-girffi +license: MIT diff --git a/mruby-hashie.gem b/mruby-hashie.gem index 9bcbe5f..b7b7f98 100644 --- a/mruby-hashie.gem +++ b/mruby-hashie.gem @@ -4,3 +4,4 @@ author: ['Michael Bleigh', 'Jerry Cheung', 'Takashi Kokubun'] website: https://github.com/k0kubun/mruby-hashie protocol: git repository: https://github.com/k0kubun/mruby-hashie.git +license: MIT diff --git a/mruby-heeler.gem b/mruby-heeler.gem new file mode 100644 index 0000000..8ced3eb --- /dev/null +++ b/mruby-heeler.gem @@ -0,0 +1,7 @@ +name: mruby-heeler +description: Multi-process webserver +author: Sebastian Katzer +license: MIT +website: https://github.com/katzer/mruby-heeler +protocol: git +repository: https://github.com/katzer/mruby-heeler.git diff --git a/mruby-hibari.gem b/mruby-hibari.gem index a886f87..d613387 100644 --- a/mruby-hibari.gem +++ b/mruby-hibari.gem @@ -4,3 +4,4 @@ author: Kentaro Kuribayashi website: https://github.com/kentaro/mruby-hibari protocol: git repository: https://github.com/kentaro/mruby-hibari.git +license: MIT diff --git a/mruby-hiredis.gem b/mruby-hiredis.gem index ea42c46..8f8e26d 100644 --- a/mruby-hiredis.gem +++ b/mruby-hiredis.gem @@ -7,3 +7,4 @@ repository: https://github.com/Asmod4n/mruby-hiredis.git dependencies: - mruby-errno - mruby-redis-ae +license: Apache-2 diff --git a/mruby-hmac.gem b/mruby-hmac.gem new file mode 100644 index 0000000..0c80a3d --- /dev/null +++ b/mruby-hmac.gem @@ -0,0 +1,7 @@ +name: mruby-hmac +description: Digest::HMAC::hexdigest and Digest::HMAC::digest +author: scalone +license: MIT +website: https://github.com/scalone/mruby-hmac +protocol: git +repository: https://github.com/scalone/mruby-hmac.git diff --git a/mruby-hogun.gem b/mruby-hogun.gem index d1b0036..20f1f6b 100644 --- a/mruby-hogun.gem +++ b/mruby-hogun.gem @@ -1,6 +1,7 @@ name: mruby-hogun description: convenient library to build the command line interface. author: qtakamitsu -website: https://github.com/qtkmz/mruby-hogun +website: https://github.com/tk3/mruby-hogun protocol: git -repository: https://github.com/qtkmz/mruby-hogun.git +repository: https://github.com/tk3/mruby-hogun.git +license: MIT diff --git a/mruby-host-stats.gem b/mruby-host-stats.gem index e5349c2..511cb3b 100644 --- a/mruby-host-stats.gem +++ b/mruby-host-stats.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/schmurfy/host-stats.git dependencies: - mruby-rubyffi-compat +license: MIT diff --git a/mruby-hs-regexp.gem b/mruby-hs-regexp.gem index 155929b..a80f485 100644 --- a/mruby-hs-regexp.gem +++ b/mruby-hs-regexp.gem @@ -4,3 +4,4 @@ author: Masamitsu MURASE website: https://github.com/masamitsu-murase/mruby-hs-regexp protocol: git repository: https://github.com/masamitsu-murase/mruby-hs-regexp.git +license: BSD diff --git a/mruby-http.gem b/mruby-http.gem index ebf0738..49e785e 100644 --- a/mruby-http.gem +++ b/mruby-http.gem @@ -3,4 +3,5 @@ description: HTTP Parser author: mattn website: https://github.com/mattn/mruby-http protocol: git -repository: https://github.com/mattn/mruby-http.git +repository: https://github.com/mattn/mruby-http.git +license: Apache-2 diff --git a/mruby-http2.gem b/mruby-http2.gem index 7138949..4025045 100644 --- a/mruby-http2.gem +++ b/mruby-http2.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-http2 protocol: git repository: https://github.com/matsumotory/mruby-http2.git +license: MIT diff --git a/mruby-httprequest.gem b/mruby-httprequest.gem index 9ed5a09..4cd2827 100644 --- a/mruby-httprequest.gem +++ b/mruby-httprequest.gem @@ -7,3 +7,4 @@ repository: https://github.com/matsumotory/mruby-httprequest.git dependencies: - mruby-simplehttp - mruby-http +license: MIT diff --git a/mruby-httpsclient.gem b/mruby-httpsclient.gem index 633bfb5..72ce4ad 100644 --- a/mruby-httpsclient.gem +++ b/mruby-httpsclient.gem @@ -7,3 +7,4 @@ repository: https://github.com/Asmod4n/mruby-httpsclient.git dependencies: - mruby-tls - mruby-phr +license: Apache-2 diff --git a/mruby-iconv.gem b/mruby-iconv.gem index e03e328..1240cd7 100644 --- a/mruby-iconv.gem +++ b/mruby-iconv.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-iconv protocol: git repository: https://github.com/mattn/mruby-iconv.git +license: MIT diff --git a/mruby-iijson.gem b/mruby-iijson.gem index 098de29..c098464 100644 --- a/mruby-iijson.gem +++ b/mruby-iijson.gem @@ -4,3 +4,4 @@ author: iij website: https://github.com/iij/mruby-iijson protocol: git repository: https://github.com/iij/mruby-iijson.git +license: MIT diff --git a/mruby-implerr.gem b/mruby-implerr.gem index 90563f9..4bdc3a4 100644 --- a/mruby-implerr.gem +++ b/mruby-implerr.gem @@ -4,3 +4,4 @@ author: Kouichi Nakanishi website: https://github.com/keizo042/mruby-implerr protocol: git repository: https://github.com/keizo042/mruby-implerr.git +license: MIT diff --git a/mruby-inotify.gem b/mruby-inotify.gem index d945d78..8bdf230 100644 --- a/mruby-inotify.gem +++ b/mruby-inotify.gem @@ -3,4 +3,5 @@ description: Inotify bindings author: FlavourSys Technology GmbH website: https://github.com/FlavourSys/mruby-inotify protocol: git -repository: https://github.com/FlavourSys/mruby-inotify.git +repository: https://github.com/FlavourSys/mruby-inotify.git +license: MIT diff --git a/mruby-io-console.gem b/mruby-io-console.gem index f4de444..a701f46 100644 --- a/mruby-io-console.gem +++ b/mruby-io-console.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-io-console protocol: git repository: https://github.com/ksss/mruby-io-console.git +license: MIT diff --git a/mruby-io-copy_stream.gem b/mruby-io-copy_stream.gem index 6ec4ccb..fbdd735 100644 --- a/mruby-io-copy_stream.gem +++ b/mruby-io-copy_stream.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-io-copy_stream protocol: git repository: https://github.com/ksss/mruby-io-copy_stream.git +license: MIT diff --git a/mruby-io-uring.gem b/mruby-io-uring.gem new file mode 100644 index 0000000..a70eb5c --- /dev/null +++ b/mruby-io-uring.gem @@ -0,0 +1,13 @@ +name: mruby-io-uring +description: io-uring from linux for mruby +author: Hendrik Beskow +license: Apache-2 +website: https://github.com/Asmod4n/mruby-io_uring +protocol: git +repository: https://github.com/Asmod4n/mruby-io_uring.git +branch: main +dependencies: +- mruby-c-ext-helpers +- mruby-io +- mruby-socket +- mruby-errno diff --git a/mruby-io.gem b/mruby-io.gem deleted file mode 100644 index db97f74..0000000 --- a/mruby-io.gem +++ /dev/null @@ -1,6 +0,0 @@ -name: mruby-io -description: IO, File class implementation -author: iij -website: https://github.com/iij/mruby-io -protocol: git -repository: https://github.com/iij/mruby-io.git diff --git a/mruby-ionice.gem b/mruby-ionice.gem index cfab1f4..073fb59 100644 --- a/mruby-ionice.gem +++ b/mruby-ionice.gem @@ -4,3 +4,4 @@ author: takumakume website: https://github.com/takumakume/mruby-ionice protocol: git repository: https://github.com/takumakume/mruby-ionice.git +license: MIT diff --git a/mruby-ipaddr.gem b/mruby-ipaddr.gem index 36a919e..e50930f 100644 --- a/mruby-ipaddr.gem +++ b/mruby-ipaddr.gem @@ -7,3 +7,4 @@ repository: https://github.com/iij/mruby-ipaddr.git dependencies: - mruby-pack - mruby-socket +license: MIT diff --git a/mruby-ipfilter.gem b/mruby-ipfilter.gem index d562684..766d66d 100644 --- a/mruby-ipfilter.gem +++ b/mruby-ipfilter.gem @@ -4,3 +4,4 @@ author: tap1ra website: https://github.com/pepabo/mruby-ipfilter protocol: git repository: https://github.com/pepabo/mruby-ipfilter.git +license: MIT diff --git a/mruby-ipvs.gem b/mruby-ipvs.gem index 88af3b0..5d559e9 100644 --- a/mruby-ipvs.gem +++ b/mruby-ipvs.gem @@ -5,3 +5,4 @@ website: https://github.com/rrreeeyyy/mruby-ipvs protocol: git repository: https://github.com/rrreeeyyy/mruby-ipvs repooptions: --recursive +license: GNU General Public License diff --git a/mruby-jail.gem b/mruby-jail.gem new file mode 100644 index 0000000..4f4da91 --- /dev/null +++ b/mruby-jail.gem @@ -0,0 +1,8 @@ +name: mruby-jail +description: Enumerate, modify, and create FreeBSD jails with mruby and libjail(3) +author: 0x1eef +website: https://github.com/0x1eef/mruby-jail +protocol: git +repository: https://github.com/0x1eef/mruby-jail.git +branch: main +license: 0BSD diff --git a/mruby-javascriptcore.gem b/mruby-javascriptcore.gem index faa9948..28c85a0 100644 --- a/mruby-javascriptcore.gem +++ b/mruby-javascriptcore.gem @@ -4,3 +4,4 @@ author: ppibburr website: https://github.com/ppibburr/mruby-javascriptcore protocol: git repository: https://github.com/ppibburr/mruby-javascriptcore.git +license: MIT diff --git a/mruby-jpeg.gem b/mruby-jpeg.gem index 8eaa4b7..2272957 100644 --- a/mruby-jpeg.gem +++ b/mruby-jpeg.gem @@ -4,3 +4,4 @@ author: Carson McDonald website: https://github.com/carsonmcdonald/mruby-jpeg protocol: git repository: https://github.com/carsonmcdonald/mruby-jpeg.git +license: MIT diff --git a/mruby-json.gem b/mruby-json.gem index 1a09bc4..603efcc 100644 --- a/mruby-json.gem +++ b/mruby-json.gem @@ -3,4 +3,5 @@ description: JavaScript Object Notation author: mattn website: https://github.com/mattn/mruby-json protocol: git -repository: https://github.com/mattn/mruby-json.git +repository: https://github.com/mattn/mruby-json.git +license: MIT diff --git a/mruby-jvm.gem b/mruby-jvm.gem index 0f57d7b..a8b5e79 100644 --- a/mruby-jvm.gem +++ b/mruby-jvm.gem @@ -4,3 +4,4 @@ author: jkutner website: https://github.com/jkutner/mruby-jvm protocol: git repository: https://github.com/jkutner/mruby-jvm.git +license: MIT diff --git a/mruby-jwt.gem b/mruby-jwt.gem index 4232874..c30b4e8 100644 --- a/mruby-jwt.gem +++ b/mruby-jwt.gem @@ -10,3 +10,4 @@ dependencies: - mruby-digest - mruby-iijson - mruby-onig-regexp +license: MIT diff --git a/mruby-k2hash.gem b/mruby-k2hash.gem index ea3911b..669746f 100644 --- a/mruby-k2hash.gem +++ b/mruby-k2hash.gem @@ -4,3 +4,4 @@ author: Ryo Okubo website: https://github.com/syucream/mruby-k2hash protocol: git repository: https://github.com/syucream/mruby-k2hash.git +license: MIT diff --git a/mruby-kernel-process.gem b/mruby-kernel-process.gem new file mode 100644 index 0000000..ae1e795 --- /dev/null +++ b/mruby-kernel-process.gem @@ -0,0 +1,8 @@ +name: mruby-kernel-process +description: Kernel::Process is a bridge between mruby and FreeBSD's process table +author: 0x1eef +website: https://github.com/0x1eef/mruby-kernel-process +protocol: git +repository: https://github.com/0x1eef/mruby-kernel-process.git +branch: main +license: 0BSD diff --git a/mruby-kmp.gem b/mruby-kmp.gem index d7f6e7c..bb20a92 100644 --- a/mruby-kmp.gem +++ b/mruby-kmp.gem @@ -1,6 +1,7 @@ name: mruby-kmp -description: KMP searching algorithm in mruby +description: KMP searching algorithm in mruby author: santazhang website: https://github.com/santazhang/mruby-kmp protocol: git repository: https://github.com/santazhang/mruby-kmp.git +license: MIT diff --git a/mruby-knn-detector.gem b/mruby-knn-detector.gem new file mode 100644 index 0000000..0ce4b35 --- /dev/null +++ b/mruby-knn-detector.gem @@ -0,0 +1,7 @@ +name: mruby-knn-detector +description: Anomaly detector based on K-Nearest Neighbor +author: tsurubee +website: https://github.com/tsurubee/mruby-knn-detector +protocol: git +repository: https://github.com/tsurubee/mruby-knn-detector.git +license: MIT diff --git a/mruby-leapmotion.gem b/mruby-leapmotion.gem index 735ed81..4e7acec 100644 --- a/mruby-leapmotion.gem +++ b/mruby-leapmotion.gem @@ -4,3 +4,4 @@ author: crimsonwoods website: https://github.com/crimsonwoods/mruby-leapmotion protocol: git repository: https://github.com/crimsonwoods/mruby-leapmotion.git +license: MIT diff --git a/mruby-leveldb.gem b/mruby-leveldb.gem index b393ab7..bd0bfbf 100644 --- a/mruby-leveldb.gem +++ b/mruby-leveldb.gem @@ -4,3 +4,4 @@ author: Takeshi Watanabe website: https://github.com/take-cheeze/mruby-leveldb protocol: git repository: https://github.com/take-cheeze/mruby-leveldb.git +license: BSD3 diff --git a/mruby-libdeflate.gem b/mruby-libdeflate.gem new file mode 100644 index 0000000..8ce766e --- /dev/null +++ b/mruby-libdeflate.gem @@ -0,0 +1,8 @@ +name: mruby-libdeflate +description: libdeflate for mruby +author: Hendrik Beskow +license: Apache-2 +website: https://github.com/Asmod4n/mruby-libdeflate +protocol: git +repository: https://github.com/Asmod4n/mruby-libdeflate.git +branch: main # Need to set this if default branch is not "master" diff --git a/mruby-libhydrogen.gem b/mruby-libhydrogen.gem index d4dda55..db4e89a 100644 --- a/mruby-libhydrogen.gem +++ b/mruby-libhydrogen.gem @@ -7,3 +7,4 @@ repository: https://github.com/Asmod4n/mruby-libhydrogen.git dependencies: - mruby-string-ext - mruby-errno +license: ISC diff --git a/mruby-libqrng.gem b/mruby-libqrng.gem index 5ef17dd..abae90c 100644 --- a/mruby-libqrng.gem +++ b/mruby-libqrng.gem @@ -4,3 +4,4 @@ author: cremno website: https://github.com/cremno/mruby-libqrng protocol: git repository: https://github.com/cremno/mruby-libqrng.git +license: MIT diff --git a/mruby-libsodium.gem b/mruby-libsodium.gem index b1f94a6..8e219d0 100644 --- a/mruby-libsodium.gem +++ b/mruby-libsodium.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-libsodium protocol: git repository: https://github.com/Asmod4n/mruby-libsodium.git +license: Apache-2 diff --git a/mruby-limits.gem b/mruby-limits.gem index b377289..b269378 100644 --- a/mruby-limits.gem +++ b/mruby-limits.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-limits protocol: git repository: https://github.com/ksss/mruby-limits.git +license: MIT diff --git a/mruby-linenoise.gem b/mruby-linenoise.gem index 88400fc..c68979c 100644 --- a/mruby-linenoise.gem +++ b/mruby-linenoise.gem @@ -7,3 +7,4 @@ repository: https://github.com/Asmod4n/mruby-linenoise.git dependencies: - mruby-errno - mruby-struct +license: Simplified BSD License diff --git a/mruby-linux-namespace.gem b/mruby-linux-namespace.gem index 3d47a48..69996e0 100644 --- a/mruby-linux-namespace.gem +++ b/mruby-linux-namespace.gem @@ -4,3 +4,4 @@ author: Russel Hunter Yukawa / Uchio Kondo website: https://github.com/haconiwa/mruby-linux-namespace protocol: git repository: https://github.com/haconiwa/mruby-linux-namespace.git +license: MIT diff --git a/mruby-llm.gem b/mruby-llm.gem new file mode 100644 index 0000000..3855e4f --- /dev/null +++ b/mruby-llm.gem @@ -0,0 +1,8 @@ +name: mruby-llm +description: mruby's most capable AI runtime +author: 0x1eef +website: https://llmrb.github.io/mruby-llm +protocol: git +repository: https://github.com/llmrb/mruby-llm.git +branch: main +license: 0BSD diff --git a/mruby-lmdb.gem b/mruby-lmdb.gem index 767d4ae..d9abb48 100644 --- a/mruby-lmdb.gem +++ b/mruby-lmdb.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-lmdb protocol: git repository: https://github.com/Asmod4n/mruby-lmdb.git +license: Apache-2 diff --git a/mruby-localmemcache.gem b/mruby-localmemcache.gem index fb72156..6de81a3 100644 --- a/mruby-localmemcache.gem +++ b/mruby-localmemcache.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-localmemcache protocol: git repository: https://github.com/matsumotory/mruby-localmemcache.git +license: MIT diff --git a/mruby-logger.gem b/mruby-logger.gem index b83286b..df5e8a5 100644 --- a/mruby-logger.gem +++ b/mruby-logger.gem @@ -4,3 +4,4 @@ author: katzer website: https://github.com/katzer/mruby-logger protocol: git repository: https://github.com/katzer/mruby-logger.git +license: MIT diff --git a/mruby-lruc.gem b/mruby-lruc.gem index 02df56e..61f6037 100644 --- a/mruby-lruc.gem +++ b/mruby-lruc.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-lruc protocol: git repository: https://github.com/matsumotory/mruby-lruc.git +license: MIT diff --git a/mruby-lua.gem b/mruby-lua.gem index f586610..85c1491 100644 --- a/mruby-lua.gem +++ b/mruby-lua.gem @@ -4,3 +4,4 @@ author: Daisuke YAMAGUCHI website: https://github.com/dyama/mruby-lua protocol: git repository: https://github.com/dyama/mruby-lua.git +license: MIT diff --git a/mruby-lz4.gem b/mruby-lz4.gem index b316dc7..aafd14a 100644 --- a/mruby-lz4.gem +++ b/mruby-lz4.gem @@ -4,3 +4,4 @@ author: dearblue website: https://github.com/dearblue/mruby-lz4 protocol: git repository: https://github.com/dearblue/mruby-lz4.git +license: BSD-2-Clause diff --git a/mruby-lzma.gem b/mruby-lzma.gem index 4a96f78..1195db3 100644 --- a/mruby-lzma.gem +++ b/mruby-lzma.gem @@ -4,3 +4,4 @@ author: dearblue website: https://github.com/dearblue/mruby-lzma protocol: git repository: https://github.com/dearblue/mruby-lzma.git +license: BSD-2-Clause diff --git a/mruby-m2x.gem b/mruby-m2x.gem index 68c6661..a79e299 100644 --- a/mruby-m2x.gem +++ b/mruby-m2x.gem @@ -1,6 +1,7 @@ name: mruby-m2x -description: Client library for AT&T’s M2X API +description: Client library for AT&T’s M2X API (fork) author: AT&T M2X Team -website: https://github.com/attm2x/m2x-mruby +website: https://github.com/attsdk/m2x-mruby protocol: git -repository: https://github.com/attm2x/m2x-mruby.git +repository: https://github.com/attsdk/m2x-mruby.git +license: MIT diff --git a/mruby-markdown.gem b/mruby-markdown.gem index 17b13d5..8405054 100644 --- a/mruby-markdown.gem +++ b/mruby-markdown.gem @@ -5,3 +5,4 @@ website: https://github.com/carsonmcdonald/mruby-markdown protocol: git repository: https://github.com/carsonmcdonald/mruby-markdown.git repooptions: --recursive +license: MIT diff --git a/mruby-marshal-c.gem b/mruby-marshal-c.gem new file mode 100644 index 0000000..12e0116 --- /dev/null +++ b/mruby-marshal-c.gem @@ -0,0 +1,7 @@ +name: mruby-marshal-c +description: Marshal module for mruby written in C-language with full object-link & symbol link support +author: Lanza Schneider +license: Public domain +website: https://github.com/LanzaSchneider/mruby-marshal-c +protocol: git +repository: https://github.com/LanzaSchneider/mruby-marshal-c.git diff --git a/mruby-marshal-fast.gem b/mruby-marshal-fast.gem new file mode 100644 index 0000000..2393d62 --- /dev/null +++ b/mruby-marshal-fast.gem @@ -0,0 +1,7 @@ +name: mruby-marshal-fast +description: Marshal module for mruby written in C, with speed advantages +author: Carlo Prelz +website: https://github.com/asfluido/mruby-marshal-fast +protocol: git +repository: https://github.com/asfluido/mruby-marshal-fast.git +license: MIT diff --git a/mruby-marshal.gem b/mruby-marshal.gem index aa97b07..9e59f7a 100644 --- a/mruby-marshal.gem +++ b/mruby-marshal.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/take-cheeze/mruby-marshal.git dependencies: - mruby-onig-regexp +license: MIT diff --git a/mruby-matrix.gem b/mruby-matrix.gem index 00d9f82..8ae6802 100644 --- a/mruby-matrix.gem +++ b/mruby-matrix.gem @@ -4,3 +4,4 @@ author: listrophy website: https://github.com/listrophy/mruby-matrix protocol: git repository: https://github.com/listrophy/mruby-matrix.git +license: Apache v2 diff --git a/mruby-maxminddb.gem b/mruby-maxminddb.gem index ac95a3d..f9a3ace 100644 --- a/mruby-maxminddb.gem +++ b/mruby-maxminddb.gem @@ -1,6 +1,7 @@ name: mruby-maxminddb -description: mruby [GeoIP2 MaxMind DB](http://maxmind.github.io/MaxMind-DB/) reader +description: mruby [GeoIP2 MaxMind DB](https://maxmind.github.io/MaxMind-DB/) reader author: Kenichi Mitsugi website: https://github.com/happysiro/mruby-maxminddb protocol: git repository: https://github.com/happysiro/mruby-maxminddb +license: MIT diff --git a/mruby-md5.gem b/mruby-md5.gem index bcce7b9..0b6e7be 100644 --- a/mruby-md5.gem +++ b/mruby-md5.gem @@ -1,6 +1,7 @@ name: mruby-md5 -description: MD5 Hash Alghorithm +description: MD5 Hash Algorithm author: mattn website: https://github.com/mattn/mruby-md5 protocol: git repository: https://github.com/mattn/mruby-md5.git +license: MIT diff --git a/mruby-mecab.gem b/mruby-mecab.gem index 1f5c620..8abf52b 100644 --- a/mruby-mecab.gem +++ b/mruby-mecab.gem @@ -3,4 +3,5 @@ description: Japanese morphological analyzer author: mattn website: https://github.com/mattn/mruby-mecab protocol: git -repository: https://github.com/mattn/mruby-mecab.git +repository: https://github.com/mattn/mruby-mecab.git +license: MIT diff --git a/mruby-memcached.gem b/mruby-memcached.gem index 97a7594..2980fb9 100644 --- a/mruby-memcached.gem +++ b/mruby-memcached.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-memcached protocol: git repository: https://github.com/matsumotory/mruby-memcached.git +license: MIT diff --git a/mruby-merb.gem b/mruby-merb.gem index 479e6e5..8010dde 100644 --- a/mruby-merb.gem +++ b/mruby-merb.gem @@ -3,4 +3,5 @@ description: ERB-like mruby gem author: pbosetti website: https://github.com/pbosetti/mruby-merb protocol: git -repository: https://github.com/pbosetti/mruby-merb.git \ No newline at end of file +repository: https://github.com/pbosetti/mruby-merb.git +license: MIT diff --git a/mruby-method.gem b/mruby-method.gem index b6dbd9a..7a8cb83 100644 --- a/mruby-method.gem +++ b/mruby-method.gem @@ -1,6 +1,7 @@ name: mruby-method -description: A implementetion of class Method and UnboundMethod for mruby +description: A implementation of class Method and UnboundMethod for mruby author: ksss website: https://github.com/ksss/mruby-method protocol: git repository: https://github.com/ksss/mruby-method.git +license: MIT diff --git a/mruby-minigame.gem b/mruby-minigame.gem index 92ec706..55e91f1 100644 --- a/mruby-minigame.gem +++ b/mruby-minigame.gem @@ -4,3 +4,4 @@ author: bggd website: https://github.com/bggd/mruby-minigame protocol: git repository: https://github.com/bggd/mruby-minigame.git +license: MIT diff --git a/mruby-miniz.gem b/mruby-miniz.gem new file mode 100644 index 0000000..11e7f8f --- /dev/null +++ b/mruby-miniz.gem @@ -0,0 +1,7 @@ +name: mruby-miniz +description: Ruby interface for Miniz v1.15, a zlib-subset to deflate/inflate and zip/unzip without dir support +author: scalone +license: MIT +website: https://github.com/scalone/mruby-miniz +protocol: git +repository: https://github.com/scalone/mruby-miniz.git diff --git a/mruby-mod-mruby-ext.gem b/mruby-mod-mruby-ext.gem index 4893e19..4c44f1e 100644 --- a/mruby-mod-mruby-ext.gem +++ b/mruby-mod-mruby-ext.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-mod-mruby-ext protocol: git repository: https://github.com/matsumotory/mruby-mod-mruby-ext.git +license: MIT diff --git a/mruby-mrbgem-template.gem b/mruby-mrbgem-template.gem index 0c634ff..1fa7cde 100644 --- a/mruby-mrbgem-template.gem +++ b/mruby-mrbgem-template.gem @@ -7,3 +7,4 @@ repository: https://github.com/matsumotory/mruby-mrbgem-template.git dependencies: - mruby-io - mruby-dir +license: MIT diff --git a/mruby-mrmagick.gem b/mruby-mrmagick.gem index e5d6d1e..bfad10f 100644 --- a/mruby-mrmagick.gem +++ b/mruby-mrmagick.gem @@ -7,3 +7,4 @@ repository: https://github.com/kjunichi/mruby-mrmagick.git dependencies: - mruby-array-ext - mruby-print +license: MIT diff --git a/mruby-msagent.gem b/mruby-msagent.gem index 0d6ee33..a195d6e 100644 --- a/mruby-msagent.gem +++ b/mruby-msagent.gem @@ -3,4 +3,5 @@ description: Microsoft Agent author: mattn website: https://github.com/mattn/mruby-msagent protocol: git -repository: https://github.com/mattn/mruby-msagent.git +repository: https://github.com/mattn/mruby-msagent.git +license: MIT diff --git a/mruby-msd.gem b/mruby-msd.gem index ab859dd..d62c0c4 100644 --- a/mruby-msd.gem +++ b/mruby-msd.gem @@ -4,3 +4,4 @@ author: pyama86 website: https://github.com/pepabo/mruby-msd protocol: git repository: https://github.com/pepabo/mruby-msd.git +license: MIT diff --git a/mruby-msgpack.gem b/mruby-msgpack.gem index d8bd569..a29f702 100644 --- a/mruby-msgpack.gem +++ b/mruby-msgpack.gem @@ -4,3 +4,4 @@ author: Jun Hiroe website: https://github.com/suzukaze/mruby-msgpack protocol: git repository: https://github.com/suzukaze/mruby-msgpack.git +license: Apache2.0 diff --git a/mruby-mtest.gem b/mruby-mtest.gem index 5400eed..4f585c6 100644 --- a/mruby-mtest.gem +++ b/mruby-mtest.gem @@ -4,3 +4,4 @@ author: Internet Initiative Japan., Inc. website: https://github.com/iij/mruby-mtest protocol: git repository: https://github.com/iij/mruby-mtest.git +license: MIT diff --git a/mruby-murmurhash1.gem b/mruby-murmurhash1.gem index 6ddb26f..8e52ffc 100644 --- a/mruby-murmurhash1.gem +++ b/mruby-murmurhash1.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-murmurhash1 protocol: git repository: https://github.com/ksss/mruby-murmurhash1.git +license: MIT diff --git a/mruby-murmurhash2.gem b/mruby-murmurhash2.gem index 09d21ae..2e98358 100644 --- a/mruby-murmurhash2.gem +++ b/mruby-murmurhash2.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-murmurhash2 protocol: git repository: https://github.com/ksss/mruby-murmurhash2.git +license: MIT diff --git a/mruby-mutex.gem b/mruby-mutex.gem index dc0e188..1a25357 100644 --- a/mruby-mutex.gem +++ b/mruby-mutex.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-mutex protocol: git repository: https://github.com/matsumotory/mruby-mutex.git +license: MIT diff --git a/mruby-mysql.gem b/mruby-mysql.gem index f562457..7f0d003 100644 --- a/mruby-mysql.gem +++ b/mruby-mysql.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-mysql protocol: git repository: https://github.com/mattn/mruby-mysql.git +license: MIT diff --git a/mruby-named-constants.gem b/mruby-named-constants.gem index d04edbb..5e729ec 100644 --- a/mruby-named-constants.gem +++ b/mruby-named-constants.gem @@ -4,3 +4,4 @@ author: ppibburr website: https://github.com/ppibburr/mruby-named-constants protocol: git repository: https://github.com/ppibburr/mruby-named-constants.git +license: MIT diff --git a/mruby-nanovg.gem b/mruby-nanovg.gem index c4743d8..1509a3d 100644 --- a/mruby-nanovg.gem +++ b/mruby-nanovg.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/IceDragon200/mruby-nanovg dependencies: - mruby-gles +license: MIT diff --git a/mruby-netlink.gem b/mruby-netlink.gem index 559e1ec..07945a5 100644 --- a/mruby-netlink.gem +++ b/mruby-netlink.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-netlink protocol: git repository: https://github.com/matsumotory/mruby-netlink.git +license: MIT diff --git a/mruby-network-analyzer.gem b/mruby-network-analyzer.gem new file mode 100644 index 0000000..2005591 --- /dev/null +++ b/mruby-network-analyzer.gem @@ -0,0 +1,7 @@ +name: mruby-network-analyzer +description: network statistics class +author: pyama86 +website: https://github.com/pyama86/mruby-network-analyzer +protocol: git +repository: https://github.com/pyama86/mruby-network-analyzer.git +license: GNU General Public License diff --git a/mruby-ngx-mruby-ext.gem b/mruby-ngx-mruby-ext.gem index 88a624e..5862c83 100644 --- a/mruby-ngx-mruby-ext.gem +++ b/mruby-ngx-mruby-ext.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-ngx-mruby-ext protocol: git repository: https://github.com/matsumotory/mruby-ngx-mruby-ext.git +license: MIT diff --git a/mruby-oauth.gem b/mruby-oauth.gem index 115d6d2..4363dc8 100644 --- a/mruby-oauth.gem +++ b/mruby-oauth.gem @@ -11,3 +11,4 @@ dependencies: - mruby-sleep - mruby-http - mruby-httprequest +license: MIT diff --git a/mruby-odbc.gem b/mruby-odbc.gem index a499a1a..e848a32 100644 --- a/mruby-odbc.gem +++ b/mruby-odbc.gem @@ -1,6 +1,7 @@ name: mruby-odbc description: unixODBC bindings author: qtakamitsu -website: https://github.com/qtkmz/mruby-odbc +website: https://github.com/tk3/mruby-odbc protocol: git -repository: https://github.com/qtkmz/mruby-odbc.git +repository: https://github.com/tk3/mruby-odbc.git +license: MIT diff --git a/mruby-onig-regexp.gem b/mruby-onig-regexp.gem index 257e347..859e7f6 100644 --- a/mruby-onig-regexp.gem +++ b/mruby-onig-regexp.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-onig-regexp protocol: git repository: https://github.com/mattn/mruby-onig-regexp.git +license: MIT diff --git a/mruby-open3.gem b/mruby-open3.gem index 801bb2f..acd3fbe 100644 --- a/mruby-open3.gem +++ b/mruby-open3.gem @@ -4,3 +4,4 @@ author: Takashi Kokubun website: https://github.com/k0kubun/mruby-open3 protocol: git repository: https://github.com/k0kubun/mruby-open3.git +license: MIT diff --git a/mruby-optparse.gem b/mruby-optparse.gem index 3aa9ea5..10ed8e5 100644 --- a/mruby-optparse.gem +++ b/mruby-optparse.gem @@ -4,3 +4,4 @@ author: fastly website: https://github.com/fastly/mruby-optparse protocol: git repository: https://github.com/fastly/mruby-optparse.git +license: MIT diff --git a/mruby-opvault.gem b/mruby-opvault.gem index 653ba6f..fdef47a 100644 --- a/mruby-opvault.gem +++ b/mruby-opvault.gem @@ -4,3 +4,4 @@ author: Seiei Miyagi website: https://github.com/hanachin/mruby-opvault protocol: git repository: https://github.com/hanachin/mruby-opvault.git +license: MIT diff --git a/mruby-os.gem b/mruby-os.gem index 5ffabc4..e29944a 100644 --- a/mruby-os.gem +++ b/mruby-os.gem @@ -1,6 +1,7 @@ name: mruby-os description: Determine system and binary capabilities author: katzer -website: https://github.com/appPlant/mruby-os +website: https://github.com/katzer/mruby-os protocol: git -repository: https://github.com/appPlant/mruby-os.git +repository: https://github.com/katzer/mruby-os.git +license: MIT diff --git a/mruby-ostruct.gem b/mruby-ostruct.gem index da51e25..7b7e027 100644 --- a/mruby-ostruct.gem +++ b/mruby-ostruct.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-ostruct protocol: git repository: https://github.com/ksss/mruby-ostruct.git +license: MIT diff --git a/mruby-otp.gem b/mruby-otp.gem index 5741639..dc46c15 100644 --- a/mruby-otp.gem +++ b/mruby-otp.gem @@ -4,3 +4,4 @@ author: Emanuele Vicentini website: https://github.com/baldowl/mruby-otp protocol: git repository: https://github.com/baldowl/mruby-otp.git +license: MIT diff --git a/mruby-otpauth.gem b/mruby-otpauth.gem index cd5576f..3181964 100644 --- a/mruby-otpauth.gem +++ b/mruby-otpauth.gem @@ -1,6 +1,7 @@ name: mruby-otpauth description: One time password class author: qtakamitsu -website: https://github.com/qtkmz/mruby-otpauth +website: https://github.com/tk3/mruby-otpauth protocol: git -repository: https://github.com/qtkmz/mruby-otpauth.git +repository: https://github.com/tk3/mruby-otpauth.git +license: MIT diff --git a/mruby-oui.gem b/mruby-oui.gem index 8664660..f7361c7 100644 --- a/mruby-oui.gem +++ b/mruby-oui.gem @@ -4,3 +4,4 @@ author: Corey Powell website: https://github.com/IceDragon200/mruby-oui protocol: git repository: https://github.com/IceDragon200/mruby-oui +license: MIT diff --git a/mruby-pack.gem b/mruby-pack.gem deleted file mode 100644 index d3f9297..0000000 --- a/mruby-pack.gem +++ /dev/null @@ -1,6 +0,0 @@ -name: mruby-pack -description: Array#pack implementation -author: Internet Initiative Japan., Inc. -website: https://github.com/iij/mruby-pack -protocol: git -repository: https://github.com/iij/mruby-pack.git diff --git a/mruby-passwdqc.gem b/mruby-passwdqc.gem index 7f77fc8..fa63a3c 100644 --- a/mruby-passwdqc.gem +++ b/mruby-passwdqc.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-passwdqc protocol: git repository: https://github.com/Asmod4n/mruby-passwdqc +license: Apache-2 diff --git a/mruby-pcre-regexp.gem b/mruby-pcre-regexp.gem index 4afe715..0b57e21 100644 --- a/mruby-pcre-regexp.gem +++ b/mruby-pcre-regexp.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-pcre-regexp protocol: git repository: https://github.com/mattn/mruby-pcre-regexp.git +license: MIT diff --git a/mruby-perlin-noise.gem b/mruby-perlin-noise.gem index 2580753..4e215d8 100644 --- a/mruby-perlin-noise.gem +++ b/mruby-perlin-noise.gem @@ -4,3 +4,4 @@ author: ['Junegunn Choi', 'Matthew Johnston', 'Tomasz Dabrowski'] website: https://github.com/dabroz/mruby-perlin-noise protocol: git repository: https://github.com/dabroz/mruby-perlin-noise.git +license: MIT diff --git a/mruby-phr.gem b/mruby-phr.gem index 6c64290..1807a2e 100644 --- a/mruby-phr.gem +++ b/mruby-phr.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-phr protocol: git repository: https://github.com/Asmod4n/mruby-phr.git +license: Apache-2 diff --git a/mruby-pid.gem b/mruby-pid.gem index b439613..6bfe318 100644 --- a/mruby-pid.gem +++ b/mruby-pid.gem @@ -4,3 +4,4 @@ author: Andrew Nordman website: https://github.com/cadwallion/mruby-pid protocol: git repository: https://github.com/cadwallion/mruby-pid.git +license: MIT diff --git a/mruby-ping.gem b/mruby-ping.gem index 4de341d..dcf70e8 100644 --- a/mruby-ping.gem +++ b/mruby-ping.gem @@ -4,3 +4,4 @@ author: Julien Ammous website: https://github.com/schmurfy/mruby-ping protocol: git repository: https://github.com/schmurfy/mruby-ping +license: MIT diff --git a/mruby-pjson.gem b/mruby-pjson.gem index fb8b23a..247e0c5 100644 --- a/mruby-pjson.gem +++ b/mruby-pjson.gem @@ -3,4 +3,5 @@ description: JSON Parser written in pure mruby author: mattn website: https://github.com/mattn/mruby-pjson protocol: git -repository: https://github.com/mattn/mruby-pjson.git +repository: https://github.com/mattn/mruby-pjson.git +license: MIT diff --git a/mruby-pkcs5.gem b/mruby-pkcs5.gem index 20983d7..e665e86 100644 --- a/mruby-pkcs5.gem +++ b/mruby-pkcs5.gem @@ -4,3 +4,4 @@ author: Seiei Miyagi website: https://github.com/hanachin/mruby-pkcs5 protocol: git repository: https://github.com/hanachin/mruby-pkcs5.git +license: MIT diff --git a/mruby-plplot.gem b/mruby-plplot.gem index 7ed4a71..65cd9a5 100644 --- a/mruby-plplot.gem +++ b/mruby-plplot.gem @@ -3,4 +3,5 @@ description: PLPlot mruby interface author: Paolo Bosetti website: https://github.com/pbosetti/mruby-plplot protocol: git -repository: https://github.com/pbosetti/mruby-plplot.git \ No newline at end of file +repository: https://github.com/pbosetti/mruby-plplot.git +license: MIT diff --git a/mruby-polarssl.gem b/mruby-polarssl.gem index 7a4cf40..9a55e91 100644 --- a/mruby-polarssl.gem +++ b/mruby-polarssl.gem @@ -1,5 +1,5 @@ name: mruby-polarssl -description: SSL and cryptography functionality from PolarSSL in your mruby programs +description: SSL and cryptography functionality from PolarSSL in your mruby programs author: luisbebop website: https://github.com/luisbebop/mruby-polarssl protocol: git @@ -7,3 +7,4 @@ repository: https://github.com/luisbebop/mruby-polarssl.git dependencies: - mruby-io - mruby-mtest +license: GPL diff --git a/mruby-poll.gem b/mruby-poll.gem index 9620917..a88df8e 100644 --- a/mruby-poll.gem +++ b/mruby-poll.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/Asmod4n/mruby-poll.git dependencies: - mruby-errno +license: MIT diff --git a/mruby-pong.gem b/mruby-pong.gem index 84903f2..582c4c8 100644 --- a/mruby-pong.gem +++ b/mruby-pong.gem @@ -1,6 +1,7 @@ name: mruby-pong -description: mruby-pong is a simple library for quickly creating web applications in MRuby +description: mruby-pong is a simple library for quickly creating web applications in mruby author: Nazarii Sheremet website: https://nsheremet.github.io/mruby-pong protocol: git -repository: https://github.com/nsheremet/mruby-pong.git \ No newline at end of file +repository: https://github.com/nsheremet/mruby-pong.git +license: MPL-2.0 diff --git a/mruby-posix-regexp.gem b/mruby-posix-regexp.gem new file mode 100644 index 0000000..5b2f01d --- /dev/null +++ b/mruby-posix-regexp.gem @@ -0,0 +1,7 @@ +name: mruby-posix-regexp +description: mruby's Regexp class implementation using libc's posix-based regexp +author: Uchio Kondo +website: https://github.com/udzura/mruby-posix-regexp +protocol: git +repository: https://github.com/udzura/mruby-posix-regexp.git +license: MIT diff --git a/mruby-posix_ipc.gem b/mruby-posix_ipc.gem index af5e27d..88037cf 100644 --- a/mruby-posix_ipc.gem +++ b/mruby-posix_ipc.gem @@ -4,3 +4,4 @@ author: Uchio Kondo website: https://github.com/udzura/mruby-posix_ipc protocol: git repository: https://github.com/udzura/mruby-posix_ipc.git +license: MIT diff --git a/mruby-postgresql.gem b/mruby-postgresql.gem new file mode 100644 index 0000000..76f6017 --- /dev/null +++ b/mruby-postgresql.gem @@ -0,0 +1,9 @@ +name: mruby-postgresql +description: Postgresql adapter for mruby +author: Hendrik Beskow +website: https://github.com/Asmod4n/mruby-postgresql +protocol: git +repository: https://github.com/Asmod4n/mruby-postgresql.git +dependencies: +- mruby-errno +license: Apache-2.0 diff --git a/mruby-proc-irep-ext.gem b/mruby-proc-irep-ext.gem index 6657673..0843d0b 100644 --- a/mruby-proc-irep-ext.gem +++ b/mruby-proc-irep-ext.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-proc-irep-ext protocol: git repository: https://github.com/Asmod4n/mruby-proc-irep-ext.git +license: Apache-2 diff --git a/mruby-process.gem b/mruby-process.gem index ecff526..293e55d 100644 --- a/mruby-process.gem +++ b/mruby-process.gem @@ -4,3 +4,4 @@ author: Internet Initiative Japan., Inc. website: https://github.com/iij/mruby-process protocol: git repository: https://github.com/iij/mruby-process.git +license: MIT diff --git a/mruby-process2.gem b/mruby-process2.gem index 30428aa..ddf11ef 100644 --- a/mruby-process2.gem +++ b/mruby-process2.gem @@ -1,6 +1,7 @@ name: mruby-process2 description: Implementation of the Ruby 2.4.1 Core Library Process for mruby. author: katzer -website: https://github.com/appPlant/mruby-process +website: https://github.com/katzer/mruby-process protocol: git -repository: https://github.com/appPlant/mruby-process.git +repository: https://github.com/katzer/mruby-process.git +license: MIT diff --git a/mruby-publicsuffix.gem b/mruby-publicsuffix.gem new file mode 100644 index 0000000..1b764c2 --- /dev/null +++ b/mruby-publicsuffix.gem @@ -0,0 +1,7 @@ +name: mruby-publicsuffix +description: mruby port of publicsuffix-ruby. PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains. +author: Okumura Takahiro +website: https://github.com/hfm/mruby-publicsuffix +protocol: git +repository: https://github.com/hfm/mruby-publicsuffix.git +license: MIT diff --git a/mruby-pure-regexp.gem b/mruby-pure-regexp.gem index 110c684..73225e1 100644 --- a/mruby-pure-regexp.gem +++ b/mruby-pure-regexp.gem @@ -1,6 +1,7 @@ name: mruby-pure-regexp -description: Pure mruby Regexp +description: Pure mruby Regexp (third-party fork) author: h2so5 -website: https://github.com/h2so5/mruby-pure-regexp +website: https://github.com/WindProphet/mruby-pure-regexp protocol: git -repository: https://github.com/h2so5/mruby-pure-regexp.git +repository: https://github.com/WindProphet/mruby-pure-regexp.git +license: MIT diff --git a/mruby-qml-parse.gem b/mruby-qml-parse.gem new file mode 100644 index 0000000..d44d945 --- /dev/null +++ b/mruby-qml-parse.gem @@ -0,0 +1,7 @@ +name: mruby-qml-parse +description: QML Parser for mruby +author: fundamental +website: https://github.com/mruby-zest/mruby-qml-parse +protocol: git +repository: https://github.com/mruby-zest/mruby-qml-parse +license: MIT diff --git a/mruby-qml-spawn.gem b/mruby-qml-spawn.gem new file mode 100644 index 0000000..2c5ec75 --- /dev/null +++ b/mruby-qml-spawn.gem @@ -0,0 +1,7 @@ +name: mruby-qml-spawn +description: Optimized Ruby flavored qml->pure Ruby pseudo-compiler +author: fundamental +website: https://github.com/mruby-zest/mruby-qml-spawn +protocol: git +repository: https://github.com/mruby-zest/mruby-qml-spawn +license: MIT diff --git a/mruby-qrcode.gem b/mruby-qrcode.gem new file mode 100644 index 0000000..ce78773 --- /dev/null +++ b/mruby-qrcode.gem @@ -0,0 +1,7 @@ +name: mruby-qrcode +description: Ruby interface to QR Code C Library by Ryusuke SEKIYAMA +license: MIT +author: ['sadasant', 'scalone'] +website: https://github.com/scalone/mruby-qrcode +protocol: git +repository: https://github.com/scalone/mruby-qrcode.git diff --git a/mruby-r3.gem b/mruby-r3.gem index 2f21597..1e0c487 100644 --- a/mruby-r3.gem +++ b/mruby-r3.gem @@ -4,3 +4,4 @@ author: katzer website: https://github.com/katzer/mruby-r3 protocol: git repository: https://github.com/katzer/mruby-r3.git +license: MIT diff --git a/mruby-rake.gem b/mruby-rake.gem index 21434cf..bfdd739 100644 --- a/mruby-rake.gem +++ b/mruby-rake.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-rake protocol: git repository: https://github.com/ksss/mruby-rake.git +license: MIT diff --git a/mruby-rakie.gem b/mruby-rakie.gem new file mode 100644 index 0000000..e16fffb --- /dev/null +++ b/mruby-rakie.gem @@ -0,0 +1,7 @@ +name: mruby-rakie +description: An event driven network toolkit with Fiber +author: Jakit Liang +website: https://github.com/jakitliang/mruby-rakie +protocol: git +repository: https://github.com/jakitliang/mruby-rakie.git +license: BSD-2-Clause License diff --git a/mruby-random.gem b/mruby-random.gem index 247a90b..2ae0a01 100644 --- a/mruby-random.gem +++ b/mruby-random.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-random protocol: git repository: https://github.com/matsumotory/mruby-random.git +license: MIT diff --git a/mruby-raspberry.gem b/mruby-raspberry.gem index ca857a2..e6e0088 100644 --- a/mruby-raspberry.gem +++ b/mruby-raspberry.gem @@ -4,3 +4,4 @@ author: Paolo Bosetti, University of Trento website: https://github.com/UniTN-Mechatronics/mruby-raspberry protocol: git repository: https://github.com/UniTN-Mechatronics/mruby-raspberry.git +license: MIT diff --git a/mruby-rational.gem b/mruby-rational.gem deleted file mode 100644 index 79659bc..0000000 --- a/mruby-rational.gem +++ /dev/null @@ -1,6 +0,0 @@ -name: mruby-rational -description: Rational class -author: Daisuke YAMAGUCHI -website: https://github.com/dyama/mruby-rational -protocol: git -repository: https://github.com/dyama/mruby-rational.git diff --git a/mruby-rcon.gem b/mruby-rcon.gem index 90079d6..3de55a3 100644 --- a/mruby-rcon.gem +++ b/mruby-rcon.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-rcon protocol: git repository: https://github.com/matsumotory/mruby-rcon.git +license: MIT diff --git a/mruby-redis-ae.gem b/mruby-redis-ae.gem index 4385abb..8625d76 100644 --- a/mruby-redis-ae.gem +++ b/mruby-redis-ae.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/Asmod4n/mruby-redis-ae.git dependencies: - mruby-errno +license: Apache-2 diff --git a/mruby-redis-cluster.gem b/mruby-redis-cluster.gem new file mode 100644 index 0000000..9a00bf7 --- /dev/null +++ b/mruby-redis-cluster.gem @@ -0,0 +1,7 @@ +name: mruby-redis-cluster +description: Client library for Redis Cluster based on matsumotory/mruby-redis +author: Yuki Kirii +website: https://github.com/yukirii/mruby-redis-cluster +protocol: git +repository: https://github.com/yukirii/mruby-redis-cluster.git +license: MIT diff --git a/mruby-redis.gem b/mruby-redis.gem index 787170f..4366cfc 100644 --- a/mruby-redis.gem +++ b/mruby-redis.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-redis protocol: git repository: https://github.com/matsumotory/mruby-redis.git +license: Apache-2 diff --git a/mruby-regexp-pcre.gem b/mruby-regexp-pcre.gem index 722a806..383c23c 100644 --- a/mruby-regexp-pcre.gem +++ b/mruby-regexp-pcre.gem @@ -4,3 +4,4 @@ author: iij website: https://github.com/iij/mruby-regexp-pcre protocol: git repository: https://github.com/iij/mruby-regexp-pcre.git +license: MIT diff --git a/mruby-renice.gem b/mruby-renice.gem index db08ae6..0c0cf68 100644 --- a/mruby-renice.gem +++ b/mruby-renice.gem @@ -4,3 +4,4 @@ author: takumakume website: https://github.com/takumakume/mruby-renice protocol: git repository: https://github.com/takumakume/mruby-renice.git +license: MIT diff --git a/mruby-require.gem b/mruby-require.gem index d86efe9..bed166c 100644 --- a/mruby-require.gem +++ b/mruby-require.gem @@ -3,4 +3,5 @@ description: require implementation author: mattn website: https://github.com/mattn/mruby-require protocol: git -repository: https://github.com/mattn/mruby-require.git +repository: https://github.com/mattn/mruby-require.git +license: MIT diff --git a/mruby-research.gem b/mruby-research.gem index 936d011..18759c9 100644 --- a/mruby-research.gem +++ b/mruby-research.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-research protocol: git repository: https://github.com/ksss/mruby-research.git +license: MIT diff --git a/mruby-resource.gem b/mruby-resource.gem index f55c473..be4b9c4 100644 --- a/mruby-resource.gem +++ b/mruby-resource.gem @@ -4,3 +4,4 @@ author: harasou website: https://github.com/harasou/mruby-resource protocol: git repository: https://github.com/harasou/mruby-resource.git +license: MIT diff --git a/mruby-ripemd.gem b/mruby-ripemd.gem new file mode 100644 index 0000000..1e44717 --- /dev/null +++ b/mruby-ripemd.gem @@ -0,0 +1,7 @@ +name: mruby-ripemd +description: Ruby interface to C RIPEMD-160 hash-function by Antoon Bosselaers +author: ['sadasant', 'scalone'] +license: MIT +website: https://github.com/scalone/mruby-ripemd +protocol: git +repository: https://github.com/scalone/mruby-ripemd.git diff --git a/mruby-romajify.gem b/mruby-romajify.gem index 4a5ac5f..86aedb0 100644 --- a/mruby-romajify.gem +++ b/mruby-romajify.gem @@ -4,3 +4,4 @@ author: emsk website: https://github.com/emsk/mruby-romajify protocol: git repository: https://github.com/emsk/mruby-romajify.git +license: MIT diff --git a/mruby-rubyffi-compat.gem b/mruby-rubyffi-compat.gem index bcf8f61..b552e16 100644 --- a/mruby-rubyffi-compat.gem +++ b/mruby-rubyffi-compat.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/schmurfy/mruby-rubyffi-compat.git dependencies: - mruby-cfunc +license: MIT diff --git a/mruby-seccomp.gem b/mruby-seccomp.gem index 0964702..fdde004 100644 --- a/mruby-seccomp.gem +++ b/mruby-seccomp.gem @@ -4,3 +4,4 @@ author: Uchio Kondo website: https://github.com/haconiwa/mruby-seccomp protocol: git repository: https://github.com/haconiwa/mruby-seccomp.git +license: MIT diff --git a/mruby-secure-compare.gem b/mruby-secure-compare.gem index 8ae98e5..efb53ee 100644 --- a/mruby-secure-compare.gem +++ b/mruby-secure-compare.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-secure-compare protocol: git repository: https://github.com/Asmod4n/mruby-secure-compare.git +license: Apache-2 diff --git a/mruby-secure-random.gem b/mruby-secure-random.gem index 77715d3..d368349 100644 --- a/mruby-secure-random.gem +++ b/mruby-secure-random.gem @@ -4,3 +4,4 @@ author: monochromegane website: https://github.com/monochromegane/mruby-secure-random protocol: git repository: https://github.com/monochromegane/mruby-secure-random.git +license: MIT diff --git a/mruby-serialport.gem b/mruby-serialport.gem index 1f1a218..c12939c 100644 --- a/mruby-serialport.gem +++ b/mruby-serialport.gem @@ -4,3 +4,4 @@ author: Monami-ya LLC, Japan website: https://github.com/monami-ya-mrb/mruby-serialport/ protocol: git repository: https://github.com/monami-ya-mrb/mruby-serialport.git +license: MIT diff --git a/mruby-set.gem b/mruby-set.gem index 84a4afb..227fe86 100644 --- a/mruby-set.gem +++ b/mruby-set.gem @@ -4,3 +4,4 @@ author: yui-knk website: https://github.com/yui-knk/mruby-set protocol: git repository: https://github.com/yui-knk/mruby-set.git +license: MIT diff --git a/mruby-sftp-glob.gem b/mruby-sftp-glob.gem new file mode 100644 index 0000000..dad9023 --- /dev/null +++ b/mruby-sftp-glob.gem @@ -0,0 +1,9 @@ +name: mruby-sftp-glob +description: SFTP::Dir#glob extension for mruby-sftp +author: katzer +website: https://github.com/katzer/mruby-sftp-glob +protocol: git +repository: https://github.com/katzer/mruby-sftp-glob.git +dependencies: +- mruby-sftp +license: MIT diff --git a/mruby-sftp.gem b/mruby-sftp.gem new file mode 100644 index 0000000..37f365a --- /dev/null +++ b/mruby-sftp.gem @@ -0,0 +1,9 @@ +name: mruby-sftp +description: Simple SFTP client for mruby +author: katzer +website: https://github.com/katzer/mruby-sftp +protocol: git +repository: https://github.com/katzer/mruby-sftp.git +dependencies: +- mruby-ssh +license: MIT diff --git a/mruby-sha1.gem b/mruby-sha1.gem index 094e7d2..caf54d1 100644 --- a/mruby-sha1.gem +++ b/mruby-sha1.gem @@ -1,6 +1,7 @@ name: mruby-sha1 -description: SHA1 Hash Alghorithm +description: SHA1 Hash Algorithm author: mattn website: https://github.com/mattn/mruby-sha1 protocol: git repository: https://github.com/mattn/mruby-sha1.git +license: GPL diff --git a/mruby-sha2.gem b/mruby-sha2.gem index 301ab44..b59acb2 100644 --- a/mruby-sha2.gem +++ b/mruby-sha2.gem @@ -1,6 +1,7 @@ name: mruby-sha2 -description: SHA2 Hash Algorithm +description: SHA2 Hash Algorithm (third-party fork) author: h2so5 -website: https://github.com/h2so5/mruby-sha2 +website: https://github.com/scalone/mruby-sha2 protocol: git -repository: https://github.com/h2so5/mruby-sha2.git +repository: https://github.com/scalone/mruby-sha2.git +license: MIT diff --git a/mruby-shelf-deflater.gem b/mruby-shelf-deflater.gem new file mode 100644 index 0000000..e199b2a --- /dev/null +++ b/mruby-shelf-deflater.gem @@ -0,0 +1,7 @@ +name: mruby-shelf-deflater +description: Enables compression of http responses +author: katzer +website: https://github.com/katzer/mruby-shelf-deflater +protocol: git +repository: https://github.com/katzer/mruby-shelf-deflater.git +license: MIT diff --git a/mruby-shelf.gem b/mruby-shelf.gem index 06ab4af..41ce675 100644 --- a/mruby-shelf.gem +++ b/mruby-shelf.gem @@ -4,3 +4,4 @@ author: katzer website: https://github.com/katzer/mruby-shelf protocol: git repository: https://github.com/katzer/mruby-shelf.git +license: MIT diff --git a/mruby-shellwords.gem b/mruby-shellwords.gem index 570fae2..d23ef75 100644 --- a/mruby-shellwords.gem +++ b/mruby-shellwords.gem @@ -4,3 +4,4 @@ author: ['Wakou Aoyama', 'Akinori MUSHA', 'Takashi Kokubun'] website: https://github.com/k0kubun/mruby-shellwords protocol: git repository: https://github.com/k0kubun/mruby-shellwords.git +license: BSDL diff --git a/mruby-sidekiq-client.gem b/mruby-sidekiq-client.gem index 1e4591d..828e17e 100644 --- a/mruby-sidekiq-client.gem +++ b/mruby-sidekiq-client.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/monochromegane/mruby-sidekiq-client.git dependencies: - mruby-secure-random +license: MIT diff --git a/mruby-signal-thread.gem b/mruby-signal-thread.gem index 720cf67..2d6f4f5 100644 --- a/mruby-signal-thread.gem +++ b/mruby-signal-thread.gem @@ -4,3 +4,4 @@ author: pyama86 website: https://github.com/pyama86/mruby-signal-thread protocol: git repository: https://github.com/pyama86/mruby-signal-thread.git +license: MIT diff --git a/mruby-signal.gem b/mruby-signal.gem index 101035d..ac361d9 100644 --- a/mruby-signal.gem +++ b/mruby-signal.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-signal protocol: git repository: https://github.com/ksss/mruby-signal.git +license: MIT diff --git a/mruby-simple-random.gem b/mruby-simple-random.gem index 3298159..939b3c6 100644 --- a/mruby-simple-random.gem +++ b/mruby-simple-random.gem @@ -4,3 +4,4 @@ author: Internet Initiative Japan., Inc. website: https://github.com/iij/mruby-simple-random protocol: git repository: https://github.com/iij/mruby-simple-random.git +license: MIT diff --git a/mruby-simplehttp-socket.gem b/mruby-simplehttp-socket.gem index 6c0176b..d1229ab 100644 --- a/mruby-simplehttp-socket.gem +++ b/mruby-simplehttp-socket.gem @@ -4,3 +4,4 @@ author: Kentaro Yoshida, Internet Initiative Japan Inc. website: https://github.com/y-ken/mruby-simplehttp-socket protocol: git repository: https://github.com/y-ken/mruby-simplehttp-socket.git +license: MIT diff --git a/mruby-simplehttp.gem b/mruby-simplehttp.gem index 644acc7..2929af0 100644 --- a/mruby-simplehttp.gem +++ b/mruby-simplehttp.gem @@ -7,3 +7,4 @@ repository: https://github.com/matsumotory/mruby-simplehttp.git dependencies: - mruby-socket - mruby-polarssl +license: MIT diff --git a/mruby-simplehttpserver.gem b/mruby-simplehttpserver.gem index 6da0eb1..164679d 100644 --- a/mruby-simplehttpserver.gem +++ b/mruby-simplehttpserver.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-simplehttpserver protocol: git repository: https://github.com/matsumotory/mruby-simplehttpserver.git +license: MIT diff --git a/mruby-simplemsgpack.gem b/mruby-simplemsgpack.gem index eb3cefa..c5ee02c 100644 --- a/mruby-simplemsgpack.gem +++ b/mruby-simplemsgpack.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-simplemsgpack protocol: git repository: https://github.com/Asmod4n/mruby-simplemsgpack.git +license: Apache-2 diff --git a/mruby-simpletest.gem b/mruby-simpletest.gem index 6eabd6d..d5a5d5d 100644 --- a/mruby-simpletest.gem +++ b/mruby-simpletest.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-simpletest protocol: git repository: https://github.com/matsumotory/mruby-simpletest.git +license: MIT diff --git a/mruby-sinatic.gem b/mruby-sinatic.gem index 44ec663..d8420da 100644 --- a/mruby-sinatic.gem +++ b/mruby-sinatic.gem @@ -1,5 +1,5 @@ name: mruby-sinatic -description: Sinatra like Web Framework +description: Sinatra like Web Framework author: mattn website: https://github.com/mattn/mruby-sinatic protocol: git @@ -7,3 +7,4 @@ repository: https://github.com/mattn/mruby-sinatic.git dependencies: - mruby-uv - mruby-http +license: MIT diff --git a/mruby-singleton.gem b/mruby-singleton.gem index a5842fb..864c944 100644 --- a/mruby-singleton.gem +++ b/mruby-singleton.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-singleton protocol: git repository: https://github.com/ksss/mruby-singleton.git +license: MIT diff --git a/mruby-siphash.gem b/mruby-siphash.gem index 1aeb564..871e975 100644 --- a/mruby-siphash.gem +++ b/mruby-siphash.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-siphash protocol: git repository: https://github.com/ksss/mruby-siphash.git +license: MIT diff --git a/mruby-sleep.gem b/mruby-sleep.gem deleted file mode 100644 index abcac11..0000000 --- a/mruby-sleep.gem +++ /dev/null @@ -1,6 +0,0 @@ -name: mruby-sleep -description: Sleep Module -author: MATSUMOTO Ryosuke -website: https://github.com/matsumotory/mruby-sleep -protocol: git -repository: https://github.com/matsumotory/mruby-sleep.git diff --git a/mruby-smallhttp.gem b/mruby-smallhttp.gem index a093934..cc76523 100644 --- a/mruby-smallhttp.gem +++ b/mruby-smallhttp.gem @@ -4,3 +4,4 @@ author: Nazarii Sheremet website: https://github.com/nsheremet/mruby-smallhttp protocol: git repository: https://github.com/nsheremet/mruby-smallhttp.git +license: MIT diff --git a/mruby-spdy.gem b/mruby-spdy.gem index 178393e..f78d13e 100644 --- a/mruby-spdy.gem +++ b/mruby-spdy.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-spdy protocol: git repository: https://github.com/matsumotory/mruby-spdy.git +license: MIT diff --git a/mruby-specinfra.gem b/mruby-specinfra.gem index 551ef0f..df6b4c8 100644 --- a/mruby-specinfra.gem +++ b/mruby-specinfra.gem @@ -4,3 +4,4 @@ author: ['Gosuke Miyashita', 'Takashi Kokubun'] website: https://github.com/k0kubun/mruby-specinfra protocol: git repository: https://github.com/k0kubun/mruby-specinfra.git +license: MIT diff --git a/mruby-sqlite.gem b/mruby-sqlite.gem index d25fadd..12e4ea1 100644 --- a/mruby-sqlite.gem +++ b/mruby-sqlite.gem @@ -1,6 +1,7 @@ name: mruby-sqlite -description: (Another) SQLite3 mrbgem, aiming for compatability with MRI's sqlite3 gem. +description: (Another) SQLite3 mrbgem, aiming for compatibility with MRI's sqlite3 gem. author: Jared Breeden website: https://github.com/jbreeden/mruby-sqlite protocol: git repository: https://github.com/jbreeden/mruby-sqlite.git +license: MIT diff --git a/mruby-sqlite3.gem b/mruby-sqlite3.gem index f9dbf50..60135f6 100644 --- a/mruby-sqlite3.gem +++ b/mruby-sqlite3.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-sqlite3 protocol: git repository: https://github.com/mattn/mruby-sqlite3.git +license: MIT diff --git a/mruby-ssh.gem b/mruby-ssh.gem new file mode 100644 index 0000000..a58b736 --- /dev/null +++ b/mruby-ssh.gem @@ -0,0 +1,7 @@ +name: mruby-ssh +description: Simple SSH client for mruby +author: katzer +website: https://github.com/katzer/mruby-ssh +protocol: git +repository: https://github.com/katzer/mruby-ssh.git +license: MIT diff --git a/mruby-statemachine.gem b/mruby-statemachine.gem deleted file mode 100644 index 8d9a724..0000000 --- a/mruby-statemachine.gem +++ /dev/null @@ -1,6 +0,0 @@ -name: mruby-statemachine -description: a tiny state machine for mruby -author: Hendrik Beskow -website: https://github.com/ascaridol/mruby-statemachine -protocol: git -repository: https://github.com/ascaridol/mruby-statemachine.git diff --git a/mruby-string-crypt.gem b/mruby-string-crypt.gem index 5577d1b..62942e3 100644 --- a/mruby-string-crypt.gem +++ b/mruby-string-crypt.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-string-crypt protocol: git repository: https://github.com/mattn/mruby-string-crypt.git +license: MIT diff --git a/mruby-string-ext-latin9.gem b/mruby-string-ext-latin9.gem new file mode 100644 index 0000000..d1758b3 --- /dev/null +++ b/mruby-string-ext-latin9.gem @@ -0,0 +1,7 @@ +name: mruby-string-ext-latin9 +description: Conversion from iso-8859-15 (Latin9) to UTF-8 +author: katzer +website: https://github.com/katzer/mruby-string-ext-latin9 +protocol: git +repository: https://github.com/katzer/mruby-string-ext-latin9.git +license: MIT diff --git a/mruby-string-is-utf8.gem b/mruby-string-is-utf8.gem index 790b748..de1d740 100644 --- a/mruby-string-is-utf8.gem +++ b/mruby-string-is-utf8.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-string-is-utf8 protocol: git repository: https://github.com/Asmod4n/mruby-string-is-utf8.git +license: Simplified BSD License diff --git a/mruby-string-xor.gem b/mruby-string-xor.gem index 375a080..5e90311 100644 --- a/mruby-string-xor.gem +++ b/mruby-string-xor.gem @@ -4,3 +4,4 @@ author: Seiei Miyagi website: https://github.com/hanachin/mruby-string-xor protocol: git repository: https://github.com/hanachin/mruby-string-xor.git +license: MIT diff --git a/mruby-stringio.gem b/mruby-stringio.gem index 3848f77..83848aa 100644 --- a/mruby-stringio.gem +++ b/mruby-stringio.gem @@ -4,3 +4,4 @@ author: ksss website: https://github.com/ksss/mruby-stringio protocol: git repository: https://github.com/ksss/mruby-stringio.git +license: MIT diff --git a/mruby-strptime.gem b/mruby-strptime.gem index 4f12f77..3dc91ac 100644 --- a/mruby-strptime.gem +++ b/mruby-strptime.gem @@ -4,3 +4,4 @@ author: naritta website: https://github.com/naritta/mruby-strptime protocol: git repository: https://github.com/naritta/mruby-strptime.git +license: MIT diff --git a/mruby-sysconf.gem b/mruby-sysconf.gem index e2a8542..d72c1d7 100644 --- a/mruby-sysconf.gem +++ b/mruby-sysconf.gem @@ -4,3 +4,4 @@ author: pyama86 website: https://github.com/pyama86/mruby-sysconf protocol: git repository: https://github.com/pyama86/mruby-sysconf.git +license: MIT diff --git a/mruby-syslog.gem b/mruby-syslog.gem index ce06c35..47ad642 100644 --- a/mruby-syslog.gem +++ b/mruby-syslog.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/iij/mruby-syslog.git dependencies: - mruby-io +license: MIT diff --git a/mruby-sysrandom.gem b/mruby-sysrandom.gem index ea236f4..8e57837 100644 --- a/mruby-sysrandom.gem +++ b/mruby-sysrandom.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-sysrandom protocol: git repository: https://github.com/Asmod4n/mruby-sysrandom.git +license: ISC diff --git a/mruby-tbot.gem b/mruby-tbot.gem index f352bc3..55931b9 100644 --- a/mruby-tbot.gem +++ b/mruby-tbot.gem @@ -1,6 +1,7 @@ name: mruby-tbot -description: MRuby wrapper for Telegram's Bot API +description: mruby wrapper for Telegram's Bot API author: Nazarii Sheremet website: https://github.com/nsheremet/mruby-tbot protocol: git repository: https://github.com/nsheremet/mruby-tbot.git +license: MIT diff --git a/mruby-tempfile.gem b/mruby-tempfile.gem index a9c3a1b..4f79028 100644 --- a/mruby-tempfile.gem +++ b/mruby-tempfile.gem @@ -4,3 +4,4 @@ author: iij website: https://github.com/iij/mruby-tempfile protocol: git repository: https://github.com/iij/mruby-tempfile.git +license: MIT diff --git a/mruby-termbox2.gem b/mruby-termbox2.gem new file mode 100644 index 0000000..6603253 --- /dev/null +++ b/mruby-termbox2.gem @@ -0,0 +1,8 @@ +name: mruby-termbox2 +description: Low-level bindings to Termbox2 +author: Paweł Świątkowski +website: https://github.com/katafrakt/mruby-termbox2 +protocol: git +repository: https://github.com/katafrakt/mruby-termbox2.git +license: MIT +branch: main diff --git a/mruby-terminal-table.gem b/mruby-terminal-table.gem index b545459..613c685 100644 --- a/mruby-terminal-table.gem +++ b/mruby-terminal-table.gem @@ -1,6 +1,7 @@ name: mruby-terminal-table description: A fast and simple, yet feature rich ASCII table generator author: katzer -website: https://github.com/appPlant/mruby-terminal-table +website: https://github.com/katzer/mruby-terminal-table protocol: git -repository: https://github.com/appPlant/mruby-terminal-table.git +repository: https://github.com/katzer/mruby-terminal-table.git +license: MIT diff --git a/mruby-thread.gem b/mruby-thread.gem index 3ea1348..f416e4b 100644 --- a/mruby-thread.gem +++ b/mruby-thread.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-thread protocol: git repository: https://github.com/mattn/mruby-thread.git +license: MIT diff --git a/mruby-time-httpdate.gem b/mruby-time-httpdate.gem new file mode 100644 index 0000000..9430d5d --- /dev/null +++ b/mruby-time-httpdate.gem @@ -0,0 +1,8 @@ +name: mruby-time-httpdate +description: mruby-time-httpdate provides a method to format Time objects as HTTP date strings. +author: Hendrik Beskow +website: https://github.com/Asmod4n/mruby-time-httpdate +protocol: git +repository: https://github.com/Asmod4n/mruby-time-httpdate.git +license: MIT +branch: main diff --git a/mruby-time-strftime.gem b/mruby-time-strftime.gem index 347d13e..5ae3693 100644 --- a/mruby-time-strftime.gem +++ b/mruby-time-strftime.gem @@ -4,3 +4,4 @@ author: monochromegane website: https://github.com/monochromegane/mruby-time-strftime protocol: git repository: https://github.com/monochromegane/mruby-time-strftime.git +license: MIT diff --git a/mruby-timer-thread.gem b/mruby-timer-thread.gem index 7af4763..ba72b55 100644 --- a/mruby-timer-thread.gem +++ b/mruby-timer-thread.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-timer-thread protocol: git repository: https://github.com/matsumotory/mruby-timer-thread.git +license: MIT diff --git a/mruby-tiny-io.gem b/mruby-tiny-io.gem index 9ef7c75..c45dafa 100644 --- a/mruby-tiny-io.gem +++ b/mruby-tiny-io.gem @@ -4,3 +4,4 @@ author: mimaki website: https://github.com/mimaki/mruby-tiny-io protocol: git repository: https://github.com/mimaki/mruby-tiny-io.git +license: MIT diff --git a/mruby-tiny-opt-parser.gem b/mruby-tiny-opt-parser.gem new file mode 100644 index 0000000..633fbc4 --- /dev/null +++ b/mruby-tiny-opt-parser.gem @@ -0,0 +1,7 @@ +name: mruby-tiny-opt-parser +description: Command-line option analysis for mruby +author: katzer +website: https://github.com/katzer/mruby-tiny-opt-parser +protocol: git +repository: https://github.com/katzer/mruby-tiny-opt-parser.git +license: MIT diff --git a/mruby-tinymt.gem b/mruby-tinymt.gem index 970c854..d45c976 100644 --- a/mruby-tinymt.gem +++ b/mruby-tinymt.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-tinymt protocol: git repository: https://github.com/matsumotory/mruby-tinymt.git +license: MIT and BSD New(tinymt32.[ch]) diff --git a/mruby-tinyxml2.gem b/mruby-tinyxml2.gem index 06de882..545c636 100644 --- a/mruby-tinyxml2.gem +++ b/mruby-tinyxml2.gem @@ -1,6 +1,7 @@ name: mruby-tinyxml2 -description: mruby bindings for TinyXML-2 +description: mruby bindings for TinyXML-2 (third-party fork) author: h2so5 -website: https://github.com/h2so5/mruby-tinyxml2 +website: https://github.com/scalone/mruby-tinyxml2 protocol: git -repository: https://github.com/h2so5/mruby-tinyxml2.git +repository: https://github.com/scalone/mruby-tinyxml2.git +license: MIT diff --git a/mruby-tls.gem b/mruby-tls.gem index ae13902..e7f1212 100644 --- a/mruby-tls.gem +++ b/mruby-tls.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-tls protocol: git repository: https://github.com/Asmod4n/mruby-tls.git +license: Apache-2 diff --git a/mruby-toml.gem b/mruby-toml.gem new file mode 100644 index 0000000..491a792 --- /dev/null +++ b/mruby-toml.gem @@ -0,0 +1,14 @@ +name: mruby-toml +description: a TOML mgem for mruby +author: Hendrik Beskow +website: https://github.com/Asmod4n/mruby-toml +protocol: git +repository: https://github.com/Asmod4n/mruby-toml.git +branch: main +dependencies: +- mruby-time +- mruby-c-ext-helpers +- mruby-string-ext +- mruby-sprintf +- mruby-errno +license: Apache-2.0 diff --git a/mruby-tty-screen.gem b/mruby-tty-screen.gem new file mode 100644 index 0000000..0df5558 --- /dev/null +++ b/mruby-tty-screen.gem @@ -0,0 +1,7 @@ +name: mruby-tty-screen +description: Detects terminal screen size +author: Piotr Murach, Jeremy Jung +website: https://github.com/jeremyjung/mruby-tty-screen +protocol: git +repository: https://github.com/jeremyjung/mruby-tty-screen.git +license: MIT diff --git a/mruby-uchardet.gem b/mruby-uchardet.gem index 70ece66..d8d4881 100644 --- a/mruby-uchardet.gem +++ b/mruby-uchardet.gem @@ -4,3 +4,4 @@ author: Takeshi Watanabe website: https://github.com/take-cheeze/mruby-uchardet/ protocol: git repository: https://github.com/take-cheeze/mruby-uchardet.git +license: MPL2 diff --git a/mruby-uname.gem b/mruby-uname.gem index 51b50e0..b83aacd 100644 --- a/mruby-uname.gem +++ b/mruby-uname.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-uname protocol: git repository: https://github.com/matsumotory/mruby-uname.git +license: MIT diff --git a/mruby-unbound.gem b/mruby-unbound.gem index 7fcc8a3..f16b39c 100644 --- a/mruby-unbound.gem +++ b/mruby-unbound.gem @@ -4,3 +4,4 @@ author: Kouichi Nakanishi website: https://github.com/keizo042/mruby-unbound protocol: git repository: https://github.com/keizo042/mruby-unbound.git +license: MIT diff --git a/mruby-unicode-display_width.gem b/mruby-unicode-display_width.gem index 3684ed8..6971e00 100644 --- a/mruby-unicode-display_width.gem +++ b/mruby-unicode-display_width.gem @@ -1,6 +1,7 @@ name: mruby-unicode-display_width description: Monospace Unicode character width author: katzer -website: https://github.com/appPlant/mruby-unicode-display_width +website: https://github.com/katzer/mruby-unicode-display_width protocol: git -repository: https://github.com/appPlant/mruby-unicode-display_width.git +repository: https://github.com/katzer/mruby-unicode-display_width.git +license: MIT diff --git a/mruby-updategems.gem b/mruby-updategems.gem index fdef263..d56b945 100644 --- a/mruby-updategems.gem +++ b/mruby-updategems.gem @@ -3,4 +3,5 @@ description: Rake task to update GEMs author: mattn website: https://github.com/mattn/mruby-updategems protocol: git -repository: https://github.com/mattn/mruby-updategems.git +repository: https://github.com/mattn/mruby-updategems.git +license: MIT diff --git a/mruby-uri-parser.gem b/mruby-uri-parser.gem index c35728c..aa69c66 100644 --- a/mruby-uri-parser.gem +++ b/mruby-uri-parser.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/Asmod4n/mruby-uri-parser.git dependencies: - mruby-errno +license: Apache-2 diff --git a/mruby-uriparser.gem b/mruby-uriparser.gem new file mode 100644 index 0000000..7951eaa --- /dev/null +++ b/mruby-uriparser.gem @@ -0,0 +1,8 @@ +name: mruby-uriparser +description: URI parser for mruby. +author: gemmaro +website: https://github.com/gemmaro/mruby-uriparser +protocol: git +repository: https://github.com/gemmaro/mruby-uriparser +license: GPL-3.0-or-later +branch: main diff --git a/mruby-userdata.gem b/mruby-userdata.gem index 87cb938..7a6868e 100644 --- a/mruby-userdata.gem +++ b/mruby-userdata.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-userdata protocol: git repository: https://github.com/matsumotory/mruby-userdata.git +license: MIT diff --git a/mruby-uv.gem b/mruby-uv.gem index eadae80..4d787f0 100644 --- a/mruby-uv.gem +++ b/mruby-uv.gem @@ -3,4 +3,5 @@ description: libuv interface author: mattn website: https://github.com/mattn/mruby-uv protocol: git -repository: https://github.com/mattn/mruby-uv.git +repository: https://github.com/mattn/mruby-uv.git +license: MIT diff --git a/mruby-v8.gem b/mruby-v8.gem index 263199d..542a768 100644 --- a/mruby-v8.gem +++ b/mruby-v8.gem @@ -4,3 +4,4 @@ author: mattn website: https://github.com/mattn/mruby-v8 protocol: git repository: https://github.com/mattn/mruby-v8.git +license: MIT diff --git a/mruby-vedis.gem b/mruby-vedis.gem index 306767c..6e16f82 100644 --- a/mruby-vedis.gem +++ b/mruby-vedis.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-vedis protocol: git repository: https://github.com/matsumotory/mruby-vedis.git +license: Sleepycat License diff --git a/mruby-virtualing.gem b/mruby-virtualing.gem index 34cd8e5..283065c 100644 --- a/mruby-virtualing.gem +++ b/mruby-virtualing.gem @@ -1,6 +1,7 @@ name: mruby-virtualing -description: creating jail environment, limitting resource and separating filesystem +description: creating jail environment, limiting resource and separating filesystem author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-virtualing protocol: git repository: https://github.com/matsumotory/mruby-virtualing.git +license: MIT diff --git a/mruby-weakref.gem b/mruby-weakref.gem new file mode 100644 index 0000000..89cdd26 --- /dev/null +++ b/mruby-weakref.gem @@ -0,0 +1,7 @@ +name: mruby-weakref +description: weakref implementation for mruby +author: dearblue +website: https://github.com/dearblue/mruby-weakref +protocol: git +repository: https://github.com/dearblue/mruby-weakref.git +license: CC0 diff --git a/mruby-webkit-1.gem b/mruby-webkit-1.gem index a608afa..4a79908 100644 --- a/mruby-webkit-1.gem +++ b/mruby-webkit-1.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/ppibburr/mruby-webkit-1.git dependencies: - mruby-gtk2 +license: MIT diff --git a/mruby-webkit-3.gem b/mruby-webkit-3.gem index 06893d0..4b11ddf 100644 --- a/mruby-webkit-3.gem +++ b/mruby-webkit-3.gem @@ -6,3 +6,4 @@ protocol: git repository: https://github.com/ppibburr/mruby-webkit-3.git dependencies: - mruby-gtk3 +license: MIT diff --git a/mruby-win32ole.gem b/mruby-win32ole.gem index ac4f51f..a06591f 100644 --- a/mruby-win32ole.gem +++ b/mruby-win32ole.gem @@ -4,3 +4,4 @@ author: Takashi Sawanaka website: https://github.com/sdottaka/mruby-win32ole protocol: git repository: https://github.com/sdottaka/mruby-win32ole.git +license: GPL diff --git a/mruby-winapp.gem b/mruby-winapp.gem index 29fef04..dcb116e 100644 --- a/mruby-winapp.gem +++ b/mruby-winapp.gem @@ -3,4 +3,5 @@ description: Create non-console application for windows author: mattn website: https://github.com/mattn/mruby-winapp protocol: git -repository: https://github.com/mattn/mruby-winapp.git +repository: https://github.com/mattn/mruby-winapp.git +license: MIT diff --git a/mruby-wiringpi.gem b/mruby-wiringpi.gem index f41794e..a7d7180 100644 --- a/mruby-wiringpi.gem +++ b/mruby-wiringpi.gem @@ -4,3 +4,4 @@ author: Akira Yumiyama website: https://github.com/akiray03/mruby-WiringPi protocol: git repository: https://github.com/akiray03/mruby-WiringPi.git +license: LGPL diff --git a/mruby-wslay.gem b/mruby-wslay.gem index 57974c8..9f85226 100644 --- a/mruby-wslay.gem +++ b/mruby-wslay.gem @@ -4,3 +4,4 @@ author: Hendrik Beskow website: https://github.com/Asmod4n/mruby-wslay protocol: git repository: https://github.com/Asmod4n/mruby-wslay +license: Apache-2 diff --git a/mruby-yaml.gem b/mruby-yaml.gem index f139bfc..49cf3a4 100644 --- a/mruby-yaml.gem +++ b/mruby-yaml.gem @@ -1,6 +1,7 @@ name: mruby-yaml description: YAML parser and emitter author: Andrew Belt -website: https://github.com/hone/mruby-yaml +website: https://github.com/mrbgems/mruby-yaml protocol: git -repository: https://github.com/hone/mruby-yaml.git +repository: https://github.com/mrbgems/mruby-yaml.git +license: MIT diff --git a/mruby-yeah.gem b/mruby-yeah.gem index edd7245..527854d 100644 --- a/mruby-yeah.gem +++ b/mruby-yeah.gem @@ -4,3 +4,4 @@ author: katzer website: https://github.com/katzer/mruby-yeah protocol: git repository: https://github.com/katzer/mruby-yeah.git +license: MIT diff --git a/mruby-zabbix.gem b/mruby-zabbix.gem index 5cf0f71..0ce0dec 100644 --- a/mruby-zabbix.gem +++ b/mruby-zabbix.gem @@ -4,3 +4,4 @@ author: MATSUMOTO Ryosuke website: https://github.com/matsumotory/mruby-zabbix protocol: git repository: https://github.com/matsumotory/mruby-zabbix.git +license: MIT diff --git a/mruby-zest.gem b/mruby-zest.gem new file mode 100644 index 0000000..98384a8 --- /dev/null +++ b/mruby-zest.gem @@ -0,0 +1,7 @@ +name: mruby-zest +description: Widget classes for the mruby-zest framework +author: fundamental +website: https://github.com/mruby-zest/mruby-zest +protocol: git +repository: https://github.com/mruby-zest/mruby-zest +license: mixed MIT and LGPLv2+ diff --git a/mruby-zlib.gem b/mruby-zlib.gem index 60c4666..5e7678b 100644 --- a/mruby-zlib.gem +++ b/mruby-zlib.gem @@ -1,6 +1,7 @@ name: mruby-zlib -description: ZLib bindings for MRuby +description: ZLib bindings for mruby author: Jared Breeden website: https://github.com/jbreeden/mruby-zlib protocol: git repository: https://github.com/jbreeden/mruby-zlib.git +license: MIT diff --git a/mruby-zmq.gem b/mruby-zmq.gem index b45bd45..e371032 100644 --- a/mruby-zmq.gem +++ b/mruby-zmq.gem @@ -6,10 +6,13 @@ protocol: git repository: https://github.com/zeromq/mruby-zmq.git dependencies: - mruby-errno -- mruby-simplemsgpack - mruby-objectspace - mruby-pack - mruby-env - mruby-time -- mruby-print - mruby-sprintf +- mruby-class-ext +- mruby-metaprog +- mruby-string-ext +- mruby-c-ext-helpers +license: MPL-2.0 diff --git a/mruby-zstd.gem b/mruby-zstd.gem index 36e4797..98f01d4 100644 --- a/mruby-zstd.gem +++ b/mruby-zstd.gem @@ -4,3 +4,4 @@ author: dearblue website: https://github.com/dearblue/mruby-zstd protocol: git repository: https://github.com/dearblue/mruby-zstd.git +license: BSD-2-Clause diff --git a/mruby-zyre.gem b/mruby-zyre.gem deleted file mode 100644 index 13be94c..0000000 --- a/mruby-zyre.gem +++ /dev/null @@ -1,8 +0,0 @@ -name: mruby-zyre -description: Zyre - an open-source framework for proximity-based peer-to-peer applications -author: Hendrik Beskow -website: https://github.com/Asmod4n/mruby-zyre -protocol: git -repository: https://github.com/Asmod4n/mruby-zyre.git -dependencies: -- mruby-errno diff --git a/typedargs.gem b/typedargs.gem new file mode 100644 index 0000000..4c90dfb --- /dev/null +++ b/typedargs.gem @@ -0,0 +1,8 @@ +name: typedargs +description: A tiny operator‑typed CLI language for structured data. +author: Hendrik Beskow +website: https://github.com/Asmod4n/typedargs +protocol: git +repository: https://github.com/Asmod4n/typedargs.git +branch: main +license: Apache-2.0