Lastest updates from Rubygems.org
ID | Gem | Version | Body | Updated At |
---|---|---|---|---|
8KilYKyvyR16izKTKpGee |
rspec-matchers-power_assert_matchers"ruby/power_assert" integration for RSpec. No monkey patching exists. |
0.3.0 | Content{ "name": "rspec-matchers-power_assert_matchers", "downloads": 11483, "version": "0.3.0", "version_created_at": "2024-12-26T15:04:54.132Z", "version_downloads": 0, "platform": "ruby", "authors": "Kenichi Kamiya", "info": "\"ruby/power_assert\" integration for RSpec. No monkey patching exists.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/kachick/rspec-matchers-power_assert_matchers", "bug_tracker_uri": "https://github.com/kachick/rspec-matchers-power_assert_matchers/issues", "source_code_uri": "https://github.com/kachick/rspec-matchers-power_assert_matchers", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "27dbaf6ebc234d8f4e91f12e6d104a9bc55930536383e7440de79d76fd352e9c", "spec_sha": "9a488305b3abe3c80c93309a2d9cc8f3ffbed2c0d1675b76f2f94f52de22acfd", "project_uri": "https://rubygems.org/gems/rspec-matchers-power_assert_matchers", "gem_uri": "https://rubygems.org/gems/rspec-matchers-power_assert_matchers-0.3.0.gem", "homepage_uri": "https://github.com/kachick/rspec-matchers-power_assert_matchers", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/kachick/rspec-matchers-power_assert_matchers", "bug_tracker_uri": "https://github.com/kachick/rspec-matchers-power_assert_matchers/issues", "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "irb", "requirements": ">= 1.4.0, < 2.0" }, { "name": "power_assert", "requirements": ">= 2.0.3, < 3.0" }, { "name": "rspec", "requirements": ">= 3.5.0, < 4.0" } ] } } |
2024-12-26 15:04:56 UTC |
AHYxXZm4bT0hehBFh__pH |
render-text-helperAdd some more functionality to string and booleans |
0.3.2 | Content{ "name": "render-text-helper", "downloads": 2289, "version": "0.3.2", "version_created_at": "2024-12-26T14:59:46.733Z", "version_downloads": 0, "platform": "ruby", "authors": "Saimon Lovell", "info": "Add some more functionality to string and booleans", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/SaimonL/render-text-helper", "changelog_uri": "https://github.com/SaimonL/render-text-helper/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/SaimonL/render-text-helper", "allowed_push_host": "https://rubygems.org", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "0c664d308d5a82e75d7021457c8681236d88b14fb6deb73efeae00fc3d11f683", "spec_sha": "aaa2916fd984dda368a41720d2fa51f359738589d3dfe3b8af8cd0245fb8a076", "project_uri": "https://rubygems.org/gems/render-text-helper", "gem_uri": "https://rubygems.org/gems/render-text-helper-0.3.2.gem", "homepage_uri": "https://github.com/SaimonL/render-text-helper", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/SaimonL/render-text-helper", "bug_tracker_uri": null, "changelog_uri": "https://github.com/SaimonL/render-text-helper/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 14:59:49 UTC |
gtKMsmWJ_TyDWhm_MGyEL |
fat_tableFatTable is a gem that treats tables as a data type. It provides methods for constructing tables from a variety of sources, building them row-by-row, extracting rows, columns, and cells, and performing aggregate operations on columns. It also provides as set of SQL-esque methods for manipulating table objects: select for filtering by columns or for creating new columns, where for filtering by rows, order_by for sorting rows, distinct for eliminating duplicate rows, group_by for aggregating multiple rows into single rows and applying column aggregate methods to ungrouped columns, a collection of join methods for combining tables, and more. Furthermore, FatTable provides methods for formatting tables and producing output that targets various output media: text, ANSI terminals, ruby data structures, LaTeX tables, Emacs org-mode tables, and more. The formatting methods can specify cell formatting in a way that is uniform across all the output methods and can also decorate the output with any number of footers, including group footers. FatTable applies formatting directives to the extent they makes sense for the output medium and treats other formatting directives as no-ops. FatTable can be used to perform operations on data that are naturally best conceived of as tables, which in my experience is quite often. It can also serve as a foundation for providing reporting functions where flexibility about the output medium can be quite useful. Finally FatTable can be used within Emacs org-mode files in code blocks targeting the Ruby language. Org mode tables are presented to a ruby code block as an array of arrays, so FatTable can read them in with its .from_aoa constructor. A FatTable table can output as an array of arrays with its .to_aoa output function and will be rendered in an org-mode buffer as an org-table, ready for processing by other code blocks. |
0.9.7 | Content{ "name": "fat_table", "downloads": 35323, "version": "0.9.7", "version_created_at": "2024-12-26T14:57:06.059Z", "version_downloads": 0, "platform": "ruby", "authors": "Daniel E. Doherty", "info": " FatTable is a gem that treats tables as a data type. It provides methods for\n constructing tables from a variety of sources, building them row-by-row,\n extracting rows, columns, and cells, and performing aggregate operations on\n columns. It also provides as set of SQL-esque methods for manipulating table\n objects: select for filtering by columns or for creating new columns, where\n for filtering by rows, order_by for sorting rows, distinct for eliminating\n duplicate rows, group_by for aggregating multiple rows into single rows and\n applying column aggregate methods to ungrouped columns, a collection of join\n methods for combining tables, and more.\n\n Furthermore, FatTable provides methods for formatting tables and producing\n output that targets various output media: text, ANSI terminals, ruby data\n structures, LaTeX tables, Emacs org-mode tables, and more. The formatting\n methods can specify cell formatting in a way that is uniform across all the\n output methods and can also decorate the output with any number of footers,\n including group footers. FatTable applies formatting directives to the extent\n they makes sense for the output medium and treats other formatting directives as\n no-ops.\n\n FatTable can be used to perform operations on data that are naturally best\n conceived of as tables, which in my experience is quite often. It can also serve\n as a foundation for providing reporting functions where flexibility about the\n output medium can be quite useful. Finally FatTable can be used within Emacs\n org-mode files in code blocks targeting the Ruby language. Org mode tables are\n presented to a ruby code block as an array of arrays, so FatTable can read\n them in with its .from_aoa constructor. A FatTable table can output as an\n array of arrays with its .to_aoa output function and will be rendered in an\n org-mode buffer as an org-table, ready for processing by other code blocks.\n", "licenses": [], "metadata": { "yard.run": "yri", "allowed_push_host": "https://rubygems.org" }, "yanked": false, "sha": "a71b840b956fe9300adb959fe0173f4fdce49e1e70234fea638716be7f47961c", "spec_sha": "5f4e29967473226fdf830d3b9855a5d0e94869b6d878623f7a408af6aa5b985b", "project_uri": "https://rubygems.org/gems/fat_table", "gem_uri": "https://rubygems.org/gems/fat_table-0.9.7.gem", "homepage_uri": "https://github.com/ddoherty03/fat_table", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/fat_table/0.9.7", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "csv", "requirements": ">= 0" }, { "name": "fat_core", "requirements": ">= 4.9.0" }, { "name": "gem-path", "requirements": ">= 0" }, { "name": "rainbow", "requirements": ">= 0" }, { "name": "sequel", "requirements": ">= 0" } ] } } |
2024-12-26 14:57:08 UTC |
yxCJ-GG9bHx-r12fSuk2b |
database_consistencyProvide an easy way to check the consistency of the database constraints with the application validations. |
2.0.1 | Content{ "name": "database_consistency", "downloads": 1969115, "version": "2.0.1", "version_created_at": "2024-12-26T14:55:50.015Z", "version_downloads": 0, "platform": "ruby", "authors": "Evgeniy Demin", "info": "Provide an easy way to check the consistency of the database constraints with the application validations.", "licenses": [ "MIT" ], "metadata": { "funding_uri": "https://opencollective.com/database_consistency#support" }, "yanked": false, "sha": "de70c12bc2da3a81c5a61d3bc1bebbfa2550906614e06b9b34703a62307b6176", "spec_sha": "110669ad1cce678c9e76568d026782da004ca534dd86d224bab55841947af9de", "project_uri": "https://rubygems.org/gems/database_consistency", "gem_uri": "https://rubygems.org/gems/database_consistency-2.0.1.gem", "homepage_uri": "https://github.com/djezzzl/database_consistency", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": "https://opencollective.com/database_consistency#support", "dependencies": { "development": [ { "name": "bundler", "requirements": "> 1.16" }, { "name": "mysql2", "requirements": "~> 0.5" }, { "name": "pg", "requirements": ">= 0.2" }, { "name": "rake", "requirements": ">= 12.3.3" }, { "name": "rspec", "requirements": "~> 3.0" }, { "name": "rspec_junit_formatter", "requirements": "~> 0.4" }, { "name": "rubocop", "requirements": "~> 0.55" }, { "name": "sqlite3", "requirements": "> 1.3" } ], "runtime": [ { "name": "activerecord", "requirements": ">= 3.2" } ] } } |
2024-12-26 14:55:52 UTC |
GH4aaWe2qzZ49NwgtBW_2 |
draft_boxA web interface for browsing Ruby on Rails sent emails with support for distributed environments |
0.0.2 | Content{ "name": "draft_box", "downloads": 26, "version": "0.0.2", "version_created_at": "2024-12-26T14:50:55.500Z", "version_downloads": 0, "platform": "ruby", "authors": "Paweł Dąbrowski", "info": "A web interface for browsing Ruby on Rails sent emails with support for distributed environments", "licenses": [], "metadata": {}, "yanked": false, "sha": "cc4d931133a82cfbaba90883923888cc79ae9defb7ebe9c1690cd04868730173", "spec_sha": "98c2fdbf9629f8dba70e56f620635a8dc1ea664647039a5e88277ace2e617eca", "project_uri": "https://rubygems.org/gems/draft_box", "gem_uri": "https://rubygems.org/gems/draft_box-0.0.2.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/draft_box/0.0.2", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 14:50:58 UTC |
Kis4-0o22FzblfWAHE2nL |
deadfinderFind dead-links (broken links). Dead link (broken link) means a link within a web page that cannot be connected. These links can have a negative impact to SEO and Security. This tool makes it easy to identify and modify. |
1.5.1 | Content{ "name": "deadfinder", "downloads": 9393, "version": "1.5.1", "version_created_at": "2024-12-26T14:50:11.772Z", "version_downloads": 0, "platform": "ruby", "authors": "hahwul", "info": "Find dead-links (broken links). Dead link (broken link) means a link within a web page that cannot be connected. These links can have a negative impact to SEO and Security. This tool makes it easy to identify and modify.", "licenses": [ "MIT" ], "metadata": { "source_code_uri": "https://github.com/hahwul/deadfinder", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "e295d1f53fdc678f59a3f1645e66badc7d5addf9b2565b48730d72c00cf17f43", "spec_sha": "d4ed5bf545a051b073d0c1af12688f8edf8cf99d0ceac8418a4f11c79f694002", "project_uri": "https://rubygems.org/gems/deadfinder", "gem_uri": "https://rubygems.org/gems/deadfinder-1.5.1.gem", "homepage_uri": "https://www.hahwul.com", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/hahwul/deadfinder", "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "colorize", "requirements": "~> 0.8.0, >= 0.8.0" }, { "name": "concurrent-ruby-edge", "requirements": "~> 0.6.0, >= 0.6.0" }, { "name": "json", "requirements": "~> 2.6.0, >= 2.6.0" }, { "name": "nokogiri", "requirements": "~> 1.13.0, >= 1.13.0" }, { "name": "open-uri", "requirements": "~> 0.2.0, >= 0.2.0" }, { "name": "set", "requirements": "~> 1.1.0, >= 1.1.0" }, { "name": "sitemap-parser", "requirements": "~> 0.5.0, >= 0.5.0" }, { "name": "thor", "requirements": "~> 1.2.0, >= 1.2.0" } ] } } |
2024-12-26 14:50:15 UTC |
E7Ta1C44f74jHbyObDRvt |
playbook_uiPlaybook UI is built out in Ruby View Components and React Components. Playbook takes a modern design approach and applies it in a way that makes it easy to support bleeding edge or legacy systems. |
14.10.0 | Content{ "name": "playbook_ui", "downloads": 1225668, "version": "14.10.0", "version_created_at": "2024-12-26T14:22:32.463Z", "version_downloads": 0, "platform": "ruby", "authors": "Power UX, Power Devs", "info": "Playbook UI is built out in Ruby View Components and React Components. Playbook takes a modern design approach and applies it in a way that makes it easy to support bleeding edge or legacy systems.", "licenses": [ "ISC" ], "metadata": {}, "yanked": false, "sha": "d216ff41de573dcd8d708078c2ce6b7c88140ec2b84f3df373ba01e0a95c970c", "spec_sha": "1bfff2d67eccb4491dbef2cf46530088f67e0424558913044a2398d1b543aa8e", "project_uri": "https://rubygems.org/gems/playbook_ui", "gem_uri": "https://rubygems.org/gems/playbook_ui-14.10.0.gem", "homepage_uri": "https://playbook.powerapp.cloud/", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/playbook_ui/14.10.0", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "byebug", "requirements": ">= 11.0.0" }, { "name": "github_changelog_generator", "requirements": "= 1.15.2" }, { "name": "rails", "requirements": ">= 5.2.4.5" }, { "name": "rspec-html-matchers", "requirements": "= 0.9.1" }, { "name": "rspec-rails", "requirements": "~> 3.8, >= 3.8.0" }, { "name": "rubocop", "requirements": ">= 0" }, { "name": "rubocop-performance", "requirements": "~> 1.11.5" }, { "name": "tzinfo-data", "requirements": "= 1.2018.9" }, { "name": "will_paginate", "requirements": "= 3.3.1" } ], "runtime": [ { "name": "actionpack", "requirements": ">= 5.2.4.5" }, { "name": "actionview", "requirements": ">= 5.2.4.5" }, { "name": "activesupport", "requirements": ">= 5.2.4.5" }, { "name": "react-rails", "requirements": "= 2.6.1" }, { "name": "view_component", "requirements": "= 2.83.0" }, { "name": "webpacker-react", "requirements": "~> 0.3.2" } ] } } |
2024-12-26 14:22:37 UTC |
numBo-taug-07iblF7MSp |
draft_boxA web interface for browsing Ruby on Rails sent emails with support for distributed environments |
0.0.1 | Content{ "name": "draft_box", "downloads": 0, "version": "0.0.1", "version_created_at": "2024-12-26T14:12:54.184Z", "version_downloads": 0, "platform": "ruby", "authors": "Paweł Dąbrowski", "info": "A web interface for browsing Ruby on Rails sent emails with support for distributed environments", "licenses": [], "metadata": {}, "yanked": false, "sha": "008708836262ac1f0a56340663c6b1c10a48d043a8dd628f146244d06db4a388", "spec_sha": "9d213fb73ae1c72284edf5bd8cc67ecedc6e871092c7a69178de1b0048e4f915", "project_uri": "https://rubygems.org/gems/draft_box", "gem_uri": "https://rubygems.org/gems/draft_box-0.0.1.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/draft_box/0.0.1", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 14:12:58 UTC |
vTvSdP5a9iM51-brIQhGQ |
playbook_ui_docsDisplay all the components from Playbook UI inside your own system. |
14.10.0.pre.rc.24 | Content{ "name": "playbook_ui_docs", "downloads": 172323, "version": "14.10.0.pre.rc.24", "version_created_at": "2024-12-26T13:51:36.787Z", "version_downloads": 0, "platform": "ruby", "authors": "Power UX, Power Devs", "info": "Display all the components from Playbook UI inside your own system.", "licenses": [ "ISC" ], "metadata": {}, "yanked": false, "sha": "9c2b064dea7b680bc9cfc733ff0ab82bf5d42bd5f13336e947a0d229f19a4ad2", "spec_sha": "32f66a39000286343bac9bccd2dbf72707027d761dc0f3d881f46cb9925ea63f", "project_uri": "https://rubygems.org/gems/playbook_ui_docs", "gem_uri": "https://rubygems.org/gems/playbook_ui_docs-14.10.0.pre.rc.24.gem", "homepage_uri": "https://playbook.powerapp.cloud/", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/playbook_ui_docs/14.10.0.pre.rc.24", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "playbook_ui", "requirements": ">= 0" } ] } } |
2024-12-26 13:51:45 UTC |
-vP3k1n69uahC3FNxgGAb |
playbook_uiPlaybook UI is built out in Ruby View Components and React Components. Playbook takes a modern design approach and applies it in a way that makes it easy to support bleeding edge or legacy systems. |
14.10.0.pre.rc.24 | Content{ "name": "playbook_ui", "downloads": 1225631, "version": "14.10.0.pre.rc.24", "version_created_at": "2024-12-26T13:51:32.920Z", "version_downloads": 0, "platform": "ruby", "authors": "Power UX, Power Devs", "info": "Playbook UI is built out in Ruby View Components and React Components. Playbook takes a modern design approach and applies it in a way that makes it easy to support bleeding edge or legacy systems.", "licenses": [ "ISC" ], "metadata": {}, "yanked": false, "sha": "7fd5c274267057d34bd0e885d3a27fe4abaa5e31a77257a5e406c099f7d85d38", "spec_sha": "0fc64772645a410a33a90334a0e66ef5f992bf61d96f06c8d3860df4e7affd8b", "project_uri": "https://rubygems.org/gems/playbook_ui", "gem_uri": "https://rubygems.org/gems/playbook_ui-14.10.0.pre.rc.24.gem", "homepage_uri": "https://playbook.powerapp.cloud/", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/playbook_ui/14.10.0.pre.rc.24", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "byebug", "requirements": ">= 11.0.0" }, { "name": "github_changelog_generator", "requirements": "= 1.15.2" }, { "name": "rails", "requirements": ">= 5.2.4.5" }, { "name": "rspec-html-matchers", "requirements": "= 0.9.1" }, { "name": "rspec-rails", "requirements": "~> 3.8, >= 3.8.0" }, { "name": "rubocop", "requirements": ">= 0" }, { "name": "rubocop-performance", "requirements": "~> 1.11.5" }, { "name": "tzinfo-data", "requirements": "= 1.2018.9" }, { "name": "will_paginate", "requirements": "= 3.3.1" } ], "runtime": [ { "name": "actionpack", "requirements": ">= 5.2.4.5" }, { "name": "actionview", "requirements": ">= 5.2.4.5" }, { "name": "activesupport", "requirements": ">= 5.2.4.5" }, { "name": "react-rails", "requirements": "= 2.6.1" }, { "name": "view_component", "requirements": "= 2.83.0" }, { "name": "webpacker-react", "requirements": "~> 0.3.2" } ] } } |
2024-12-26 13:51:42 UTC |
d91Sl-czr1hAuatjMKOzc |
playbook_ui_docsDisplay all the components from Playbook UI inside your own system. |
14.10.0.pre.rc.23 | Content{ "name": "playbook_ui_docs", "downloads": 172322, "version": "14.10.0.pre.rc.23", "version_created_at": "2024-12-26T13:43:47.653Z", "version_downloads": 0, "platform": "ruby", "authors": "Power UX, Power Devs", "info": "Display all the components from Playbook UI inside your own system.", "licenses": [ "ISC" ], "metadata": {}, "yanked": false, "sha": "24fd70625150b5150cea033f368e506e7642987228bb40435af11e6309fc4b08", "spec_sha": "c5927ca040fdeefd0400927081f32205a7d7295ff8dd15a620b03dfaec507d0e", "project_uri": "https://rubygems.org/gems/playbook_ui_docs", "gem_uri": "https://rubygems.org/gems/playbook_ui_docs-14.10.0.pre.rc.23.gem", "homepage_uri": "https://playbook.powerapp.cloud/", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/playbook_ui_docs/14.10.0.pre.rc.23", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "playbook_ui", "requirements": ">= 0" } ] } } |
2024-12-26 13:43:53 UTC |
0cLybpKADgvEhxJgDmBK2 |
playbook_uiPlaybook UI is built out in Ruby View Components and React Components. Playbook takes a modern design approach and applies it in a way that makes it easy to support bleeding edge or legacy systems. |
14.10.0.pre.rc.23 | Content{ "name": "playbook_ui", "downloads": 1225628, "version": "14.10.0.pre.rc.23", "version_created_at": "2024-12-26T13:43:43.601Z", "version_downloads": 0, "platform": "ruby", "authors": "Power UX, Power Devs", "info": "Playbook UI is built out in Ruby View Components and React Components. Playbook takes a modern design approach and applies it in a way that makes it easy to support bleeding edge or legacy systems.", "licenses": [ "ISC" ], "metadata": {}, "yanked": false, "sha": "ef75c8eb2e2e9ebabb870c3940d4c365debed7e6448770332bd2f0ddb2189cb6", "spec_sha": "55133830b7d408969b2fb516ee279e0578cf13d1428a59618035f8d0d6539ed1", "project_uri": "https://rubygems.org/gems/playbook_ui", "gem_uri": "https://rubygems.org/gems/playbook_ui-14.10.0.pre.rc.23.gem", "homepage_uri": "https://playbook.powerapp.cloud/", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/playbook_ui/14.10.0.pre.rc.23", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "byebug", "requirements": ">= 11.0.0" }, { "name": "github_changelog_generator", "requirements": "= 1.15.2" }, { "name": "rails", "requirements": ">= 5.2.4.5" }, { "name": "rspec-html-matchers", "requirements": "= 0.9.1" }, { "name": "rspec-rails", "requirements": "~> 3.8, >= 3.8.0" }, { "name": "rubocop", "requirements": ">= 0" }, { "name": "rubocop-performance", "requirements": "~> 1.11.5" }, { "name": "tzinfo-data", "requirements": "= 1.2018.9" }, { "name": "will_paginate", "requirements": "= 3.3.1" } ], "runtime": [ { "name": "actionpack", "requirements": ">= 5.2.4.5" }, { "name": "actionview", "requirements": ">= 5.2.4.5" }, { "name": "activesupport", "requirements": ">= 5.2.4.5" }, { "name": "react-rails", "requirements": "= 2.6.1" }, { "name": "view_component", "requirements": "= 2.83.0" }, { "name": "webpacker-react", "requirements": "~> 0.3.2" } ] } } |
2024-12-26 13:43:48 UTC |
leG_hoWcs13chD_U-lzxX |
kitaboo_serviceImplement Kitaboo API method access |
0.4.0 | Content{ "name": "kitaboo_service", "downloads": 36, "version": "0.4.0", "version_created_at": "2024-12-26T12:45:24.775Z", "version_downloads": 0, "platform": "ruby", "authors": "João F.", "info": "Implement Kitaboo API method access", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "allowed_push_host": "https://rubygems.org" }, "yanked": false, "sha": "29b2ac4d79dda9585727b13568e43a5dbfd38781bfe8cfb6ae23aaf172af5444", "spec_sha": "15d94ddf11b980e0462d6e0d8af1b00940ceff58f4e402bbf8f8662e9522c25a", "project_uri": "https://rubygems.org/gems/kitaboo_service", "gem_uri": "https://rubygems.org/gems/kitaboo_service-0.4.0.gem", "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "bug_tracker_uri": null, "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 12:45:27 UTC |
e0JKGQxoqsbzzfGAMclkd |
kitaboo_serviceImplement Kitaboo API method access |
0.3.0 | Content{ "name": "kitaboo_service", "downloads": 31, "version": "0.3.0", "version_created_at": "2024-12-26T12:40:31.951Z", "version_downloads": 0, "platform": "ruby", "authors": "João F.", "info": "Implement Kitaboo API method access", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "allowed_push_host": "https://rubygems.org" }, "yanked": false, "sha": "6fc1eb419117c34c07e0d0b062fc2921d8d604ad8d562282956552eac0686b7c", "spec_sha": "5d5438567329c04fb468c5c019cad8e66df40a65b93c652a1b2379f800a82042", "project_uri": "https://rubygems.org/gems/kitaboo_service", "gem_uri": "https://rubygems.org/gems/kitaboo_service-0.3.0.gem", "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "bug_tracker_uri": null, "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 12:40:35 UTC |
mukg39ErehLjMMs8-Z0J8 |
kitaboo_serviceImplement Kitaboo API method access |
0.2.0 | Content{ "name": "kitaboo_service", "downloads": 20, "version": "0.2.0", "version_created_at": "2024-12-26T12:32:48.788Z", "version_downloads": 0, "platform": "ruby", "authors": "João F.", "info": "Implement Kitaboo API method access", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "allowed_push_host": "https://rubygems.org" }, "yanked": false, "sha": "83c9de60e2b09564b3cc51fc71be0c4b2b6193e8c0e960e47009608baba250d9", "spec_sha": "749d098871914a7bb91979783a34b2f495c61f411b8c038940641cd03a7e9c16", "project_uri": "https://rubygems.org/gems/kitaboo_service", "gem_uri": "https://rubygems.org/gems/kitaboo_service-0.2.0.gem", "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "bug_tracker_uri": null, "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 12:32:51 UTC |
jNMuyaTbxcPJGkrgMlOrM |
currency_selectCurrency select plugin for Rails |
8.1.0 | Content{ "name": "currency_select", "downloads": 242265, "version": "8.1.0", "version_created_at": "2024-12-26T12:27:51.802Z", "version_downloads": 0, "platform": "ruby", "authors": "Trond Arve Nordheim, Oliver Klee", "info": "Currency select plugin for Rails", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "82465dc1ec78d5bfa0413b63819e8da2d7c6232773f54e4126987a92fc00d38d", "spec_sha": "45311ed0e99841af9c58814b2496ae2ece1185c77a07fd46538cc95b1ec272c5", "project_uri": "https://rubygems.org/gems/currency_select", "gem_uri": "https://rubygems.org/gems/currency_select-8.1.0.gem", "homepage_uri": "https://github.com/braingourmets/currency_select", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/currency_select/8.1.0", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "rspec-rails", "requirements": "~> 7.1.0" }, { "name": "rubocop", "requirements": "~> 1.69.2" }, { "name": "rubocop-rails", "requirements": "~> 2.28.0" }, { "name": "rubocop-rake", "requirements": "~> 0.6.0" }, { "name": "rubocop-rspec", "requirements": "~> 3.3.0" }, { "name": "rubocop-rspec_rails", "requirements": "~> 2.30.0" } ], "runtime": [ { "name": "actionview", "requirements": ">= 7.0.0, < 8.1" }, { "name": "money", "requirements": "~> 6.0" } ] } } |
2024-12-26 12:27:54 UTC |
vvRQKpyKPvmD1SEju_gHc |
page_title_helperSimple, internationalized and DRY page titles and headings for Rails. |
9.1.0 | Content{ "name": "page_title_helper", "downloads": 281928, "version": "9.1.0", "version_created_at": "2024-12-26T12:27:40.649Z", "version_downloads": 0, "platform": "ruby", "authors": "Lukas Westermann", "info": "Simple, internationalized and DRY page titles and headings for Rails.", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "6de4315f7639935df3f31b8bd2837579f24f9d7818798c81d6433b4e863d66f1", "spec_sha": "79fc8d0e97b58359ddd6d1eb886cf81cc8447c149983b786fc7a3788c0f45225", "project_uri": "https://rubygems.org/gems/page_title_helper", "gem_uri": "https://rubygems.org/gems/page_title_helper-9.1.0.gem", "homepage_uri": "https://github.com/lwe/page_title_helper", "wiki_uri": "", "documentation_uri": "https://www.rubydoc.info/gems/page_title_helper/9.1.0", "mailing_list_uri": "", "source_code_uri": "http://github.com/lwe/page_title_helper", "bug_tracker_uri": "http://github.com/lwe/page_title_helper/issues", "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "rake", "requirements": "~> 13.2.1" }, { "name": "rubocop", "requirements": "~> 1.69.2" }, { "name": "rubocop-rails", "requirements": "~> 2.28.0" }, { "name": "rubocop-rake", "requirements": "~> 0.6.0" }, { "name": "shoulda", "requirements": "~> 4.0.0" } ], "runtime": [ { "name": "rails", "requirements": ">= 7.0.0, < 8.1" } ] } } |
2024-12-26 12:27:43 UTC |
I0qtouI-N_GtfgePUNmjX |
kitaboo_serviceImplement Kitaboo API method access |
0.1.0 | Content{ "name": "kitaboo_service", "downloads": 0, "version": "0.1.0", "version_created_at": "2024-12-26T12:09:26.345Z", "version_downloads": 0, "platform": "ruby", "authors": "João F.", "info": "Implement Kitaboo API method access", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "allowed_push_host": "https://rubygems.org" }, "yanked": false, "sha": "1cf9f568fa8e7c2dbedff53beab1256d5da9e5e44a4909903947b5b469e6e876", "spec_sha": "73ee4d7d71e424ae3e3a49c95ff3bf0f2bf1212ba11cf1f28e10816cfcaefc40", "project_uri": "https://rubygems.org/gems/kitaboo_service", "gem_uri": "https://rubygems.org/gems/kitaboo_service-0.1.0.gem", "homepage_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "bug_tracker_uri": null, "changelog_uri": "https://github.com/jpedroantunes/kitaboo-api-service", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 12:09:29 UTC |
Jm0vrzr5ibhsD2Bp_lLAp |
qbashWith the help of Open3 executes bash command and conveniently returns its output and exit code |
0.2.2 | Content{ "name": "qbash", "downloads": 5366, "version": "0.2.2", "version_created_at": "2024-12-26T12:09:15.487Z", "version_downloads": 0, "platform": "ruby", "authors": "Yegor Bugayenko", "info": "With the help of Open3 executes bash command and conveniently returns its output and exit code", "licenses": [ "MIT" ], "metadata": { "rubygems_mfa_required": "true" }, "yanked": false, "sha": "847a4158fa92d92d52a31eda34590236702a5ff12d70cc978452844c52fd3ba5", "spec_sha": "6cfeaab805b763385f01de1c7e55c2ccdc72b1b5af2c43ac0995d214eb2e0273", "project_uri": "https://rubygems.org/gems/qbash", "gem_uri": "https://rubygems.org/gems/qbash-0.2.2.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/qbash/0.2.2", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "backtrace", "requirements": "> 0" }, { "name": "elapsed", "requirements": "> 0" }, { "name": "loog", "requirements": "> 0" }, { "name": "tago", "requirements": "> 0" } ] } } |
2024-12-26 12:09:18 UTC |
asSxjVwPHvCbxBVTsJbTP |
hotwire-livereloadAutomatically reload Hotwire Turbo when app files are modified. |
2.0.0 | Content{ "name": "hotwire-livereload", "downloads": 865797, "version": "2.0.0", "version_created_at": "2024-12-26T11:45:51.693Z", "version_downloads": 0, "platform": "ruby", "authors": "Kirill Platonov", "info": "Automatically reload Hotwire Turbo when app files are modified.", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "8ebdc603f92f8dc8e61ad6f263567a0e41b1d2a43b2a4fb462f75db7f3d47c96", "spec_sha": "3a8fb529f5f14176b1923d935e5439cd318107def654e4f7dbd2daede46eb1a5", "project_uri": "https://rubygems.org/gems/hotwire-livereload", "gem_uri": "https://rubygems.org/gems/hotwire-livereload-2.0.0.gem", "homepage_uri": "https://github.com/kirillplatonov/hotwire-livereload", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/hotwire-livereload/2.0.0", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "actioncable", "requirements": ">= 7.0.0" }, { "name": "listen", "requirements": ">= 3.0.0" }, { "name": "railties", "requirements": ">= 7.0.0" } ] } } |
2024-12-26 11:45:54 UTC |
iMwx2KFWXG9sOI2RG2fgm |
hotwire-sparkA live reloading system that updates just what's needed to offer a smooth experience. |
0.1.11 | Content{ "name": "hotwire-spark", "downloads": 4600, "version": "0.1.11", "version_created_at": "2024-12-26T10:48:07.104Z", "version_downloads": 0, "platform": "ruby", "authors": "Jorge Manrubia", "info": "A live reloading system that updates just what's needed to offer a smooth experience.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/hotwired/spark", "changelog_uri": "https://github.com/hotwired/spark", "source_code_uri": "https://github.com/hotwired/spark" }, "yanked": false, "sha": "8844cedfb9bafd038f21e336050f551bb348af04d2c21fa30694dac2090aba10", "spec_sha": "f92a6da73ca590d950e3006b88a9f493872ccd1cd00789df4c6ff7c831a23429", "project_uri": "https://rubygems.org/gems/hotwire-spark", "gem_uri": "https://rubygems.org/gems/hotwire-spark-0.1.11.gem", "homepage_uri": "https://github.com/hotwired/spark", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/hotwired/spark", "bug_tracker_uri": null, "changelog_uri": "https://github.com/hotwired/spark", "funding_uri": null, "dependencies": { "development": [ { "name": "capybara", "requirements": ">= 0" }, { "name": "cuprite", "requirements": ">= 0" }, { "name": "rubocop", "requirements": ">= 0" }, { "name": "rubocop-rails-omakase", "requirements": ">= 0" } ], "runtime": [ { "name": "listen", "requirements": ">= 0" }, { "name": "rails", "requirements": ">= 7.0.0" }, { "name": "zeitwerk", "requirements": ">= 0" } ] } } |
2024-12-26 10:48:11 UTC |
vYdfFYxighBNaiEuqFRQl |
qbashWith the help of Open3 executes bash command and conveniently returns its output and exit code |
0.2.1 | Content{ "name": "qbash", "downloads": 5311, "version": "0.2.1", "version_created_at": "2024-12-26T10:45:52.470Z", "version_downloads": 0, "platform": "ruby", "authors": "Yegor Bugayenko", "info": "With the help of Open3 executes bash command and conveniently returns its output and exit code", "licenses": [ "MIT" ], "metadata": { "rubygems_mfa_required": "true" }, "yanked": false, "sha": "e6c02bc4a363f6173093d56cb1a2f4f580fd303a21e9025012f486c54cdf9c71", "spec_sha": "84da61c8b2ea55a32875b242249671d692d00dffe1664c2f232333f4b7415db9", "project_uri": "https://rubygems.org/gems/qbash", "gem_uri": "https://rubygems.org/gems/qbash-0.2.1.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/qbash/0.2.1", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "backtrace", "requirements": "> 0" }, { "name": "elapsed", "requirements": "> 0" }, { "name": "loog", "requirements": "> 0" }, { "name": "tago", "requirements": "> 0" } ] } } |
2024-12-26 10:45:55 UTC |
2p25mK2h0zWZeYR36ZLMq |
steepGradual Typing for Ruby |
1.9.3 | Content{ "name": "steep", "downloads": 2684473, "version": "1.9.3", "version_created_at": "2024-12-26T10:16:41.538Z", "version_downloads": 0, "platform": "ruby", "authors": "Soutaro Matsumoto", "info": "Gradual Typing for Ruby", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/soutaro/steep", "changelog_uri": "https://github.com/soutaro/steep/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/soutaro/steep" }, "yanked": false, "sha": "c00b5b951ec2248227ff463b3618ac785f27c9186898d668872a8fc8833a07c8", "spec_sha": "5452e16dfa7c78f6e80a5631df25a2051c392bb6d543369e6c3503fd95b7bff7", "project_uri": "https://rubygems.org/gems/steep", "gem_uri": "https://rubygems.org/gems/steep-1.9.3.gem", "homepage_uri": "https://github.com/soutaro/steep", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/soutaro/steep", "bug_tracker_uri": null, "changelog_uri": "https://github.com/soutaro/steep/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "activesupport", "requirements": ">= 5.1" }, { "name": "concurrent-ruby", "requirements": ">= 1.1.10" }, { "name": "csv", "requirements": ">= 3.0.9" }, { "name": "fileutils", "requirements": ">= 1.1.0" }, { "name": "json", "requirements": ">= 2.1.0" }, { "name": "language_server-protocol", "requirements": ">= 3.15, < 4.0" }, { "name": "listen", "requirements": "~> 3.0" }, { "name": "logger", "requirements": ">= 1.3.0" }, { "name": "parser", "requirements": ">= 3.1" }, { "name": "rainbow", "requirements": ">= 2.2.2, < 4.0" }, { "name": "rbs", "requirements": "~> 3.8" }, { "name": "securerandom", "requirements": ">= 0.1" }, { "name": "strscan", "requirements": ">= 1.0.0" }, { "name": "terminal-table", "requirements": ">= 2, < 4" }, { "name": "uri", "requirements": ">= 0.12.0" } ] } } |
2024-12-26 10:16:47 UTC |
lc2b6MHBVTGmhm7zfIKLA |
lefthookA single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows. |
1.10.1 | Content{ "name": "lefthook", "downloads": 4642201, "version": "1.10.1", "version_created_at": "2024-12-26T09:49:40.364Z", "version_downloads": 0, "platform": "ruby", "authors": "A.A.Abroskin, Evil Martians", "info": "A single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows.", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "c4165f7b4911d0a47520b73d4920bc904ddc66c5bdb1d7a42638901003913d67", "spec_sha": "55404c9181bc2fbf3a736fcfc1e821521452aa68a295902dc8d4df451d392552", "project_uri": "https://rubygems.org/gems/lefthook", "gem_uri": "https://rubygems.org/gems/lefthook-1.10.1.gem", "homepage_uri": "https://github.com/evilmartians/lefthook", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/lefthook/1.10.1", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 09:49:44 UTC |
0fIr7WtbPcoK-yYkagjIY |
rspec-rails-apiCreate acceptance tests to check the Rails API responses and generate documentation from it. |
0.9.0 | Content{ "name": "rspec-rails-api", "downloads": 30317, "version": "0.9.0", "version_created_at": "2024-12-26T09:38:05.274Z", "version_downloads": 0, "platform": "ruby", "authors": "Manuel Tancoigne", "info": "Create acceptance tests to check the Rails API responses and generate\ndocumentation from it.\n", "licenses": [ "MIT" ], "metadata": { "changelog_uri": "https://gitlab.com/experimentslabs/rspec-rails-api/blob/master/CHANGELOG.md", "bug_tracker_uri": "https://gitlab.com/experimentslabs/rspec-rails-api/issues", "source_code_uri": "https://gitlab.com/experimentslabs/rspec-rails-api", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "d8099fe179845603c5f69826568fa383cf6bf8c0de07a6b2abb0e85ae2b8e932", "spec_sha": "b9379c8ec04384ca2bf4df8bf91fb0566499b88740cb0be93135bca6172cfceb", "project_uri": "https://rubygems.org/gems/rspec-rails-api", "gem_uri": "https://rubygems.org/gems/rspec-rails-api-0.9.0.gem", "homepage_uri": "https://gitlab.com/experimentslabs/rspec-rails-api", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://gitlab.com/experimentslabs/rspec-rails-api", "bug_tracker_uri": "https://gitlab.com/experimentslabs/rspec-rails-api/issues", "changelog_uri": "https://gitlab.com/experimentslabs/rspec-rails-api/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 09:38:10 UTC |
yRC-Ak1my1pfooI6jvMYg |
trace_vizTraceViz is a Ruby library designed to trace and visualize events executed in a block of code. Useful for debugging and logging. Diagram generation is currently under development. |
0.0.2 | Content{ "name": "trace_viz", "downloads": 136, "version": "0.0.2", "version_created_at": "2024-12-26T08:58:04.407Z", "version_downloads": 0, "platform": "ruby", "authors": "Huy Nguyen", "info": "TraceViz is a Ruby library designed to trace and visualize events executed \nin a block of code. Useful for debugging and logging. \nDiagram generation is currently under development.\n", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/patrick204nqh/trace_viz", "changelog_uri": "https://github.com/patrick204nqh/trace_viz/blob/main/CHANGELOG.md", "source_code_uri": "https://github.com/patrick204nqh/trace_viz" }, "yanked": false, "sha": "5cc2263fceee0cfc1fc121bc710626a25560c5b9b1867aeb805d3463d4267dae", "spec_sha": "225a62b396e9c824e12459ef42698e7b4733d93534c63fd6c6f074445732fbb5", "project_uri": "https://rubygems.org/gems/trace_viz", "gem_uri": "https://rubygems.org/gems/trace_viz-0.0.2.gem", "homepage_uri": "https://github.com/patrick204nqh/trace_viz", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/patrick204nqh/trace_viz", "bug_tracker_uri": null, "changelog_uri": "https://github.com/patrick204nqh/trace_viz/blob/main/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 08:58:07 UTC |
tx2JJRayo5GRJ8T7K_x8F |
rubyskyBlueSky API Client |
0.5.0 | Content{ "name": "rubysky", "downloads": 667, "version": "0.5.0", "version_created_at": "2024-12-26T08:53:09.890Z", "version_downloads": 0, "platform": "ruby", "authors": "Kugayama Nana", "info": "BlueSky API Client", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/nota/rubysky", "changelog_uri": "https://github.com/nota/simple_tweet/blob/main/CHANGELOG.md", "source_code_uri": "https://github.com/nota/rubysky", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "d3ece0b2b9a9b8640cab36b2f54895e81b725756220ffc00e862be83e626b2c0", "spec_sha": "979dd550fdb8daebcc982591329f261568a8a220fd569c6733a37839ec55ec0e", "project_uri": "https://rubygems.org/gems/rubysky", "gem_uri": "https://rubygems.org/gems/rubysky-0.5.0.gem", "homepage_uri": "https://github.com/nota/rubysky", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/nota/rubysky", "bug_tracker_uri": null, "changelog_uri": "https://github.com/nota/simple_tweet/blob/main/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "jwt", "requirements": "~> 2.9" } ] } } |
2024-12-26 08:53:13 UTC |
B6ipTPRcvOwX-vUuLYA1n |
bartaskBackup and Recovery tool for RDBMS of Rails development. |
0.1.1 | Content{ "name": "bartask", "downloads": 159, "version": "0.1.1", "version_created_at": "2024-12-26T08:50:26.505Z", "version_downloads": 0, "platform": "ruby", "authors": "Yuji Yaginuma", "info": "Backup and Recovery tool for RDBMS of Rails development.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/y-yagi/bartask" }, "yanked": false, "sha": "14df17520b8c5b3b28398dd1a2023cc7eacf95c43eec1d9688370e492ff9a4c8", "spec_sha": "d45061573fd8424a8a06c3348016390f6895f54041ed1637725443c5f13d3ac3", "project_uri": "https://rubygems.org/gems/bartask", "gem_uri": "https://rubygems.org/gems/bartask-0.1.1.gem", "homepage_uri": "https://github.com/y-yagi/bartask", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "activesupport", "requirements": ">= 0" } ] } } |
2024-12-26 08:50:29 UTC |
8a-kNeQh7EjUjKX6NHb0n |
rubinoRubino is a tool |
0.1.0 | Content{ "name": "rubino", "downloads": 0, "version": "0.1.0", "version_created_at": "2024-12-26T08:40:56.568Z", "version_downloads": 0, "platform": "ruby", "authors": "HASUMI Hitoshi", "info": "Rubino is a tool", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/hasumikin/rubino" }, "yanked": false, "sha": "e60ee9c48c8829c39475c0a1a1573509c181be5d72384900874b98ea70119273", "spec_sha": "7ef9943693036899f85a5c7b4927caea875e29472b4bfe42407ad9663337e88a", "project_uri": "https://rubygems.org/gems/rubino", "gem_uri": "https://rubygems.org/gems/rubino-0.1.0.gem", "homepage_uri": "https://github.com/hasumikin/rubino", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 08:40:59 UTC |
Y8x2dWCNMnhjQSz3g7mej |
pixabWrite a longer description or delete this line. |
2.0.0 | Content{ "name": "pixab", "downloads": 14393, "version": "2.0.0", "version_created_at": "2024-12-26T07:49:21.795Z", "version_downloads": 0, "platform": "ruby", "authors": "廖再润", "info": "Write a longer description or delete this line.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/LZRun", "changelog_uri": "https://github.com/LZRun/multiple_project_tools", "source_code_uri": "https://github.com/LZRun/multiple_project_tools" }, "yanked": false, "sha": "7c732ea67158580026a3ef7abfde61be781fd2650dcda11afeebb321730f09fa", "spec_sha": "62f096b9131cf24e5d4b67e61cbbafe84d40f9688989ba1f4a3a0ee00e2ac0d5", "project_uri": "https://rubygems.org/gems/pixab", "gem_uri": "https://rubygems.org/gems/pixab-2.0.0.gem", "homepage_uri": "https://github.com/LZRun", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/LZRun/multiple_project_tools", "bug_tracker_uri": null, "changelog_uri": "https://github.com/LZRun/multiple_project_tools", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "colored2", "requirements": ">= 0" }, { "name": "nokogiri", "requirements": ">= 0" }, { "name": "rest-client", "requirements": ">= 0" }, { "name": "rubyzip", "requirements": ">= 0" } ] } } |
2024-12-26 07:49:24 UTC |
NZdOlBvUb94--CunoyCaX |
sbmt-pactIt is a powerful Ruby gem designed to streamline Pact testing in microservice architectures. It supports the latest Pact specifications and offers capabilities beyond the current pact-ruby gem, including support for non-HTTP transports like gRPC and async messaging systems like Kafka. |
0.12.2 | Content{ "name": "sbmt-pact", "downloads": 483, "version": "0.12.2", "version_created_at": "2024-12-26T07:42:22.595Z", "version_downloads": 0, "platform": "ruby", "authors": "Kuper Ruby Platform Team", "info": "It is a powerful Ruby gem designed to streamline Pact testing in microservice architectures. It supports the latest Pact specifications and offers capabilities beyond the current pact-ruby gem, including support for non-HTTP transports like gRPC and async messaging systems like Kafka.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/Kuper-Tech/sbmt-pact", "changelog_uri": "https://github.com/Kuper-Tech/sbmt-pact/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/Kuper-Tech/sbmt-pact", "allowed_push_host": "https://rubygems.org", "rubygems_mfa_required": "false" }, "yanked": false, "sha": "b52c6f15c04ddc8cc2e8405dfbef6a1980c8d66b7d2441f9931bed3b799822ea", "spec_sha": "f2ae99e25b2e79f8bb8fef50c652d06ce50a5db9b3ba67371841d588183e2a00", "project_uri": "https://rubygems.org/gems/sbmt-pact", "gem_uri": "https://rubygems.org/gems/sbmt-pact-0.12.2.gem", "homepage_uri": "https://github.com/Kuper-Tech/sbmt-pact", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/Kuper-Tech/sbmt-pact", "bug_tracker_uri": null, "changelog_uri": "https://github.com/Kuper-Tech/sbmt-pact/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [ { "name": "appraisal", "requirements": ">= 2.4" }, { "name": "bundler", "requirements": ">= 2.3" }, { "name": "combustion", "requirements": ">= 1.3" }, { "name": "faraday", "requirements": "> 1.0" }, { "name": "gruf", "requirements": ">= 2.18" }, { "name": "gruf-rspec", "requirements": ">= 0.6.0" }, { "name": "rake", "requirements": ">= 13.0" }, { "name": "rspec", "requirements": ">= 0" }, { "name": "rspec_junit_formatter", "requirements": ">= 0" }, { "name": "rspec-rails", "requirements": ">= 0" }, { "name": "rubocop", "requirements": ">= 0" }, { "name": "rubocop-performance", "requirements": ">= 0" }, { "name": "rubocop-rails", "requirements": ">= 0" }, { "name": "rubocop-rspec", "requirements": ">= 0" }, { "name": "sbmt-kafka_consumer", "requirements": ">= 2.0.1" }, { "name": "sbmt-kafka_producer", "requirements": ">= 1.0" }, { "name": "standard", "requirements": ">= 1.35.1" }, { "name": "vcr", "requirements": ">= 6.0" }, { "name": "webmock", "requirements": ">= 3.0" } ], "runtime": [ { "name": "pact-ffi", "requirements": "~> 0.4.26" }, { "name": "rack", "requirements": "~> 2.0" }, { "name": "rack-proxy", "requirements": ">= 0" }, { "name": "webrick", "requirements": ">= 0" }, { "name": "zeitwerk", "requirements": "~> 2.3" } ] } } |
2024-12-26 07:42:25 UTC |
UO4eUcWE_BFuU9fF-u0aK |
word-games-themeWord-Games theme for all word-games-sites |
3.2.6 | Content{ "name": "word-games-theme", "downloads": 219559, "version": "3.2.6", "version_created_at": "2024-12-26T07:38:34.215Z", "version_downloads": 0, "platform": "ruby", "authors": "manpreet-appscms", "info": "Word-Games theme for all word-games-sites", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "d9cb4d955175c1d23f3305b7e7f07dedbd6c618edbcce824cbc427bca08a5139", "spec_sha": "6ee5498392e44fdcc6910bb5da694fa2fcf5389bbe8014d3a16d0f39f9ae9e7e", "project_uri": "https://rubygems.org/gems/word-games-theme", "gem_uri": "https://rubygems.org/gems/word-games-theme-3.2.6.gem", "homepage_uri": "https://github.com/Contenttool/word-games-theme", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/word-games-theme/3.2.6", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "bundler", "requirements": ">= 0" }, { "name": "rake", "requirements": "~> 12.0" } ], "runtime": [ { "name": "jekyll", "requirements": "~> 3.9" } ] } } |
2024-12-26 07:38:38 UTC |
8DaUoCjXzpsXS-QFOvrXV |
word-games-themeWord-Games theme for all word-games-sites |
3.2.5 | Content{ "name": "word-games-theme", "downloads": 219514, "version": "3.2.5", "version_created_at": "2024-12-26T07:03:11.496Z", "version_downloads": 0, "platform": "ruby", "authors": "manpreet-appscms", "info": "Word-Games theme for all word-games-sites", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "a93d4239be2a9610666cb245b8091fbfa58eece19e14605e61078a097401ceb3", "spec_sha": "310ca654ff76e943ebd2467badd66cdb7921106d52ee22ebd27c73d3d1ced0f6", "project_uri": "https://rubygems.org/gems/word-games-theme", "gem_uri": "https://rubygems.org/gems/word-games-theme-3.2.5.gem", "homepage_uri": "https://github.com/Contenttool/word-games-theme", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/word-games-theme/3.2.5", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "bundler", "requirements": ">= 0" }, { "name": "rake", "requirements": "~> 12.0" } ], "runtime": [ { "name": "jekyll", "requirements": "~> 3.9" } ] } } |
2024-12-26 07:03:16 UTC |
JH7QCOg7o4knkxc9BT8lw |
action_dispatch-test_response-jsonThis gem provide response.json or response.html on your test. |
8.0.1 | Content{ "name": "action_dispatch-test_response-json", "downloads": 24685, "version": "8.0.1", "version_created_at": "2024-12-26T06:56:49.970Z", "version_downloads": 0, "platform": "ruby", "authors": "yalab", "info": "This gem provide response.json or response.html on your test.", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "643145860e94c5812f9fa72890314ccb8113a4a8e8cda302a2ff447497b3136c", "spec_sha": "a95935a42693ee4fc247421adef2b489b898202f496f5be20d02b05b894b6d36", "project_uri": "https://rubygems.org/gems/action_dispatch-test_response-json", "gem_uri": "https://rubygems.org/gems/action_dispatch-test_response-json-8.0.1.gem", "homepage_uri": "https://github.com/yalab/action_dispatch-test_response-json", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/action_dispatch-test_response-json/8.0.1", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "actionpack", "requirements": "~> 8.0.0" }, { "name": "nokogiri", "requirements": ">= 0" } ] } } |
2024-12-26 06:56:52 UTC |
qU2W3zPXH_hfwL2IETIVv |
word-games-themeWord-Games theme for all word-games-sites |
3.2.4 | Content{ "name": "word-games-theme", "downloads": 219512, "version": "3.2.4", "version_created_at": "2024-12-26T06:55:18.788Z", "version_downloads": 0, "platform": "ruby", "authors": "manpreet-appscms", "info": "Word-Games theme for all word-games-sites", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "8c0248589ef109a1aa2a91107b0e799b21375e874bfaba8c5f870e499de6e789", "spec_sha": "694f33f6bc1eb0ba14872dbc847bf8d99e78954ab4259060734ca2e7477dca3c", "project_uri": "https://rubygems.org/gems/word-games-theme", "gem_uri": "https://rubygems.org/gems/word-games-theme-3.2.4.gem", "homepage_uri": "https://github.com/Contenttool/word-games-theme", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/word-games-theme/3.2.4", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "bundler", "requirements": ">= 0" }, { "name": "rake", "requirements": "~> 12.0" } ], "runtime": [ { "name": "jekyll", "requirements": "~> 3.9" } ] } } |
2024-12-26 06:55:21 UTC |
Xqz4o5IN_ZDjaHbPMqJEj |
ruby-openai-swarmAllows for creating swarms of AI agents that can call functions and interact with each other |
0.4.0.1 | Content{ "name": "ruby-openai-swarm", "downloads": 1944, "version": "0.4.0.1", "version_created_at": "2024-12-26T06:38:12.174Z", "version_downloads": 0, "platform": "ruby", "authors": "Grayson", "info": "Allows for creating swarms of AI agents that can call functions and interact with each other", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/grayson/ruby-openai-swarm", "changelog_uri": "https://github.com/grayson/ruby-openai-swarm/blob/main/CHANGELOG.md", "source_code_uri": "https://github.com/grayson/ruby-openai-swarm" }, "yanked": false, "sha": "052bec2324e68399ba555b2a753ce4e74632e3b4a5bfa60a1155ec10e9500fbe", "spec_sha": "8a7a6edbb7f54c6b9b24645fb571e933663a84fd09a4e1e9c99645b8ef575035", "project_uri": "https://rubygems.org/gems/ruby-openai-swarm", "gem_uri": "https://rubygems.org/gems/ruby-openai-swarm-0.4.0.1.gem", "homepage_uri": "https://github.com/grayson/ruby-openai-swarm", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/grayson/ruby-openai-swarm", "bug_tracker_uri": null, "changelog_uri": "https://github.com/grayson/ruby-openai-swarm/blob/main/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [ { "name": "pry", "requirements": ">= 0" }, { "name": "rake", "requirements": "~> 13.0" }, { "name": "rspec", "requirements": "~> 3.0" } ], "runtime": [ { "name": "ruby-openai", "requirements": "~> 7.3" } ] } } |
2024-12-26 06:38:17 UTC |
uibASNMOumKdCYNvUFpkp |
figurate_numbersGenerates 241 infinite sequences of plane, space, and multidimensional figurate numbers based on the book ‘Figurate Numbers’ (2012) by Elena Deza and Michel Deza. The methods are implemented using the Enumerator class and are designed for use in your math projects or in Sonic Pi. |
1.4.0 | Content{ "name": "figurate_numbers", "downloads": 2433, "version": "1.4.0", "version_created_at": "2024-12-26T06:10:13.271Z", "version_downloads": 0, "platform": "ruby", "authors": "Edgar Armando Delgado Vega", "info": "Generates 241 infinite sequences of plane, space, and multidimensional figurate numbers based on the book ‘Figurate Numbers’ (2012) by Elena Deza and Michel Deza. The methods are implemented using the Enumerator class and are designed for use in your math projects or in Sonic Pi.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/edelveart/figurate_numbers", "source_code_uri": "https://github.com/edelveart/figurate_numbers/tree/v1.4.0", "documentation_uri": "https://www.rubydoc.info/gems/figurate_numbers" }, "yanked": false, "sha": "17d5638dbcb1cbf13e5182be2cd847ca3de84d3422cfb79ee389bcd388b674d5", "spec_sha": "7de9a86e16767c55ce3d497fc7d941393df2e917b943b43a4d643b52a2246ec3", "project_uri": "https://rubygems.org/gems/figurate_numbers", "gem_uri": "https://rubygems.org/gems/figurate_numbers-1.4.0.gem", "homepage_uri": "https://github.com/edelveart/figurate_numbers", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/figurate_numbers", "mailing_list_uri": null, "source_code_uri": "https://github.com/edelveart/figurate_numbers/tree/v1.4.0", "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 06:10:17 UTC |
jjjG24PStizpWKX9zaggr |
bigdecimalThis library provides arbitrary-precision decimal floating-point number class. |
3.1.9 | Content{ "name": "bigdecimal", "downloads": 121084415, "version": "3.1.9", "version_created_at": "2024-12-26T04:51:32.878Z", "version_downloads": 0, "platform": "java", "authors": "Kenta Murata, Zachary Scott, Shigeo Kobayashi", "info": "This library provides arbitrary-precision decimal floating-point number class.", "licenses": [ "Ruby", "BSD-2-Clause" ], "metadata": { "changelog_uri": "https://github.com/ruby/bigdecimal/blob/master/CHANGES.md" }, "yanked": false, "sha": "dd9b8f7c870664cd9538a1325ce385ba57a6627969177258c4f0e661a7be4456", "spec_sha": "72ae0cae01c3f63b1f6c98680ae8040e7215e9117f6e21181c8f7e51294aec4d", "project_uri": "https://rubygems.org/gems/bigdecimal", "gem_uri": "https://rubygems.org/gems/bigdecimal-3.1.9-java.gem", "homepage_uri": "https://github.com/ruby/bigdecimal", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": "https://github.com/ruby/bigdecimal/blob/master/CHANGES.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 04:51:36 UTC |
Rkwox4wWW1GonC2PEhgEP |
glib-webThis rubygem does not have a description or summary. |
4.20.0 | Content{ "name": "glib-web", "downloads": 474435, "version": "4.20.0", "version_created_at": "2024-12-26T04:46:40.514Z", "version_downloads": 0, "platform": "ruby", "authors": "", "info": "This rubygem does not have a description or summary.", "licenses": [], "metadata": {}, "yanked": false, "sha": "f05612a7559aa266c5138bbf2ab0d4ad200609ae3e3f7f6aee305ea583401496", "spec_sha": "57666bea35dd0c56923f7ff0c777e6130ce99287f051b51a28f0c3174c9dd8cc", "project_uri": "https://rubygems.org/gems/glib-web", "gem_uri": "https://rubygems.org/gems/glib-web-4.20.0.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/glib-web/4.20.0", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "rubocop", "requirements": ">= 0" } ], "runtime": [ { "name": "actioncable", "requirements": "~> 7.0" }, { "name": "activestorage", "requirements": "~> 7.0" }, { "name": "js_regex", "requirements": "~> 3.11" }, { "name": "pundit", "requirements": "~> 2.1" }, { "name": "rest-client", "requirements": "~> 2.1" } ] } } |
2024-12-26 04:46:43 UTC |
Z-lf96qFMXki8cB7p8-2z |
rails_buildrails_build is a very small, fast enough, static site generator built on top of the rails you already know and love. it's been in production usage for close to a decade but i've been too busy to relase it until now. also, #wtf is up with javascript land?! it has a small set of dependencies, namely the `parallel` gem, and requires absolutely minimal configuration. it should be pretty darn self explanatory: |
2.4.5 | Content{ "name": "rails_build", "downloads": 4713, "version": "2.4.5", "version_created_at": "2024-12-26T03:27:07.179Z", "version_downloads": 0, "platform": "ruby", "authors": "Ara T. Howard", "info": "rails_build is a very small, fast enough, static site generator built\non top of the rails you already know and love.\n\nit's been in production usage for close to a decade but i've been too\nbusy to relase it until now. also, #wtf is up with javascript land?!\n\nit has a small set of dependencies, namely the `parallel` gem, and\nrequires absolutely minimal configuration. it should be pretty darn\nself explanatory:", "licenses": [ "Nonstandard" ], "metadata": {}, "yanked": false, "sha": "3c7b406830d5093631f5ab946b44997dddd801ae77d6dbfe8fc6590e474c372e", "spec_sha": "276e4dc779ebca898e6fc88d693409020050862f83acc205801aa61ed45bd6ab", "project_uri": "https://rubygems.org/gems/rails_build", "gem_uri": "https://rubygems.org/gems/rails_build-2.4.5.gem", "homepage_uri": "https://github.com/ahoward/rails_build", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/rails_build/2.4.5", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "getoptlong", "requirements": "~> 0.2" }, { "name": "parallel", "requirements": "~> 1.26" } ] } } |
2024-12-26 03:27:09 UTC |
zCojGjg15e10qcpuxz5ER |
domainic-typeStop wrestling with complex type validations and unclear error messages. Domainic::Type brings type validation to Ruby that is both powerful and delightful to use. Build composable type constraints with crystal-clear error messages that actually tell you what went wrong. From simple type checks to complex collection validations, make your types work for you, not against you! |
0.1.0.alpha.3.1.0 | Content{ "name": "domainic-type", "downloads": 773, "version": "0.1.0.alpha.3.1.0", "version_created_at": "2024-12-26T03:26:26.463Z", "version_downloads": 0, "platform": "ruby", "authors": "Aaron Allen", "info": "Stop wrestling with complex type validations and unclear error messages. Domainic::Type brings type validation to Ruby that is both powerful and delightful to use. Build composable type constraints with crystal-clear error messages that actually tell you what went wrong. From simple type checks to complex collection validations, make your types work for you, not against you!", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/domainic/domainic/tree/domainic-type-v0.1.0-alpha.3.1.0/domainic-type", "changelog_uri": "https://github.com/domainic/domainic/releases/tag/domainic-type-v0.1.0-alpha.3.1.0", "bug_tracker_uri": "https://github.com/domainic/domainic/issues", "source_code_uri": "https://github.com/domainic/domainic/tree/domainic-type-v0.1.0-alpha.3.1.0/domainic-type", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "011c70fe4a700fbbc5dd8884cf01ba90cca8461f66b7b315590d89846c723cef", "spec_sha": "368605a994b24674424d7dbcbacbdd4c7d2a6dc9f69da260ae022bfd684dd302", "project_uri": "https://rubygems.org/gems/domainic-type", "gem_uri": "https://rubygems.org/gems/domainic-type-0.1.0.alpha.3.1.0.gem", "homepage_uri": "https://github.com/domainic/domainic/tree/domainic-type-v0.1.0-alpha.3.1.0/domainic-type", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/domainic/domainic/tree/domainic-type-v0.1.0-alpha.3.1.0/domainic-type", "bug_tracker_uri": "https://github.com/domainic/domainic/issues", "changelog_uri": "https://github.com/domainic/domainic/releases/tag/domainic-type-v0.1.0-alpha.3.1.0", "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-26 03:26:29 UTC |
YzSLmtfh8GXAbXvN-UaSA |
enhanced_errorsEnhancedErrors will automatically enhance your errors with messages containing variable values from the moment they were raised, using no extra dependencies, and only Ruby's built-in TracePoint. |
3.0.7 | Content{ "name": "enhanced_errors", "downloads": 3777, "version": "3.0.7", "version_created_at": "2024-12-26T03:17:39.457Z", "version_downloads": 0, "platform": "ruby", "authors": "Eric Beland", "info": "EnhancedErrors will automatically enhance your errors with messages containing variable values from the moment they were raised, using no extra dependencies, and only Ruby's built-in TracePoint. ", "licenses": [], "metadata": { "homepage_uri": "https://github.com/ericbeland/enhanced_errors", "source_code_uri": "https://github.com/ericbeland/enhanced_errors" }, "yanked": false, "sha": "7537522c7edc2c3d022cfad78265b3d24da160795678fcb314f7412ca375a2b8", "spec_sha": "3cd57fa4530f5ea0ba4d006a88c496bfeef8b086540da4c43e504ad4d70baa38", "project_uri": "https://rubygems.org/gems/enhanced_errors", "gem_uri": "https://rubygems.org/gems/enhanced_errors-3.0.7.gem", "homepage_uri": "https://github.com/ericbeland/enhanced_errors", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/ericbeland/enhanced_errors", "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "awesome_print", "requirements": "~> 1.0" }, { "name": "minitest", "requirements": ">= 0" }, { "name": "rspec", "requirements": "~> 3.0" }, { "name": "yard", "requirements": "~> 0.9" } ], "runtime": [] } } |
2024-12-26 03:17:44 UTC |
AuFotHrdE-up92gwsWBLc |
devise-uncommon_passwordDevise extension to prevent users from using a common password. |
0.4.7 | Content{ "name": "devise-uncommon_password", "downloads": 184791, "version": "0.4.7", "version_created_at": "2024-12-26T02:55:00.849Z", "version_downloads": 0, "platform": "ruby", "authors": "Chris Larsen", "info": "Devise extension to prevent users from using a common password.", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "84b1282d472f0c4de5449aa1446ed80862a275504eab7a0e332757461e87175d", "spec_sha": "702b85187cc250e30f715610a2d9cc981b448e5640b49a94419bd9840c7f1d9d", "project_uri": "https://rubygems.org/gems/devise-uncommon_password", "gem_uri": "https://rubygems.org/gems/devise-uncommon_password-0.4.7.gem", "homepage_uri": "https://github.com/HCLarsen/devise-uncommon_passwords", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/devise-uncommon_password/0.4.7", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "sprockets-rails", "requirements": ">= 0" }, { "name": "sqlite3", "requirements": ">= 1.7.0" } ], "runtime": [ { "name": "devise", "requirements": ">= 3.5, < 5.0" }, { "name": "rails", "requirements": ">= 4.2, <= 8.0" } ] } } |
2024-12-26 02:55:03 UTC |
KQv8_Rv9UQovpXAfQx3UV |
ruby-openai-swarmAllows for creating swarms of AI agents that can call functions and interact with each other |
0.4.0 | Content{ "name": "ruby-openai-swarm", "downloads": 1873, "version": "0.4.0", "version_created_at": "2024-12-26T02:26:52.447Z", "version_downloads": 0, "platform": "ruby", "authors": "Grayson", "info": "Allows for creating swarms of AI agents that can call functions and interact with each other", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/grayson/ruby-openai-swarm", "changelog_uri": "https://github.com/grayson/ruby-openai-swarm/blob/main/CHANGELOG.md", "source_code_uri": "https://github.com/grayson/ruby-openai-swarm" }, "yanked": false, "sha": "4887bf4dc81fc656b336f0013a20bd8183d80668eccd85f44b2fc9ddfef4e6ed", "spec_sha": "b9a9a3cacdcc7d2c968c2c6443c46cd40d950c357167f98ab7f55493ee3bf975", "project_uri": "https://rubygems.org/gems/ruby-openai-swarm", "gem_uri": "https://rubygems.org/gems/ruby-openai-swarm-0.4.0.gem", "homepage_uri": "https://github.com/grayson/ruby-openai-swarm", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/grayson/ruby-openai-swarm", "bug_tracker_uri": null, "changelog_uri": "https://github.com/grayson/ruby-openai-swarm/blob/main/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [ { "name": "pry", "requirements": ">= 0" }, { "name": "rake", "requirements": "~> 13.0" }, { "name": "rspec", "requirements": "~> 3.0" } ], "runtime": [ { "name": "ruby-openai", "requirements": "~> 7.3" } ] } } |
2024-12-26 02:26:57 UTC |
ILOZg5cSboim3ppZcRTxI |
tsubaiso-sdkA library of methods that directly uses Tsubaiso API web endpoints. |
1.2.18 | Content{ "name": "tsubaiso-sdk", "downloads": 127073, "version": "1.2.18", "version_created_at": "2024-12-26T02:07:53.458Z", "version_downloads": 0, "platform": "ruby", "authors": "Tsubaiso, Inc.", "info": "A library of methods that directly uses Tsubaiso API web endpoints.", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "2b34a42e6fbd8f0ddf19fcfe2576e22993d1af5a4a9d2516dd813f9b882744aa", "spec_sha": "0969a156e872843ecb29fb618b07afff3fd42d57b8a4bcfcb39b4a02ebcadca7", "project_uri": "https://rubygems.org/gems/tsubaiso-sdk", "gem_uri": "https://rubygems.org/gems/tsubaiso-sdk-1.2.18.gem", "homepage_uri": "https://github.com/tsubaiso/tsubaiso-sdk-ruby", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/tsubaiso-sdk/1.2.18", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "minitest", "requirements": "~> 5.4, >= 5.4.3" } ], "runtime": [ { "name": "json", "requirements": "~> 2.6, >= 2.6.3" } ] } } |
2024-12-26 02:07:59 UTC |
PmyhTxca83Yuz-IRa9KEN |
medieval_latinaThere are good text-to-speech engines for English and classical Latin, but none for medieval Latin. MedievalLatina converts Latin text to a kind of phonetic spelling that can be read by English text-to-speech engines. |
3.1.0 | Content{ "name": "medieval_latina", "downloads": 39120, "version": "3.1.0", "version_created_at": "2024-12-26T00:48:29.637Z", "version_downloads": 0, "platform": "ruby", "authors": "Jayson Virissimo", "info": "There are good text-to-speech engines for English and classical Latin, but none for medieval Latin.\nMedievalLatina converts Latin text to a kind of phonetic spelling that can be read by English text-to-speech engines.\n", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/jaysonvirissimo/medieval_latina", "changelog_uri": "https://github.com/jaysonvirissimo/medieval_latina", "source_code_uri": "https://github.com/jaysonvirissimo/medieval_latina", "allowed_push_host": "https://rubygems.org/" }, "yanked": false, "sha": "528471ff02b537c8c8504c3002bdde2d9e68b6991c3fe44dbf62a037956a5c6c", "spec_sha": "045c70f81f1147ea7ec8f314240e1db5e781102cbaef389f26b797a76461140c", "project_uri": "https://rubygems.org/gems/medieval_latina", "gem_uri": "https://rubygems.org/gems/medieval_latina-3.1.0.gem", "homepage_uri": "https://github.com/jaysonvirissimo/medieval_latina", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/jaysonvirissimo/medieval_latina", "bug_tracker_uri": null, "changelog_uri": "https://github.com/jaysonvirissimo/medieval_latina", "funding_uri": null, "dependencies": { "development": [ { "name": "jsonlint", "requirements": ">= 0" }, { "name": "nokogiri", "requirements": ">= 0" }, { "name": "rake", "requirements": "~> 12.0" }, { "name": "rspec", "requirements": "~> 3.0" }, { "name": "standardrb", "requirements": ">= 0" } ], "runtime": [ { "name": "i18n", "requirements": ">= 0" } ] } } |
2024-12-26 00:48:35 UTC |
Mle4nR1Df4qZOAB6eXTKO |
hot-glueSimple, plug & play Rails scaffold building companion for Turbo-Rails and Hotwire |
0.6.10 | Content{ "name": "hot-glue", "downloads": 66420, "version": "0.6.10", "version_created_at": "2024-12-26T00:15:15.711Z", "version_downloads": 0, "platform": "ruby", "authors": "Jason Fleetwood-Boldt", "info": "Simple, plug & play Rails scaffold building companion for Turbo-Rails and Hotwire", "licenses": [ "Nonstandard" ], "metadata": { "funding": "https://school.jfbcodes.com/8188", "homepage": "https://heliosdev.shop/hot-glue", "source_code_uri": "https://github.com/hot-glue-for-rails/hot-glue" }, "yanked": false, "sha": "533685eeb1402a830af5568fd49a3ed49ec8bf908cfb0f1cf18ff16bc4303e56", "spec_sha": "6ff3b483dedf0a70df7d14d348c0efaead82b330212b67f46424a40be2c3db45", "project_uri": "https://rubygems.org/gems/hot-glue", "gem_uri": "https://rubygems.org/gems/hot-glue-0.6.10.gem", "homepage_uri": "https://heliosdev.shop/p/hot-glue?utm_source=rubygems.org&utm_campaign=rubygems_link", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/hot-glue-for-rails/hot-glue", "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "ffaker", "requirements": "~> 2.16" }, { "name": "kaminari", "requirements": "~> 1.2" }, { "name": "rails", "requirements": "> 5.1" } ] } } |
2024-12-26 00:15:18 UTC |
F3wHscZt2-cQAULFm7IB8 |
enhanced_errorsEnhancedErrors will automatically enhance your errors with messages containing variable values from the moment they were raised, using no extra dependencies, and only Ruby's built-in TracePoint. |
3.0.6 | Content{ "name": "enhanced_errors", "downloads": 3713, "version": "3.0.6", "version_created_at": "2024-12-26T00:08:44.861Z", "version_downloads": 0, "platform": "ruby", "authors": "Eric Beland", "info": "EnhancedErrors will automatically enhance your errors with messages containing variable values from the moment they were raised, using no extra dependencies, and only Ruby's built-in TracePoint. ", "licenses": [], "metadata": { "homepage_uri": "https://github.com/ericbeland/enhanced_errors", "source_code_uri": "https://github.com/ericbeland/enhanced_errors" }, "yanked": false, "sha": "0bc701abbfeb28369c3327f0ca01666094d41a6919c9a1a8619e8ebbb66d0976", "spec_sha": "2e95ce5fa0d9c1dbe8f1189f33ce0f2570da6ed6a2f94c2d708a185ef55f1ade", "project_uri": "https://rubygems.org/gems/enhanced_errors", "gem_uri": "https://rubygems.org/gems/enhanced_errors-3.0.6.gem", "homepage_uri": "https://github.com/ericbeland/enhanced_errors", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/ericbeland/enhanced_errors", "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "awesome_print", "requirements": "~> 1.0" }, { "name": "minitest", "requirements": ">= 0" }, { "name": "rspec", "requirements": "~> 3.0" }, { "name": "yard", "requirements": "~> 0.9" } ], "runtime": [] } } |
2024-12-26 00:08:50 UTC |
kwmEIvt0nYeaeLQ2NynBS |
active_recallA spaced-repetition system to be used with ActiveRecord models |
2.1.0 | Content{ "name": "active_recall", "downloads": 30982, "version": "2.1.0", "version_created_at": "2024-12-25T23:56:59.565Z", "version_downloads": 0, "platform": "ruby", "authors": "Robert Gravina, Jayson Virissimo", "info": "A spaced-repetition system to be used with ActiveRecord models", "licenses": [ "MIT" ], "metadata": { "allowed_push_host": "https://rubygems.org/" }, "yanked": false, "sha": "3cb57fc40bf8e78f50906db0b36c32b2b44091458bb3998460c502f0c023d0a6", "spec_sha": "099f166b9d8b20b505b20aaf5e14c95313aa409b74799e11e484dbbda13ae221", "project_uri": "https://rubygems.org/gems/active_recall", "gem_uri": "https://rubygems.org/gems/active_recall-2.1.0.gem", "homepage_uri": "https://github.com/jaysonvirissimo/active_recall", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/active_recall/2.1.0", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "appraisal", "requirements": ">= 0" }, { "name": "rails", "requirements": ">= 7.0, < 9.0" }, { "name": "rake", "requirements": ">= 12.0" }, { "name": "rdoc", "requirements": ">= 0" }, { "name": "rspec", "requirements": ">= 3.0" }, { "name": "sqlite3", "requirements": "~> 2.1" }, { "name": "standard", "requirements": ">= 0" } ], "runtime": [ { "name": "activerecord", "requirements": ">= 7.0, < 9.0" }, { "name": "activesupport", "requirements": ">= 7.0, < 9.0" } ] } } |
2024-12-25 23:57:03 UTC |
yppxMZe1V2smnFnpZnwxv |
qr_code_scannerA Ruby Gem for scanning QR-Codes from documents. |
0.1.0 | Content{ "name": "qr_code_scanner", "downloads": 0, "version": "0.1.0", "version_created_at": "2024-12-25T23:55:19.992Z", "version_downloads": 0, "platform": "ruby", "authors": "Marco Roth", "info": "A Ruby Gem for scanning QR-Codes from documents.", "licenses": [], "metadata": { "homepage_uri": "https://github.com/marcoroth/qr_code_scanner", "changelog_uri": "https://github.com/marcoroth/qr_code_scanner/blob/main/CHANGELOG.md", "source_code_uri": "https://github.com/marcoroth/qr_code_scanner", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "0bd19a13a557cae02829be6c6bc8e1a6cfdf8a33bd5e9360f01ea1b450cb0eda", "spec_sha": "137a50b5aa4ecc52142f6750bc4049e27e383cf02cbd18d91d07eed484d3a965", "project_uri": "https://rubygems.org/gems/qr_code_scanner", "gem_uri": "https://rubygems.org/gems/qr_code_scanner-0.1.0.gem", "homepage_uri": "https://github.com/marcoroth/qr_code_scanner", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/marcoroth/qr_code_scanner", "bug_tracker_uri": null, "changelog_uri": "https://github.com/marcoroth/qr_code_scanner/blob/main/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "nodo", "requirements": ">= 0" } ] } } |
2024-12-25 23:55:24 UTC |
mrDp1M-TesrgyHNJMH-Rv |
dc-devtoolsThese gems are used by projects that are primarily maintained by David Crosby |
0.5.202412251637 | Content{ "name": "dc-devtools", "downloads": 6260, "version": "0.5.202412251637", "version_created_at": "2024-12-25T23:38:09.116Z", "version_downloads": 0, "platform": "ruby", "authors": "David Crosby", "info": "These gems are used by projects that are primarily maintained by David Crosby", "licenses": [ "MIT" ], "metadata": { "rubygems_mfa_required": "true" }, "yanked": false, "sha": "c7194d4214be09af9dfd8d3551d505411b61db506a75885ff5e0a2558bbac17e", "spec_sha": "5943b4c5a219e58c4127e229b17002eaad3310d103a6487af4a2f673ac58ffc4", "project_uri": "https://rubygems.org/gems/dc-devtools", "gem_uri": "https://rubygems.org/gems/dc-devtools-0.5.202412251637.gem", "homepage_uri": "https://dafyddcrosby.com", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/dc-devtools/0.5.202412251637", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "dc-guard", "requirements": "~> 0.0.2" }, { "name": "dc-minitest", "requirements": "~> 0.3.4" }, { "name": "dc-rake", "requirements": "~> 0.1.0" }, { "name": "dc-rubocop", "requirements": "~> 0.0.5" } ] } } |
2024-12-25 23:38:11 UTC |
aT49ymWsTugvldpZKhBIk |
dc-guardGuard configuration for projects |
0.0.2 | Content{ "name": "dc-guard", "downloads": 1043, "version": "0.0.2", "version_created_at": "2024-12-25T23:35:40.858Z", "version_downloads": 0, "platform": "ruby", "authors": "David Crosby", "info": "Guard configuration for projects", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://daveops.net", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "99f5f8952213cf6fc8983d739594310fe2e000b62206d6f74564e5a088f9c117", "spec_sha": "559d093f01c8cb5cf884f84dbca79ba6461e73a09f7a81717ada47761c0fffd5", "project_uri": "https://rubygems.org/gems/dc-guard", "gem_uri": "https://rubygems.org/gems/dc-guard-0.0.2.gem", "homepage_uri": "https://daveops.net", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "guard", "requirements": "~> 2.18" }, { "name": "guard-rake", "requirements": "~> 1.0" } ] } } |
2024-12-25 23:35:43 UTC |
Y6Tl9KdmcsX8py73YJTee |
slack_log_deviceLogDevice implementation that post logs on a Slack channel |
6.1.0 | Content{ "name": "slack_log_device", "downloads": 48381, "version": "6.1.0", "version_created_at": "2024-12-25T22:48:10.990Z", "version_downloads": 0, "platform": "ruby", "authors": "Alexis Toulotte", "info": "LogDevice implementation that post logs on a Slack channel", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "b2d916e8a9af07a3297b4b87d490ece06d3f1fa3e5e93759458e4d1d5be68431", "spec_sha": "5e5374d1822a9a43cbb89c66a5055a5e6af051d699f46ce26c5e6d5ab111a3ad", "project_uri": "https://rubygems.org/gems/slack_log_device", "gem_uri": "https://rubygems.org/gems/slack_log_device-6.1.0.gem", "homepage_uri": "https://github.com/alexistoulotte/slack_log_device", "wiki_uri": "", "documentation_uri": "https://github.com/alexistoulotte/slack_log_device", "mailing_list_uri": "", "source_code_uri": "https://github.com/alexistoulotte/slack_log_device", "bug_tracker_uri": "https://github.com/alexistoulotte/slack_log_device/issues", "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "byebug", "requirements": ">= 9.0.0, < 12.0.0" }, { "name": "rake", "requirements": ">= 12.0.0, < 14.0.0" }, { "name": "rspec", "requirements": ">= 3.5.0, < 3.14.0" }, { "name": "rubocop", "requirements": ">= 1.25.0, < 2.0.0" }, { "name": "rubocop-rake", "requirements": ">= 0.6.0, < 1.0.0" }, { "name": "rubocop-rspec", "requirements": ">= 2.8.0, < 4.0.0" } ], "runtime": [ { "name": "activesupport", "requirements": ">= 8.0.0, < 9.0.0" }, { "name": "httparty", "requirements": ">= 0.14.0, < 0.23.0" } ] } } |
2024-12-25 22:48:13 UTC |
TLPK4oXesgO6gaT8ZWbFI |
lazy_graphJSON Driven, Stateless Rules Engine for JIT and efficient evaluation of complex rules and computation graphs. |
0.1.3 | Content{ "name": "lazy_graph", "downloads": 193, "version": "0.1.3", "version_created_at": "2024-12-25T22:47:02.264Z", "version_downloads": 0, "platform": "ruby", "authors": "Wouter Coppieters", "info": "JSON Driven, Stateless Rules Engine for JIT and efficient evaluation of complex rules and computation graphs.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/wouterken/lazy_graph", "source_code_uri": "https://github.com/wouterken/lazy_graph" }, "yanked": false, "sha": "86b6837a40bcc4052bfe1406bb51492d7f82169863d639e248d58bc1eaecb36a", "spec_sha": "7783f50e73e9efc82ae81d61f043987ac9108a87cf919d99f1f3120daf080dd5", "project_uri": "https://rubygems.org/gems/lazy_graph", "gem_uri": "https://rubygems.org/gems/lazy_graph-0.1.3.gem", "homepage_uri": "https://github.com/wouterken/lazy_graph", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/wouterken/lazy_graph", "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "debug", "requirements": "~> 1.0" }, { "name": "fiddle", "requirements": ">= 0" }, { "name": "ostruct", "requirements": ">= 0" }, { "name": "rdoc", "requirements": ">= 0" }, { "name": "rubocop", "requirements": ">= 0" } ], "runtime": [ { "name": "json-schema", "requirements": ">= 0" }, { "name": "logger", "requirements": ">= 0" }, { "name": "prism", "requirements": ">= 0" }, { "name": "rack", "requirements": ">= 0" } ] } } |
2024-12-25 22:47:04 UTC |
D1KUmGwxqgIzwT-76Ky-A |
lazy_graphJSON Driven, Stateless Rules Engine for JIT and efficient evaluation of complex rules and computation graphs. |
0.1.2 | Content{ "name": "lazy_graph", "downloads": 193, "version": "0.1.2", "version_created_at": "2024-12-25T22:45:58.055Z", "version_downloads": 0, "platform": "ruby", "authors": "Wouter Coppieters", "info": "JSON Driven, Stateless Rules Engine for JIT and efficient evaluation of complex rules and computation graphs.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/wouterken/lazy_graph", "source_code_uri": "https://github.com/wouterken/lazy_graph" }, "yanked": false, "sha": "48e83da82f5955c2589092025100e00c5dd56db2d1449ef6dab28efb308038b2", "spec_sha": "9279054fa69c4eca06522bf54567df0cb680238b2050d96aed2dd00960b7606d", "project_uri": "https://rubygems.org/gems/lazy_graph", "gem_uri": "https://rubygems.org/gems/lazy_graph-0.1.2.gem", "homepage_uri": "https://github.com/wouterken/lazy_graph", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/wouterken/lazy_graph", "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [ { "name": "debug", "requirements": "~> 1.0" }, { "name": "fiddle", "requirements": ">= 0" }, { "name": "ostruct", "requirements": ">= 0" }, { "name": "rdoc", "requirements": ">= 0" }, { "name": "rubocop", "requirements": ">= 0" } ], "runtime": [ { "name": "json-schema", "requirements": ">= 0" }, { "name": "logger", "requirements": ">= 0" }, { "name": "prism", "requirements": ">= 0" }, { "name": "rack", "requirements": ">= 0" } ] } } |
2024-12-25 22:46:01 UTC |
EKXSq8H50H5gElKPnZ6zT |
oxA fast XML parser and object serializer that uses only standard C lib. Optimized XML (Ox), as the name implies was written to provide speed optimized XML handling. It was designed to be an alternative to Nokogiri and other Ruby XML parsers for generic XML parsing and as an alternative to Marshal for Object serialization. |
2.14.19 | Content{ "name": "ox", "downloads": 26657355, "version": "2.14.19", "version_created_at": "2024-12-25T21:57:40.520Z", "version_downloads": 0, "platform": "ruby", "authors": "Peter Ohler", "info": "A fast XML parser and object serializer that uses only standard C lib.\n\nOptimized XML (Ox), as the name implies was written to provide speed optimized\nXML handling. It was designed to be an alternative to Nokogiri and other Ruby\nXML parsers for generic XML parsing and as an alternative to Marshal for Object\nserialization. ", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "http://www.ohler.com/ox/", "changelog_uri": "https://github.com/ohler55/ox/blob/master/CHANGELOG.md", "bug_tracker_uri": "https://github.com/ohler55/ox/issues", "source_code_uri": "https://github.com/ohler55/ox", "documentation_uri": "http://www.ohler.com/ox/doc/index.html", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "8a076db2176fd976ef96ed3bb387b49b94455949751cfd13fd4a36301afa93eb", "spec_sha": "cbcfbe442e25c035546d23143971b715ff883568ccb8c4ef7d1299455204da4b", "project_uri": "https://rubygems.org/gems/ox", "gem_uri": "https://rubygems.org/gems/ox-2.14.19.gem", "homepage_uri": "http://www.ohler.com/ox/", "wiki_uri": null, "documentation_uri": "http://www.ohler.com/ox/doc/index.html", "mailing_list_uri": null, "source_code_uri": "https://github.com/ohler55/ox", "bug_tracker_uri": "https://github.com/ohler55/ox/issues", "changelog_uri": "https://github.com/ohler55/ox/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "bigdecimal", "requirements": ">= 3.0" } ] } } |
2024-12-25 21:57:43 UTC |
WngtAWbmRpu477aKrOYUt |
IPQueryThe Ruby library for IPQuery |
0.0.0 | Content{ "name": "IPQuery", "downloads": 0, "version": "0.0.0", "version_created_at": "2024-12-25T21:51:22.785Z", "version_downloads": 0, "platform": "ruby", "authors": "GoldenVadim", "info": "The Ruby library for IPQuery", "licenses": [ "MIT" ], "metadata": {}, "yanked": false, "sha": "5069716d2d16d59bb389bacb0490507489327bb3a8d70cfc288e4bc27fc1b06c", "spec_sha": "647eb136e2095897d83ee53604201d4efe2bd7416410679fe7111ef74b85aad7", "project_uri": "https://rubygems.org/gems/IPQuery", "gem_uri": "https://rubygems.org/gems/IPQuery-0.0.0.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/IPQuery/0.0.0", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-25 21:51:25 UTC |
squRgMaGpKHIS9sqshRD8 |
jwtA pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard. |
2.10.0 | Content{ "name": "jwt", "downloads": 564694825, "version": "2.10.0", "version_created_at": "2024-12-25T21:44:33.072Z", "version_downloads": 0, "platform": "ruby", "authors": "Tim Rudat", "info": "A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.", "licenses": [ "MIT" ], "metadata": { "changelog_uri": "https://github.com/jwt/ruby-jwt/blob/v2.10.0/CHANGELOG.md", "bug_tracker_uri": "https://github.com/jwt/ruby-jwt/issues", "rubygems_mfa_required": "true" }, "yanked": false, "sha": "e096b7b5b707b3ed6fb4a1a61e85262d73b53eddf1a86851a9b1434dc1ff4d0f", "spec_sha": "7ba29869ef9710ea48ccb397d049315229d6d6b9559232089b66da7f95c3feef", "project_uri": "https://rubygems.org/gems/jwt", "gem_uri": "https://rubygems.org/gems/jwt-2.10.0.gem", "homepage_uri": "https://github.com/jwt/ruby-jwt", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": "https://github.com/jwt/ruby-jwt/issues", "changelog_uri": "https://github.com/jwt/ruby-jwt/blob/v2.10.0/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [ { "name": "appraisal", "requirements": ">= 0" }, { "name": "bundler", "requirements": ">= 0" }, { "name": "rake", "requirements": ">= 0" }, { "name": "rspec", "requirements": ">= 0" }, { "name": "rubocop", "requirements": ">= 0" }, { "name": "simplecov", "requirements": ">= 0" } ], "runtime": [ { "name": "base64", "requirements": ">= 0" } ] } } |
2024-12-25 21:44:38 UTC |
aE-mnpO5ND4GuAq6mgdqU |
chilkatChilkat Library for Ruby - FTP, SSH, SFTP, PDF, SMTP, POP3, IMAP, SSL, TLS, HTTP, RSA, Encryption, Zip, Compression, XML, ... |
10.1.1 | Content{ "name": "chilkat", "downloads": 3348085, "version": "10.1.1", "version_created_at": "2024-12-25T21:31:29.210Z", "version_downloads": 0, "platform": "x86-mingw32", "authors": "Chilkat Software, Inc.", "info": "Chilkat Library for Ruby - FTP, SSH, SFTP, PDF, SMTP, POP3, IMAP, SSL, TLS, HTTP, RSA, Encryption, Zip, Compression, XML, ...", "licenses": [ "Nonstandard" ], "metadata": {}, "yanked": false, "sha": "8dc5dfdba1ff8e59874044c14b65e6c77bc5fac6ac209050447d6129f85b22cc", "spec_sha": "ba130887134fee5a9b15c2879b05f00e2763277fe9c618f842a494fa608aa97e", "project_uri": "https://rubygems.org/gems/chilkat", "gem_uri": "https://rubygems.org/gems/chilkat-10.1.1-x86-mingw32.gem", "homepage_uri": "http://www.chilkatsoft.com/ruby.asp", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/chilkat/10.1.1", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-25 21:31:31 UTC |
SlMi1_iVd52K2LVoVyuv6 |
chilkatChilkat Library for Ruby - FTP, SSH, SFTP, PDF, SMTP, POP3, IMAP, SSL, TLS, HTTP, RSA, Encryption, Zip, Compression, XML, ... |
10.1.1 | Content{ "name": "chilkat", "downloads": 3348085, "version": "10.1.1", "version_created_at": "2024-12-25T21:30:55.688Z", "version_downloads": 0, "platform": "x64-mingw-ucrt", "authors": "Chilkat Software, Inc.", "info": "Chilkat Library for Ruby - FTP, SSH, SFTP, PDF, SMTP, POP3, IMAP, SSL, TLS, HTTP, RSA, Encryption, Zip, Compression, XML, ...", "licenses": [ "Nonstandard" ], "metadata": {}, "yanked": false, "sha": "b235ce881e8ae83a899ac4fe77871f64e8a2999bb6a3bd549bacc2cbebac9477", "spec_sha": "0ec7398b6215fc9c4f872d2cf26dbb68cb4a025eb0ab280c851ea05706a89380", "project_uri": "https://rubygems.org/gems/chilkat", "gem_uri": "https://rubygems.org/gems/chilkat-10.1.1-x64-mingw-ucrt.gem", "homepage_uri": "http://www.chilkatsoft.com/ruby.asp", "wiki_uri": null, "documentation_uri": "https://www.rubydoc.info/gems/chilkat/10.1.1", "mailing_list_uri": null, "source_code_uri": null, "bug_tracker_uri": null, "changelog_uri": null, "funding_uri": null, "dependencies": { "development": [], "runtime": [] } } |
2024-12-25 21:31:00 UTC |
egeifYrBARlJ_j-P1exhs |
regentRegent is a library for building AI Agents that utilize tools to accomplish tasks. Current implementation is based on the ReAct Agent architecture. |
0.2.1 | Content{ "name": "regent", "downloads": 153, "version": "0.2.1", "version_created_at": "2024-12-25T21:24:36.483Z", "version_downloads": 0, "platform": "ruby", "authors": "Alex Chaplinsky", "info": "Regent is a library for building AI Agents that utilize tools to accomplish tasks. Current implementation is based on the ReAct Agent architecture.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/alchaplinsky/regent", "changelog_uri": "https://github.com/alchaplinsky/regent/blob/main/CHANGELOG.md", "source_code_uri": "https://github.com/alchaplinsky/regent/tree/main" }, "yanked": false, "sha": "c7ebdf0fc76b6ba691d9cdefc8bfae828c7b6f31b259787a5c1fe571418a3a79", "spec_sha": "1ea10d644cce77a85bf2661a1bd1999df1dca925ec9d658a82bb2734aa2c6885", "project_uri": "https://rubygems.org/gems/regent", "gem_uri": "https://rubygems.org/gems/regent-0.2.1.gem", "homepage_uri": "https://github.com/alchaplinsky/regent", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/alchaplinsky/regent/tree/main", "bug_tracker_uri": null, "changelog_uri": "https://github.com/alchaplinsky/regent/blob/main/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "langchainrb", "requirements": "~> 0.19.2" }, { "name": "pastel", "requirements": "~> 0.8.0" }, { "name": "ruby-openai", "requirements": "~> 7.3.1" }, { "name": "tty-spinner", "requirements": "~> 0.9.3" }, { "name": "zeitwerk", "requirements": "~> 2.7" } ] } } |
2024-12-25 21:24:40 UTC |
DU7vgmRbKLKG1DbCoEep2 |
regentWrite a longer description or delete this line. |
0.2.0 | Content{ "name": "regent", "downloads": 145, "version": "0.2.0", "version_created_at": "2024-12-25T21:10:35.466Z", "version_downloads": 0, "platform": "ruby", "authors": "Alex Chaplinsky", "info": "Write a longer description or delete this line.", "licenses": [ "MIT" ], "metadata": { "homepage_uri": "https://github.com/alchaplinsky/regent", "changelog_uri": "https://github.com/alchaplinsky/regent/blob/main/CHANGELOG.md", "source_code_uri": "https://github.com/alchaplinsky/regent/tree/main" }, "yanked": false, "sha": "5c4f77b89128d365386e3ffaec771137c78b9cf5f80444edcf08f80a1f7a9c06", "spec_sha": "fa8203065ca971a31394a75f99ba2f2272cd456a289dde0087971cfb9466d0f7", "project_uri": "https://rubygems.org/gems/regent", "gem_uri": "https://rubygems.org/gems/regent-0.2.0.gem", "homepage_uri": "https://github.com/alchaplinsky/regent", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/alchaplinsky/regent/tree/main", "bug_tracker_uri": null, "changelog_uri": "https://github.com/alchaplinsky/regent/blob/main/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "langchainrb", "requirements": "~> 0.19.2" }, { "name": "pastel", "requirements": "~> 0.8.0" }, { "name": "ruby-openai", "requirements": "~> 7.3.1" }, { "name": "tty-spinner", "requirements": "~> 0.9.3" }, { "name": "zeitwerk", "requirements": "~> 2.7" } ] } } |
2024-12-25 21:10:38 UTC |
l3jXgqqUj4fSiRdET5fwy |
tencentcloud-sdk-cdcTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDC. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cdc", "downloads": 315573, "version": "3.0.969", "version_created_at": "2024-12-25T20:59:01.456Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDC.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdc" }, "yanked": false, "sha": "ce5dfe6c665f98fc625949b6fe82a1aa07e4d3e5898f079b990202a06e772e77", "spec_sha": "f7a7517529f07d30703a2648fb6b48e247031fa6cd6a93311bd88ae087f48592", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdc", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdc-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdc", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:59:05 UTC |
hEnSJhGFXfr4e3phMZ2Ph |
tencentcloud-sdk-vmsTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service VMS. |
3.0.969 | Content{ "name": "tencentcloud-sdk-vms", "downloads": 419690, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:59.194Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service VMS.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-vms" }, "yanked": false, "sha": "5f7ccc2d03baba73f5961f1d7dec91b0ac003c6cb486684ba3118b0153dc0b6d", "spec_sha": "6c2191079480a14a5a11396d60ea3f5986d8a7c934f08458d3d742704cf99226", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-vms", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-vms-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-vms", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:59:02 UTC |
rpSkvEecr7zMmsdT2ngCY |
tencentcloud-sdk-sqlserverTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service SQLSERVER. |
3.0.969 | Content{ "name": "tencentcloud-sdk-sqlserver", "downloads": 424712, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:56.807Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service SQLSERVER.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-sqlserver" }, "yanked": false, "sha": "b3a15906a780fdd6e063463b0660f1e8b51b3fe612def705bf622b3ae6adfe38", "spec_sha": "c23e4d789f39cf4bc738c126799c762a5c60d4e9cb72a871acbb61568c7ca3c1", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-sqlserver", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-sqlserver-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-sqlserver", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:59:00 UTC |
nm5MmRi_H8xLpqjghR0Qd |
tencentcloud-sdk-iirTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service IIR. |
3.0.969 | Content{ "name": "tencentcloud-sdk-iir", "downloads": 420705, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:52.575Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service IIR.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-iir" }, "yanked": false, "sha": "764fe1899e80faf005343029fc92686aad03930b2627b2926493d2f925f22c70", "spec_sha": "a83afbe9a0df0e9e75ef0a907cc626f26a1271195f1293f0fd2d8e376a9e0da3", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-iir", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-iir-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-iir", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:58 UTC |
Ry8vJtEr2T9SvskWcR8tH |
tencentcloud-sdk-ticsTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TICS. |
3.0.969 | Content{ "name": "tencentcloud-sdk-tics", "downloads": 426794, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:50.299Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TICS.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tics" }, "yanked": false, "sha": "602305c5d68e1524faf770b088a54e27ddfa01d6dcfe3234c8cf3fd99b7bdc4c", "spec_sha": "3d98c50c22f8774920a4d221988b5093bcac695f2442e0464ecc1282fbf4b9f2", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-tics", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-tics-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tics", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:55 UTC |
b2lmrMxoln9WA7ffXQJmD |
tencentcloud-sdk-cwpTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CWP. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cwp", "downloads": 422682, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:48.507Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CWP.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cwp" }, "yanked": false, "sha": "3c8d319d07b33300070793fdee1aeda45f01f605014fb9015ac1ddcc791b4e3a", "spec_sha": "224d1cb67c2914c9e354ffbbb828fd1d2df5bf37ff781a6896e8699f591559c2", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cwp", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cwp-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cwp", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:52 UTC |
ANHQrZo1OSspI6VX2tAFs |
tencentcloud-sdk-cynosdbTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CYNOSDB. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cynosdb", "downloads": 477885, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:45.589Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CYNOSDB.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cynosdb" }, "yanked": false, "sha": "a03025be34eb2eb64bbeb7d5d9b69e580e1fba83a80db90c16c68df57e692702", "spec_sha": "e2ba41702416a54d5d7f7a724ad0740bfb05e4c93352a37ac80f17d5f8477086", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cynosdb", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cynosdb-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cynosdb", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:51 UTC |
bFBqmy1hhKp4jp3xjqY_0 |
tencentcloud-sdk-mrsTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service MRS. |
3.0.969 | Content{ "name": "tencentcloud-sdk-mrs", "downloads": 419716, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:43.333Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service MRS.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-mrs" }, "yanked": false, "sha": "d04aa9d0f999e6a1645f69e4f78504a0f9006f62c42c1200d9e508f126797d67", "spec_sha": "c0b1422e07046c8618c96cd8611cae1abc501de02239fcc23f500f9e633ec16e", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-mrs", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-mrs-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-mrs", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:50 UTC |
HYX9jqCZkIad6Z3y3u6CS |
tencentcloud-sdk-cdwpgTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDWPG. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cdwpg", "downloads": 73532, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:41.208Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDWPG.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdwpg" }, "yanked": false, "sha": "12267cdcd9cd570673ecd587096da4fae4878a6a3ca39443f2342ac088139437", "spec_sha": "830670dd7a2c63f15c38f05b4fec9324f781ca13db5240efb8fcfa950789581c", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdwpg", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdwpg-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdwpg", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:44 UTC |
u1bqux0ew5sn9lxjSJ1Rc |
tencentcloud-sdk-smhTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service SMH. |
3.0.969 | Content{ "name": "tencentcloud-sdk-smh", "downloads": 349027, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:39.507Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service SMH.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-smh" }, "yanked": false, "sha": "5c1ff7d63b9f67618701f640a3e26a38e2163175a0ed014248363dc9aa5408c1", "spec_sha": "e90b504e24e29d1aa5ce7407075a4144c3acfc1d77595fb07c968ba44da453a7", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-smh", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-smh-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-smh", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:41 UTC |
kuZq9gku0bJorTUYasWh0 |
tencentcloud-sdk-lpTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service LP. |
3.0.969 | Content{ "name": "tencentcloud-sdk-lp", "downloads": 418653, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:37.319Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service LP.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-lp" }, "yanked": false, "sha": "d67b721d7b2c536ec044b1217ac6cca90bb0232c15dc2dc570e88da16f765016", "spec_sha": "869af80a183b0658d8e345b33008706b1323f71301406ba6108287c38f2fd734", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-lp", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-lp-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-lp", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:40 UTC |
wftitrzAiV9TmUFFFyHH7 |
tencentcloud-sdk-vclmTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service VCLM. |
3.0.969 | Content{ "name": "tencentcloud-sdk-vclm", "downloads": 18359, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:35.755Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service VCLM.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-vclm" }, "yanked": false, "sha": "1cbb82ddb94b2c6ee1ed3e5c61c1d21e2afcfa9feb20c410bd1638e624d343db", "spec_sha": "39401e8b3ca051c9ce784734549406d615f3dd68f9aa350c585e378176626c9f", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-vclm", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-vclm-3.0.969.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-vclm", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:38 UTC |
8K8AKG1y23NhuTUSAFxJP |
tencentcloud-sdk-tsfTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TSF. |
3.0.969 | Content{ "name": "tencentcloud-sdk-tsf", "downloads": 421828, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:33.933Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TSF.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tsf" }, "yanked": false, "sha": "ff6228d6996e473480a242d3ad659a65a2fe3f9c43b38931493eceb8103f3b3d", "spec_sha": "76500dd46e37b6884817e943eacaf9af2a41b0c930b360b3fe41f7dda267f89d", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-tsf", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-tsf-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tsf", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:36 UTC |
yXL35bKz51uDpfpfQ16DY |
tencentcloud-sdk-configTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CONFIG. |
3.0.969 | Content{ "name": "tencentcloud-sdk-config", "downloads": 57822, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:31.916Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CONFIG.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-config" }, "yanked": false, "sha": "e774d13ec1e23f6f461400f7fc9580b153b2e25b948017df72e1544facb4bdcb", "spec_sha": "d0ab1719b595d7868e5c512c2c126611b200aa7bc72d7958d3716015e9752161", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-config", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-config-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-config", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:34 UTC |
kFWuwnfCt__sWLfZbQoqO |
tencentcloud-sdk-partnersTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service PARTNERS. |
3.0.969 | Content{ "name": "tencentcloud-sdk-partners", "downloads": 422034, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:30.002Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service PARTNERS.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-partners" }, "yanked": false, "sha": "85a794dfdcfa90de9e410bc65aa3f23eb40f71f6f652bbb432d86ff7b5de9477", "spec_sha": "8bd1318e4ff83cc214b14c85285c5535bb037e696c950c91e77875deae849415", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-partners", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-partners-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-partners", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:32 UTC |
4atqLb61NsZNevRod_CfR |
tencentcloud-sdk-tcrTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TCR. |
3.0.969 | Content{ "name": "tencentcloud-sdk-tcr", "downloads": 420039, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:28.193Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TCR.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tcr" }, "yanked": false, "sha": "e0f30e07a62ab674c79f70dabb607e80f3d6e4ec8f518d278dfe31345d5499c3", "spec_sha": "b9a2a116cc0737e1b53281d99d6cb6424cc275c3c5b9bbf96cdf141b541e407b", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-tcr", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-tcr-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tcr", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:31 UTC |
dgVQxqjIVFNGy2wKn8Pap |
tencentcloud-sdk-bscaTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service BSCA. |
3.0.969 | Content{ "name": "tencentcloud-sdk-bsca", "downloads": 314193, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:25.961Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service BSCA.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-bsca" }, "yanked": false, "sha": "d0ab36e2a862ce65ad925db1e232dc43e71a1af63371451b63ccc10a67f86b95", "spec_sha": "e6c12827f32c433950b7c05414c0df66bc2f09ee7f3b9bc45bd69c44eb069d8d", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-bsca", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-bsca-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-bsca", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:28 UTC |
9gnUocwHCZSIXp8gjJBif |
tencentcloud-sdk-tkeTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TKE. |
3.0.969 | Content{ "name": "tencentcloud-sdk-tke", "downloads": 420817, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:23.944Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TKE.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tke" }, "yanked": false, "sha": "06061443e0ab18278d8a6da5f9ed137a4c149afafcb1cd48eeb9d53a7a2292bc", "spec_sha": "1cef0a509a3cd9a826eb30ed0e35fd4fa8e8f6dbd15519ed8c08c9d260c6a253", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-tke", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-tke-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tke", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:26 UTC |
otPzm73pKSuQoK-zkm4lw |
tencentcloud-sdk-hcmTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service HCM. |
3.0.969 | Content{ "name": "tencentcloud-sdk-hcm", "downloads": 415036, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:21.865Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service HCM.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-hcm" }, "yanked": false, "sha": "542a352ae8c277813e5eb126a6cccc2ab069565763ebc3c59b3a7ec9c4d9997e", "spec_sha": "a2662654d60204f40d1307ef86e9887e9172a362800006cc3f365ed2fffbc518", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-hcm", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-hcm-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-hcm", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:24 UTC |
-EdNQotCuJaJBXLbdyQvZ |
tencentcloud-sdk-haboTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service HABO. |
3.0.969 | Content{ "name": "tencentcloud-sdk-habo", "downloads": 415364, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:19.653Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service HABO.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-habo" }, "yanked": false, "sha": "fb4ffa1dee6db9694b3956ac8af6d3208e8445e4c2d8a2ca0ec40f23fd498c5f", "spec_sha": "972cff15ca739be1d80c5db4f5301bdc092fdfce32cf1ccdd02e561a2920b68c", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-habo", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-habo-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-habo", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:22 UTC |
jR739jVs_gTya_rV-AGWL |
tencentcloud-sdk-csxgTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CSXG. |
3.0.969 | Content{ "name": "tencentcloud-sdk-csxg", "downloads": 110440, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:18.068Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CSXG.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-csxg" }, "yanked": false, "sha": "709ca155d3ceaf9302dd32959a23e335f17f7aa6cc49f8f24505a060cf5f370e", "spec_sha": "6d524c499b9d241d77ce6b7f381f6fe88721c2f70f19d269fafa461f9a33b368", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-csxg", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-csxg-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-csxg", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:20 UTC |
YOIw1UCvS8ZA2zu7hnpif |
tencentcloud-sdk-bmeipTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service BMEIP. |
3.0.969 | Content{ "name": "tencentcloud-sdk-bmeip", "downloads": 420357, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:16.196Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service BMEIP.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-bmeip" }, "yanked": false, "sha": "3a41208cd3210b4bb806bbfde9a2b07d6306771c0298ab1ee972a5861b9e8c53", "spec_sha": "e299cb68029ae0c40e8cac12d85df7bceff93aab87d4acc564d2edf85eb8043e", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-bmeip", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-bmeip-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-bmeip", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:18 UTC |
yBkci46PaYOkJ3jS4AXS0 |
tencentcloud-sdk-hasimTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service HASIM. |
3.0.969 | Content{ "name": "tencentcloud-sdk-hasim", "downloads": 161767, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:14.414Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service HASIM.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-hasim" }, "yanked": false, "sha": "a5b678770de974eab79962e96ef5f75ee86315dd10133ba2df36e0978fdf22ab", "spec_sha": "1c26fb59e14e0b2aefe72f82c7a655b507fb188247751d52b8ac8f3634383169", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-hasim", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-hasim-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-hasim", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:17 UTC |
xn836E2l6R6E7YkNnglAG |
tencentcloud-sdk-trpTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TRP. |
3.0.969 | Content{ "name": "tencentcloud-sdk-trp", "downloads": 280349, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:12.639Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TRP.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-trp" }, "yanked": false, "sha": "f3a232dc0f39e6af67fdf2e69f3dcea02ad6b9cc9629e13be80782696071d172", "spec_sha": "b0484b9065d70889643a84fcbf2821db1d5fd303f3af39d616d7f7a353e7d4f7", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-trp", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-trp-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-trp", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:15 UTC |
p9rnMGkHccMHAxNg4V32o |
tencentcloud-sdk-tseTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TSE. |
3.0.969 | Content{ "name": "tencentcloud-sdk-tse", "downloads": 417823, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:10.312Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TSE.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tse" }, "yanked": false, "sha": "17c856ab5a24a7b4946cca6424e11dd83daa4187bb2c26157cda9d03c96b629f", "spec_sha": "bfd6e396216cd2d6e0589f6bd34422985557b11ca083c2c6bfb5975c082315e0", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-tse", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-tse-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tse", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:13 UTC |
joP8Onk8BrF4GvswRVJAc |
tencentcloud-sdk-cdbTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDB. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cdb", "downloads": 428073, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:08.269Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDB.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdb" }, "yanked": false, "sha": "4ec01b9750317cab60f973f58f38d5ff327c4a4450b683bea71ce47362b66889", "spec_sha": "cd849c1b2fa0f27f2bc3d5af459138a394a12ee577812e896de9195451be4dfb", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdb", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdb-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdb", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:11 UTC |
R-YKpWEBKRTE4iw9VY-kT |
tencentcloud-sdk-ebTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service EB. |
3.0.969 | Content{ "name": "tencentcloud-sdk-eb", "downloads": 424479, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:05.837Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service EB.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-eb" }, "yanked": false, "sha": "6dbb96d37720ac8eaf1c2c0e907cd359fc0f4045b124067784802a4b7dff7507", "spec_sha": "68ce0a5070274d573dec5e122680cbd3a399029304029b0b703d168389217fe6", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-eb", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-eb-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-eb", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:09 UTC |
VqOR0dtNFXUhHUyW_nvOs |
tencentcloud-sdk-cloudstudioTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CLOUDSTUDIO. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cloudstudio", "downloads": 224618, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:02.559Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CLOUDSTUDIO.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cloudstudio" }, "yanked": false, "sha": "953c899184998ac7776be409b844605fd131abddb9f106698707900dc981bd2d", "spec_sha": "6b893e849c0f9aee06056c5b81999ac1908651a280f9a2102d454fd7a225ad00", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cloudstudio", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cloudstudio-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cloudstudio", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:06 UTC |
tb4ah_eoVIjvmhKy6rNmk |
tencentcloud-sdk-vcubeTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service VCUBE. |
3.0.969 | Content{ "name": "tencentcloud-sdk-vcube", "downloads": 1520, "version": "3.0.969", "version_created_at": "2024-12-25T20:58:01.221Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service VCUBE.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-vcube" }, "yanked": false, "sha": "03f73069adf87f95f2024f58d0e883e0b8e68f892b30fd51fabfcc4bb431842b", "spec_sha": "3f3210d6fc45f40897b66919ad4f0cb0e562a36dea3a9efd0b915b1e18a68dfa", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-vcube", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-vcube-3.0.969.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-vcube", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:04 UTC |
kufVsAt5cDI-3sYckwHKj |
tencentcloud-sdk-emrTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service EMR. |
3.0.969 | Content{ "name": "tencentcloud-sdk-emr", "downloads": 419649, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:58.996Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service EMR.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-emr" }, "yanked": false, "sha": "45b3ef3b2b93dcf87b755c2e47e9025d27d23d77dca9e35ae12fb35abf05290f", "spec_sha": "fab7b7a8f30bfbbe331039df1ebce850418984d9588555108040f03954f9c802", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-emr", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-emr-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-emr", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:03 UTC |
T8-Z1IQZP2emxEGJ9LKmQ |
tencentcloud-sdk-tcbrTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TCBR. |
3.0.969 | Content{ "name": "tencentcloud-sdk-tcbr", "downloads": 266033, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:57.069Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TCBR.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tcbr" }, "yanked": false, "sha": "ae7a5256adc6875154ad5f112beba91ebaaa30b7311371179a12277039e4515a", "spec_sha": "400c25b38581f15d6efe7599f471bd62a522485dbf2a3f52beebc1a9661a2e6f", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-tcbr", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-tcbr-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-tcbr", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:00 UTC |
zsW_pW8Nt397ji7q_pGEB |
tencentcloud-sdk-kmsTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service KMS. |
3.0.969 | Content{ "name": "tencentcloud-sdk-kms", "downloads": 431699, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:55.205Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service KMS.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-kms" }, "yanked": false, "sha": "a1cd233131e46318a3150d193518b60e718e477acca133980ada862b363f3cb5", "spec_sha": "3fa2495ca98b5ae993f1d26be9293afb9d68ce41372560e670dddfcaedc6e6bc", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-kms", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-kms-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-kms", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:58:00 UTC |
yoTLf-wuqBrZL2LErWUtF |
tencentcloud-sdk-cvmTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CVM. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cvm", "downloads": 422959, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:53.032Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CVM.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cvm" }, "yanked": false, "sha": "9ed338864d4d8d1d5cd38174eb322d121a8de32bbb28f80a553b56d7086de707", "spec_sha": "f79a1fc6fb235a6c620c73395d6e0c11013004d50f8b2abd29e46ea7318f297c", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cvm", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cvm-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cvm", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:57:56 UTC |
2q5F5KlKZVAWicYM8n1D2 |
tencentcloud-sdk-trtcTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TRTC. |
3.0.969 | Content{ "name": "tencentcloud-sdk-trtc", "downloads": 424273, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:51.313Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service TRTC.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-trtc" }, "yanked": false, "sha": "465740b0b5464e85b197272381d5475df595a31fca308339c4debf7ac3dd318c", "spec_sha": "418f9b7d4d09e6ad66935f3453514cf9e14bca5c9f95596bc070c4cb030bfe9a", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-trtc", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-trtc-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-trtc", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:57:55 UTC |
yw5056UOYkjHR3LIBZFQD |
tencentcloud-sdk-cimTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CIM. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cim", "downloads": 420129, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:49.472Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CIM.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cim" }, "yanked": false, "sha": "5324861e868c08a20d8b6318f1c6871823d21cb0a7ac2b3f9811b10d726867b8", "spec_sha": "61ff6938387145351cd4bbc232554b470b2b5b6eadc93232086f7c0231fccdfd", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cim", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cim-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cim", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:57:54 UTC |
DMIt1NMrNLzTOukDMiKKL |
tencentcloud-sdk-yunsouTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service YUNSOU. |
3.0.969 | Content{ "name": "tencentcloud-sdk-yunsou", "downloads": 416911, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:47.381Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service YUNSOU.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-yunsou" }, "yanked": false, "sha": "035ec142e6de0f153ab328288acc659c5275af6fdf6eb306a5675772687268a5", "spec_sha": "fd10edb9c1dacf3727a6d1685a223fbf1a71d945afbcd2c91b35b5e8c04e15b5", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-yunsou", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-yunsou-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-yunsou", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:57:53 UTC |
hEetXddjE6SZdg75hDi4Y |
tencentcloud-sdk-cdzTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDZ. |
3.0.969 | Content{ "name": "tencentcloud-sdk-cdz", "downloads": 16663, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:44.775Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service CDZ.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdz" }, "yanked": false, "sha": "4408ec9fb629d6269f249cb5ad5b5e36d0f4ccb2f2cd42d27f9efc9fe38cbebe", "spec_sha": "22edb9913ac34d31436accc1322a769145ded0c3fae3d2c02995ca8173bf789c", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdz", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-cdz-3.0.969.gem", "homepage_uri": null, "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-cdz", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:57:52 UTC |
yWq7pdGkEogp0gEblfsuI |
tencentcloud-sdk-ioaTencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service IOA. |
3.0.969 | Content{ "name": "tencentcloud-sdk-ioa", "downloads": 51568, "version": "3.0.969", "version_created_at": "2024-12-25T20:57:41.944Z", "version_downloads": 0, "platform": "ruby", "authors": "Tencent Cloud", "info": "Tencent Cloud Ruby SDK is the official software development kit, which allows Ruby developers to write software that makes use of Tencent Cloud service IOA.", "licenses": [ "Apache-2.0" ], "metadata": { "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-ioa" }, "yanked": false, "sha": "c1e00bb9fe8f6ef158e4dcbca30a5482ea73045f27ebf44b4f56e9ab504ebad5", "spec_sha": "097117f8f7a78b3d8733cabb52ef6e2268c91268e2feea640c94ef3a89b8b951", "project_uri": "https://rubygems.org/gems/tencentcloud-sdk-ioa", "gem_uri": "https://rubygems.org/gems/tencentcloud-sdk-ioa-3.0.969.gem", "homepage_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby", "wiki_uri": null, "documentation_uri": null, "mailing_list_uri": null, "source_code_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-ioa", "bug_tracker_uri": null, "changelog_uri": "https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md", "funding_uri": null, "dependencies": { "development": [], "runtime": [ { "name": "tencentcloud-sdk-common", "requirements": "~> 3.0" } ] } } |
2024-12-25 20:57:51 UTC |