https://github.com/ruby-i18n/i18n
Internationalization (i18n) library for Ruby
https://github.com/ruby-i18n/i18n
Keywords
i18n ruby
Keywords from Contributors
activerecord activejob mvc rubygem rack rspec sinatra background-jobs crash-reporting rubocop
Last synced: about 7 hours ago
JSON representation
Repository metadata
Internationalization (i18n) library for Ruby
- Host: GitHub
- URL: https://github.com/ruby-i18n/i18n
- Owner: ruby-i18n
- License: mit
- Created: 2008-06-13T12:47:13.000Z (about 18 years ago)
- Default Branch: master
- Last Pushed: 2026-09-01T01:35:25.000Z (8 days ago)
- Last Synced: 2026-09-02T05:34:30.879Z (7 days ago)
- Topics: i18n, ruby
- Language: Ruby
- Homepage:
- Size: 1.68 MB
- Stars: 1,031
- Watchers: 16
- Forks: 415
- Open Issues: 66
- Releases: 55
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/funding.yml
- License: MIT-LICENSE
README.md
Ruby I18n
Ruby internationalization and localization (i18n) solution.
Currently maintained by @radar.
Usage
Rails
You will most commonly use this library within a Rails app.
We support Rails versions from 6.0 and up.
See the Rails Guide for an example of its usage.
Ruby (without Rails)
We support Ruby versions from 3.1 and up.
If you want to use this library without Rails, you can simply add i18n to your Gemfile:
gem 'i18n'
Then configure I18n with some translations, and a default locale:
I18n.load_path += Dir[File.expand_path("config/locales") + "/*.yml"]
I18n.default_locale = :en # (note that `en` is already the default!)
A simple translation file in your project might live at config/locales/en.yml and look like:
en:
test: "This is a test"
You can then access this translation by doing:
I18n.t(:test)
You can switch locales in your project by setting I18n.locale to a different value:
I18n.locale = :de
I18n.t(:test) # => "Dies ist ein Test"
Fiber-safe config updates
Fiber[] values are inherited by child fibers.
To avoid sharing mutable config objects across fibers, prefer creating updated configs and setting them with set!:
I18n.config.with(locale: :ja).set!
set! stores a frozen config in the current execution context.
This keeps inherited state safe and lets updates happen by replacing config objects.
Features
- Translation and localization
- Interpolation of values to translations
- Pluralization (CLDR compatible)
- Customizable transliteration to ASCII
- Flexible defaults
- Bulk lookup
- Lambdas as translation data
- Custom key/scope separator
- Custom exception handlers
- Extensible architecture with a swappable backend
Pluggable Features
- Cache
- Pluralization: lambda pluralizers stored as translation data
- Locale fallbacks, RFC4647 compliant (optionally: RFC4646 locale validation)
- Gettext support
- Translation metadata
Alternative Backend
- Chain
- ActiveRecord (optionally: ActiveRecord::Missing and ActiveRecord::StoreProcs)
- KeyValue (uses active_support/json and cannot store procs)
For more information and lots of resources see the 'Resources' page on the wiki.
Tests
You can run tests both with
rake testor justrake- run any test file directly, e.g.
ruby -Ilib:test test/api/simple_test.rb
You can run all tests against all Gemfiles with
ruby test/run_all.rb
The structure of the test suite is a bit unusual as it uses modules to reuse
particular tests in different test cases.
The reason for this is that we need to enforce the I18n API across various
combinations of extensions. E.g. the Simple backend alone needs to support
the same API as any combination of feature and/or optimization modules included
to the Simple backend. We test this by reusing the same API definition (implemented
as test methods) in test cases with different setups.
You can find the test cases that enforce the API in test/api. And you can find
the API definition test methods in test/api/tests.
All other test cases (e.g. as defined in test/backend, test/core_ext) etc.
follow the usual test setup and should be easy to grok.
More Documentation
Additional documentation can be found here: https://github.com/ruby-i18n/i18n/wiki
Contributors
- @radar
- @carlosantoniodasilva
- @josevalim
- @knapo
- @tigrish
- and many more
License
MIT License. See the included MIT-LICENSE file.
Owner metadata
- Name: ruby-i18n
- Login: ruby-i18n
- Email:
- Kind: organization
- Description:
- Website:
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/8200960?v=4
- Repositories: 3
- Last ynced at: 2024-03-25T19:32:13.361Z
- Profile URL: https://github.com/ruby-i18n
GitHub Events
Total
- Commit comment event: 2
- Create event: 2
- Delete event: 1
- Fork event: 10
- Issue comment event: 37
- Issues event: 11
- Pull request event: 14
- Pull request review comment event: 1
- Pull request review event: 6
- Push event: 12
- Release event: 1
- Watch event: 28
Last Year
- Create event: 1
- Delete event: 1
- Fork event: 5
- Issue comment event: 16
- Issues event: 3
- Pull request event: 7
- Pull request review event: 1
- Push event: 9
- Watch event: 5
Committers metadata
Last synced: 1 day ago
Total Commits: 1,195
Total Committers: 210
Avg Commits per committer: 5.69
Development Distribution Score (DDS): 0.716
Commits in past year: 29
Committers in past year: 11
Avg Commits per committer in past year: 2.636
Development Distribution Score (DDS) in past year: 0.655
| Name | Commits | |
|---|---|---|
| Sven Fuchs | s****s@a****e | 339 |
| Ryan Bigg | me@r****m | 192 |
| Carlos Antonio da Silva | c****a@g****m | 84 |
| José Valim | j****m@g****m | 69 |
| knapo | k****o@k****t | 27 |
| Christopher Dell | c****s@t****m | 23 |
| Lawrence Pit | l****t@g****m | 22 |
| Akira Matsuda | r****e@d****p | 21 |
| Michael Overmeyer | m****r@s****m | 19 |
| Jeremy Kemper | j****y@b****t | 12 |
| fatkodima | f****3@g****m | 11 |
| Paarth Madan | p****n@s****m | 11 |
| Clemens Kofler | c****s@r****t | 8 |
| Ryan Bigg | r****g@c****m | 8 |
| Vít Ondruch | v****h@r****m | 7 |
| Theo Cushion | t****o@j****m | 7 |
| Krzysztof Rybka | k****a@g****m | 6 |
| Chris Stringer | c****r@g****m | 6 |
| José Valim | j****m@p****r | 6 |
| Olle Jonsson | o****n@g****m | 6 |
| Will Jordan | w****l@c****g | 6 |
| Yaroslav Markin | y****v@m****t | 6 |
| tom-lord | l****m@g****m | 6 |
| Aaron Patterson | a****n@g****m | 5 |
| Jean Boussier | j****r@g****m | 5 |
| Nikos Dimitrakopoulos | n****s@p****r | 5 |
| lee266 | l****n@g****m | 5 |
| thedarkone | t****2@g****m | 5 |
| jonian | j****n@h****u | 5 |
| Julik Tarkhanov | me@j****l | 4 |
| and 180 more... | ||
Committer domains:
- shopify.com: 4
- pamediakopes.gr: 2
- mac.com: 1
- aleksejleonov.com: 1
- wyeworks.com: 1
- sina.com: 1
- llp.pl: 1
- adva-cms.org: 1
- bertg.be: 1
- fake.server: 1
- rikowski.info: 1
- goodlife.tw: 1
- compton.nu: 1
- tylerrick.com: 1
- lunatic.cat: 1
- andrijevik.net: 1
- kares.org: 1
- optim.co.jp: 1
- fengb.info: 1
- wantedly.com: 1
- buster.se: 1
- conmolto.org: 1
- jovoto.com: 1
- svenfuchs.com: 1
- copyright1984.com: 1
- fastignite.com: 1
- sema.in: 1
- artweb-design.de: 1
- ryanbigg.com: 1
- knapo.net: 1
- tigrish.com: 1
- dio.jp: 1
- bitsweat.net: 1
- railway.at: 1
- cultureamp.com: 1
- redhat.com: 1
- jivatechnology.com: 1
- g5searchmarketing.com: 1
- plataformatec.com.br: 1
- code.org: 1
- markin.net: 1
- hardpixel.eu: 1
- julik.nl: 1
- shinyshell.net: 1
- tanda.co: 1
- miceportal.com: 1
- watermark.org: 1
- alchemist.codes: 1
- thebrocks.net: 1
- njclarke.com: 1
- bartuzi.me: 1
- lostapathy.com: 1
- playtype.net: 1
- cutrer.us: 1
- dejimata.com: 1
- edu.esiee.fr: 1
- oracle.com: 1
- quorning.net: 1
- o2.pl: 1
- ernesto-jimenez.com: 1
- sleepmap.de: 1
- dedasys.com: 1
- naildrivin5.com: 1
- sikachu.com: 1
- stvs.com: 1
- yandex.ru: 1
- peterberkenbosch.nl: 1
- orien.io: 1
- natwelch.com: 1
- thetrainline.com: 1
- paperplanes.de: 1
- marketcircle.com: 1
- mensfeld.pl: 1
- m4ssive.com: 1
- greenriver.com: 1
- rubychan.de: 1
- joshpeek.com: 1
- suse.de: 1
- beam.dental: 1
- a16m.se: 1
- riseup.net: 1
- easy.cz: 1
- example.invalid: 1
- shopittome.com: 1
- pre-sense.de: 1
- wheatstack.com: 1
- livingsocial.com: 1
- coditramuntana.com: 1
- kreeftmeijer.nl: 1
- moneydesktop.com: 1
- openwiki.com: 1
- klara.com: 1
- 1000jobboersen.de: 1
- verbasoftware.com: 1
- tma1.com: 1
- ledez.net: 1
- getsatisfaction.com: 1
- shayon.me: 1
- railsdog.com: 1
- jimmycuadra.com: 1
- jaredbeck.com: 1
- ruby-lang.org: 1
- nyh.se: 1
- gerhard-schlager.at: 1
- fastmail.com: 1
- stembolt.com: 1
Issue and Pull Request metadata
Last synced: 1 day ago
Total issues: 358
Total pull requests: 404
Average time to close issues: 10 months
Average time to close pull requests: 8 months
Total issue authors: 287
Total pull request authors: 227
Average comments per issue: 3.51
Average comments per pull request: 2.35
Merged pull request: 280
Bot issues: 0
Bot pull requests: 0
Past year issues: 9
Past year pull requests: 28
Past year average time to close issues: about 2 months
Past year average time to close pull requests: about 1 month
Past year issue authors: 9
Past year pull request authors: 15
Past year average comments per issue: 4.22
Past year average comments per pull request: 1.18
Past year merged pull request: 13
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- lawrencepit (19)
- movermeyer (8)
- knapo (6)
- mattbeedle (5)
- tenderlove (4)
- radar (4)
- michelboaventura (3)
- nikosd (3)
- the8472 (3)
- PikachuEXE (3)
- sobrinho (3)
- sandstrom (3)
- clemens (2)
- robinboening (2)
- viralpraxis (2)
Top Pull Request Authors
- radar (27)
- amatsuda (16)
- fatkodima (12)
- movermeyer (10)
- OskarEichler (7)
- stereobooster (6)
- voxik (6)
- wjordan (6)
- nikosd (6)
- tenderlove (6)
- paarthmadan (6)
- casperisfine (5)
- chipairon (5)
- olleolleolle (4)
- ghiculescu (4)
Top Issue Labels
- pr-required (19)
- no-repro (10)
- has-repro-steps (4)
- waiting (2)
- info-required (1)
Top Pull Request Labels
- waiting (5)
- no-repro (2)
- pr-required (1)
Package metadata
- Total packages: 25
-
Total downloads:
- rubygems: 2,851,808,594 total
- Total docker downloads: 7,463,578,786
- Total dependent packages: 1,845 (may contain duplicates)
- Total dependent repositories: 1,412,742 (may contain duplicates)
- Total versions: 297
- Total maintainers: 11
- Total advisories: 2
gem.coop: i18n
New wave Internationalization support for Ruby.
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: http://www.rubydoc.info/gems/i18n/
- Licenses: MIT
- Latest release: 1.15.2 (published 3 months ago)
- Last Synced: 2026-09-07T11:02:19.965Z (1 day ago)
- Versions: 89
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,425,546,544 Total
- Docker Downloads: 3,731,789,393
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Downloads: 0.003%
- Average: 0.004%
- Docker downloads count: 0.015%
- Maintainers (9)
ubuntu-20.04: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: mit
- Latest release: 1.8.2-2 (published 7 months ago)
- Last Synced: 2026-08-03T06:13:21.395Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.232%
- Forks count: 0.276%
- Stargazers count: 0.65%
rubygems.org: i18n
New wave Internationalization support for Ruby.
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: http://www.rubydoc.info/gems/i18n/
- Licenses: MIT
- Latest release: 1.15.2 (published 3 months ago)
- Last Synced: 2026-09-08T10:17:15.084Z (about 8 hours ago)
- Versions: 89
- Dependent Packages: 1,840
- Dependent Repositories: 1,412,741
- Downloads: 1,426,262,050 Total
- Docker Downloads: 3,731,789,393
-
Rankings:
- Dependent repos count: 0.0%
- Downloads: 0.003%
- Dependent packages count: 0.028%
- Docker downloads count: 0.051%
- Average: 0.555%
- Forks count: 1.314%
- Stargazers count: 1.934%
- Maintainers (9)
- Advisories:
alpine-v3.18: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.13.0-r0 (published over 3 years ago)
- Last Synced: 2026-04-09T03:02:44.115Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.056%
- Forks count: 4.04%
- Stargazers count: 8.184%
- Maintainers (1)
alpine-edge: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.14.8-r0 (published 9 months ago)
- Last Synced: 2026-04-01T03:09:32.188Z (5 months ago)
- Versions: 10
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 5.013%
- Average: 5.09%
- Dependent packages count: 6.031%
- Stargazers count: 9.314%
- Maintainers (1)
proxy.golang.org: github.com/ruby-i18n/i18n
- Homepage:
- Documentation: https://pkg.go.dev/github.com/ruby-i18n/i18n#section-documentation
- Licenses: mit
- Latest release: v1.15.2 (published 3 months ago)
- Last Synced: 2026-09-07T11:02:26.635Z (1 day ago)
- Versions: 84
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.48%
- Average: 6.698%
- Dependent repos count: 6.917%
alpine-v3.17: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.12.0-r0 (published about 4 years ago)
- Last Synced: 2026-08-24T22:30:16.266Z (15 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 3.553%
- Average: 7.552%
- Stargazers count: 7.702%
- Dependent packages count: 18.951%
- Maintainers (1)
conda-forge.org: rb-i18n
- Homepage: https://rubygems.org/gems/i18n
- Licenses: MIT
- Latest release: 1.7.0 (published almost 7 years ago)
- Last Synced: 2026-04-01T03:21:37.423Z (5 months ago)
- Versions: 4
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Forks count: 8.384%
- Stargazers count: 13.174%
- Average: 15.376%
- Dependent packages count: 15.649%
- Dependent repos count: 24.298%
ubuntu-23.10: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: mit
- Latest release: 1.10.0-2 (published 7 months ago)
- Last Synced: 2026-03-13T19:23:42.261Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-23.04: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: mit
- Latest release: 1.10.0-2 (published 7 months ago)
- Last Synced: 2026-03-12T07:03:24.729Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
openbsd-7.9-amd64: devel/ruby-i18n
ruby internationalization and localization solution
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: mit
- Latest release: 1.14.1 (published 5 months ago)
- Last Synced: 2026-05-28T01:16:25.123Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.19: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.14.1-r0 (published about 3 years ago)
- Last Synced: 2026-04-01T03:24:07.064Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.14.8-r0 (published 9 months ago)
- Last Synced: 2026-04-09T02:02:57.008Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.14.4-r0 (published over 2 years ago)
- Last Synced: 2026-04-01T02:05:26.611Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
guix: ruby-i18n
Internationalization library for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/ruby-xyz.scm#n231
- Licenses: expat
- Latest release: 1.13.0 (published 6 months ago)
- Last Synced: 2026-08-05T19:06:53.955Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.22: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.14.7-r0 (published over 1 year ago)
- Last Synced: 2026-04-01T01:53:20.243Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: ruby-i18n
New wave Internationalization support for Ruby
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: MIT
- Latest release: 1.14.6-r0 (published almost 2 years ago)
- Last Synced: 2026-04-01T01:46:07.580Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
ubuntu-24.10: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: mit
- Latest release: 1.14.5-1 (published 7 months ago)
- Last Synced: 2026-03-09T17:06:34.609Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-11: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: https://packages.debian.org/bullseye/ruby-i18n
- Licenses: mit
- Latest release: 1.8.8-1 (published 7 months ago)
- Last Synced: 2026-03-14T06:23:24.708Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-13: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: https://packages.debian.org/trixie/ruby-i18n
- Licenses: mit
- Latest release: 1.14.7-1 (published 7 months ago)
- Last Synced: 2026-03-14T18:09:48.205Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-12: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: https://packages.debian.org/bookworm/ruby-i18n
- Licenses: mit
- Latest release: 1.10.0-2 (published 7 months ago)
- Last Synced: 2026-03-13T03:28:10.025Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
gentoo-portage: dev-ruby/i18n
Add Internationalization support to your Ruby application
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: https://packages.gentoo.org/packages/dev-ruby/i18n
- Licenses: MIT
- Latest release: 1.14.8 (published 5 months ago)
- Last Synced: 2026-07-29T01:17:18.706Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-24.04: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: mit
- Latest release: 1.14.1-1 (published 7 months ago)
- Last Synced: 2026-03-06T15:59:51.169Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-10: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Documentation: https://packages.debian.org/buster/ruby-i18n
- Licenses: mit
- Latest release: 1.5.3-1+deb10u1 (published 7 months ago)
- Last Synced: 2026-03-13T05:08:59.075Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-22.04: ruby-i18n
- Homepage: https://github.com/ruby-i18n/i18n
- Licenses: mit
- Latest release: 1.8.11-1 (published 7 months ago)
- Last Synced: 2026-03-13T23:37:35.251Z (6 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
Dependencies
- actions/checkout v2 composite
- ruby/setup-ruby v1 composite
- json >= 0
- minitest ~> 5.14
- mocha ~> 1.7.0
- rake ~> 13
- test_declarative = 0.0.6
- concurrent-ruby ~> 1.0
Score: 35.404482497981064