https://github.com/rmagick/rmagick
Ruby bindings for ImageMagick
https://github.com/rmagick/rmagick
Keywords
imagemagick rmagick ruby
Keywords from Contributors
activerecord rubygems activejob mvc rack crash-reporting rspec authorization multithreading sinatra
Last synced: about 13 hours ago
JSON representation
Repository metadata
Ruby bindings for ImageMagick
- Host: GitHub
- URL: https://github.com/rmagick/rmagick
- Owner: rmagick
- License: mit
- Created: 2014-07-24T14:02:31.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2026-06-13T17:02:25.000Z (3 days ago)
- Last Synced: 2026-06-15T08:31:12.640Z (about 22 hours ago)
- Topics: imagemagick, rmagick, ruby
- Language: C++
- Homepage: https://rmagick.github.io/
- Size: 12.9 MB
- Stars: 730
- Watchers: 13
- Forks: 142
- Open Issues: 5
- Releases: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
README.md
RMagick
Table of Contents
- Introduction
- Prerequisites
- Installing RMagick
- Using RMagick
- Things that can go wrong
- Upgrading
- More samples
- Reporting Bugs
- Development Setup
- Credits
- License
- Releasing
Introduction
RMagick is an interface between the Ruby programming language and the
ImageMagick image processing library.
Prerequisites
These prerequisites are required for the latest version of RMagick.
OS
- Linux
- *BSD
- macOS
- Windows
- Other *nix-like systems
C++ compiler
- RMagick 5.4.0 or later requires a C++ compiler.
Ruby
- Version 3.2 or later.
You can get Ruby from https://www.ruby-lang.org.
Ruby must be able to build C-Extensions (e.g. MRI, not JRuby)
ImageMagick
- Version 6.9 or later (for ImageMagick 6 users).
- Version 7.1 or later (for ImageMagick 7 users).
You can get ImageMagick from https://imagemagick.org.
Linux
Debian-based
On Debian-based, you can run:
apt install libmagickwand-dev
RHEL-compatible
On RHEL-compatible, you can run:
dnf install ImageMagick-devel
Arch Linux
On Arch Linux, you can run:
pacman -Syy imagemagick
Alpine Linux
On Alpine Linux, you can run:
apk add imagemagick imagemagick-dev imagemagick-libs
or you can run if you would like to use ImageMagick 6:
apk add imagemagick6 imagemagick6-dev imagemagick6-libs
macOS
On macOS, you can run:
brew install imagemagick
or you can run if you would like to use ImageMagick 6:
brew install imagemagick@6
Windows
- Install latest Ruby+Devkit package which you can get from RubyInstaller for Windows.
- Download
ImageMagick-7.XXXX-Q16-x64-dll.exe(not,ImageMagick-7.XXXX-Q16-x64-static.exe) binary from Windows Binary Release, or you can download ImageMagick 6 from Windows Binary Release. - Install ImageMagick. You need to turn on checkboxes
Add application directory to your system pathandInstall development headers for C and C++in an installer for RMagick.
If you want to install ImageMagick using winget, run the following command:
winget install ImageMagick.ImageMagick --custom /TASKS=modifypath,install_Devel
If you want to install ImageMagick using Chocolatey, run the following command:
choco install imagemagick -PackageParameters InstallDevelopmentHeaders=true
Windows (via MSYS2 / RubyInstaller)
If you are using RubyInstaller for Windows, you can easily install ImageMagick using MSYS2's pacman package manager.
Open your command prompt and run the appropriate command for your architecture to install ImageMagick:
For x64:
ridk exec pacman -S mingw-w64-ucrt-x86_64-imagemagick
For ARM64:
ridk exec pacman -S mingw-w64-clang-aarch64-imagemagick
Installing RMagick
[!NOTE]
When you update the ImageMagick version, we have recommended you should re-install RMagick.
Installing via Bundler
Add to your Gemfile:
gem 'rmagick'
Then run:
bundle install
For Windows, you need to run using ridk tool:
ridk exec bundle install
Installing via RubyGems
Run:
gem install rmagick
For Windows, you need to run using ridk tool:
ridk exec gem install rmagick
Versioning
RMagick is versioned according to Semantic Versioning.
Versions >= 7 work on Ruby >= 3.2 only.
For older Ruby versions, use RMagick ~> 6.0.
Using RMagick
Require RMagick in your project as follows:
require 'rmagick'
See https://rmagick.github.io/usage.html for links to more information.
Things that can go wrong
The RMagick installation FAQ has answers to the most commonly reported
problems, though may be out of date.
Can't install RMagick. Can't find libMagickCore-XXXX.so or one of the dependent libraries. Check the mkmf.log file for more detailed information
Typically this message means that one or more of the libraries that ImageMagick
depends on hasn't been installed. Examine the mkmf.log file in the ext/RMagick
subdirectory of the installation directory for any error messages. These
messages typically contain enough additional information for you to be able to
diagnose the problem. Also see this FAQ.
Cannot open shared object file
If you get a message like this:
... /core_ext/kernel_require.rb>:136:in `require': cannot load such file -- RMagick2.so (LoadError)
(snip)
you probably do not have the directory in which the ImageMagick library
is installed in your load path. An easy way to fix this is to define
the directory in the LD_LIBRARY_PATH environment variable. For
example, suppose you installed the ImageMagick library libMagickCore-XXXX.so in
/usr/local/lib. (By default this is where it is installed.) Create the
LD_LIBRARY_PATH variable like this:
export LD_LIBRARY_PATH=/usr/local/lib
On Linux, see ld(1) and ld.so(8) for more information. On other operating
systems, see the documentation for the dynamic loading facility.
This operation might not be required when you can use 4.2.5 or later.
Segmentation fault
Default stack size of your operating system might be too small. Try removing
the limit with this command:
ulimit -s unlimited
Upgrading
If you upgrade to a newer release of ImageMagick, make sure you're using a
release of RMagick that supports that release. It's safe to install a new
release of RMagick over an earlier release.
More samples
You can find more sample RMagick programs in the /examples and /doc/ex directories. These
programs are not installed in the RMagick documentation tree.
Reporting bugs
Please report bugs in RMagick, its documentation, or its installation programs
via the bug tracker on the RMagick issues page.
However, We can't help with Ruby installation and configuration or ImageMagick
installation and configuration. Information about reporting problems and
getting help for ImageMagick is available at the ImageMagick
website or the ImageMagick Discussions.
Development Setup
In order to minimize issues on your local machine, we recommend that you make
use of Dev Containers. This provides a consistent, pre-configured development environment using Docker.
Steps to get up and running with a passing build are as follows:
1) Set up the prerequisites
To use Dev Containers, you will need to install the following tools on your machine:
- Docker Desktop (or Docker Engine)
- Visual Studio Code
- Dev Containers extension for VS Code
2) Clone RMagick and open the container
Clone the repository to your local machine and open it in VS Code:
git clone https://github.com/rmagick/rmagick.git # or your fork
cd rmagick
code .
Once VS Code opens, it should detect the .devcontainer configuration and prompt you to "Reopen in Container".
During this process, VS Code will ask you to select a devcontainer.json configuration. You can choose the environment you want to develop and test against:
- ImageMagick 7 (
.devcontainer/devcontainer.json) - Recommended for the latest development. - ImageMagick 6 (
.devcontainer/ImageMagick6/devcontainer.json) - For testing against the legacy ImageMagick 6 API.
Select the one you need, and VS Code will automatically build the corresponding Docker image and start your isolated development environment. This may take a few minutes the first time.
3) Build RMagick
Once the container is running and the ImageMagick setup is complete, open a new terminal inside VS Code.
Install the Ruby dependencies and compile the RMagick extension:
$ bundle install
$ bundle exec rake
And you're all set! The codebase on your local machine is automatically synced with the container. You can edit files using your local VS Code, and run tests seamlessly within the integrated container terminal.
Credits
Authors: Tim Hunter, Omer Bar-or, Benjamin Thomas
Thanks to ImageMagick Studio LLC for ImageMagick and for hosting
the RMagick documentation.
License
Releasing
- Update ChangeLog
- Edit
lib/rmagick/version.rb - Are the tests passing? Run
rakeagain just to be sure. rake release
Owner metadata
- Name: rmagick
- Login: rmagick
- Email:
- Kind: organization
- Description:
- Website:
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/12403326?v=4
- Repositories: 3
- Last ynced at: 2024-03-18T14:08:04.274Z
- Profile URL: https://github.com/rmagick
GitHub Events
Total
- Delete event: 2
- Pull request event: 102
- Fork event: 2
- Issues event: 22
- Watch event: 18
- Issue comment event: 79
- Push event: 72
- Pull request review event: 4
- Pull request review comment event: 3
- Create event: 13
Last Year
- Delete event: 2
- Pull request event: 52
- Issues event: 2
- Watch event: 5
- Issue comment event: 15
- Push event: 49
- Pull request review event: 4
- Pull request review comment event: 3
- Create event: 4
Committers metadata
Last synced: about 22 hours ago
Total Commits: 3,742
Total Committers: 65
Avg Commits per committer: 57.569
Development Distribution Score (DDS): 0.461
Commits in past year: 95
Committers in past year: 5
Avg Commits per committer in past year: 19.0
Development Distribution Score (DDS) in past year: 0.116
| Name | Commits | |
|---|---|---|
| rmagick | r****k | 2018 |
| Watson | w****8@g****m | 811 |
| Robert Fletcher | m****p | 189 |
| Dirk Lemstra | d****k@l****g | 176 |
| Ilya Vassilevsky | v****y@g****m | 155 |
| Pavel Lobashov | s****n@g****m | 131 |
| tim | t****m | 54 |
| u338_steven | u****n@g****m | 46 |
| Benjamin Fleischer | g****b@b****m | 28 |
| Le1gh | L****r@g****m | 13 |
| mmaiza | m****f@d****m | 10 |
| Oldrich Vetesnik | o****k@g****m | 10 |
| Nora Dossche | 7****e | 8 |
| baror | b****r | 7 |
| Omer Bar-or | o****r@b****g | 6 |
| Samuel Williams | s****s@o****z | 6 |
| Omer Bar-or | g****b@o****g | 4 |
| Akira Ikeda | a****8@g****m | 4 |
| Johannes Barre | i****l@i****t | 4 |
| naquad | n****d@g****m | 4 |
| Antonio Terceiro | a****a@t****z | 3 |
| Pawel Smolinski | p****l@o****m | 3 |
| Bryan Goldstein | b****o@g****m | 2 |
| Elaine Osbourn | k****e@g****m | 2 |
| Jan Sandbrink | n****e@g****m | 2 |
| Mamoru TASAKA | m****a@f****g | 2 |
| Marcelo Boeira | me@m****m | 2 |
| Matthew Schoolmaster | s****r@g****m | 2 |
| Mikael Muszynski | l****d@g****m | 2 |
| Xiaoming | x****g@c****m | 2 |
| and 35 more... | ||
Committer domains:
- greiz-reinsdorf.de: 1
- delstrother.com: 1
- degraaff.org: 1
- codacy.com: 1
- reinke.co: 1
- balintreczey.hu: 1
- dio.jp: 1
- tiscali.cz: 1
- kubosch.no: 1
- open2view.com: 1
- canonical.com: 1
- here.com: 1
- ruby-journal.com: 1
- ouvrages-web.fr: 1
- magoazul.com: 1
- cognoa.com: 1
- marceloboeira.com: 1
- fedoraproject.org: 1
- onepagecrm.com: 1
- terceiro.xyz: 1
- igels.net: 1
- omer.bar-or.org: 1
- oriontransfer.co.nz: 1
- bar-or.org: 1
- datasieve.com: 1
- benjaminfleischer.com: 1
- lemstra.org: 1
Issue and Pull Request metadata
Last synced: about 22 hours ago
Total issues: 117
Total pull requests: 461
Average time to close issues: over 2 years
Average time to close pull requests: 10 days
Total issue authors: 89
Total pull request authors: 12
Average comments per issue: 3.66
Average comments per pull request: 0.28
Merged pull request: 413
Bot issues: 0
Bot pull requests: 11
Past year issues: 8
Past year pull requests: 45
Past year average time to close issues: 2 days
Past year average time to close pull requests: about 21 hours
Past year issue authors: 7
Past year pull request authors: 4
Past year average comments per issue: 4.38
Past year average comments per pull request: 0.2
Past year merged pull request: 36
Past year bot issues: 0
Past year bot pull requests: 2
Top Issue Authors
- Watson1978 (13)
- bf4 (6)
- mockdeep (4)
- forthrin (3)
- jdelStrother (2)
- thedrow (2)
- fitmap (2)
- ccbcreg (2)
- evanmcallaway (2)
- mtasaka (2)
- LiinNs (1)
- AsWali (1)
- wtholt (1)
- laurent-martin (1)
- u338steven (1)
Top Pull Request Authors
- Watson1978 (424)
- depfu[bot] (11)
- dlemstra (9)
- mockdeep (7)
- ndossche (3)
- eregon (1)
- mtasaka (1)
- MSP-Greg (1)
- graaff (1)
- larskanis (1)
- Le1gh (1)
- jdelStrother (1)
Top Issue Labels
- more-information-needed (4)
- bug (4)
- ImageMagick 7 (4)
- Windows (2)
- performance (1)
- question (1)
- enhancement (1)
Top Pull Request Labels
- depfu (11)
- work-in-progress (1)
Package metadata
- Total packages: 30
-
Total downloads:
- rubygems: 109,085,114 total
- Total docker downloads: 1,140,562
- Total dependent packages: 652 (may contain duplicates)
- Total dependent repositories: 17,453 (may contain duplicates)
- Total versions: 268
- Total maintainers: 4
- Total advisories: 2
alpine-v3.23: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 6.1.1-r1 (published about 1 year ago)
- Last Synced: 2026-04-13T21:03:41.869Z (2 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.211%
- Stargazers count: 0.403%
- Forks count: 0.443%
- Maintainers (1)
ubuntu-24.10: ruby-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: mit
- Latest release: 5.3.0-2build5 (published 4 months ago)
- Last Synced: 2026-03-09T18:25:18.056Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.338%
- Forks count: 0.624%
- Stargazers count: 0.726%
gem.coop: rmagick
RMagick is an interface between Ruby and ImageMagick.
- Homepage: https://github.com/rmagick/rmagick
- Documentation: http://www.rubydoc.info/gems/rmagick/
- Licenses: MIT
- Latest release: 7.0.3 (published 14 days ago)
- Last Synced: 2026-06-13T11:15:12.078Z (3 days ago)
- Versions: 114
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 54,542,557 Total
- Docker Downloads: 570,281
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.493%
- Downloads: 0.495%
- Docker downloads count: 1.476%
- Maintainers (2)
- Advisories:
debian-12: ruby-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Documentation: https://packages.debian.org/bookworm/ruby-rmagick
- Licenses: mit
- Latest release: 4.2.3-2 (published 4 months ago)
- Last Synced: 2026-03-13T04:25:58.114Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.821%
- Forks count: 1.586%
- Stargazers count: 1.699%
rubygems.org: rmagick
RMagick is an interface between Ruby and ImageMagick.
- Homepage: https://github.com/rmagick/rmagick
- Documentation: http://www.rubydoc.info/gems/rmagick/
- Licenses: MIT
- Latest release: 7.0.3 (published 14 days ago)
- Last Synced: 2026-06-13T11:23:41.730Z (3 days ago)
- Versions: 114
- Dependent Packages: 652
- Dependent Repositories: 17,453
- Downloads: 54,542,557 Total
- Docker Downloads: 570,281
-
Rankings:
- Dependent packages count: 0.069%
- Dependent repos count: 0.271%
- Downloads: 0.471%
- Average: 1.162%
- Docker downloads count: 1.772%
- Forks count: 2.17%
- Stargazers count: 2.22%
- Maintainers (2)
- Advisories:
alpine-v3.18: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 5.2.0-r1 (published about 3 years ago)
- Last Synced: 2026-04-01T09:15:09.974Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.778%
- Forks count: 9.132%
- Stargazers count: 9.98%
- Maintainers (1)
alpine-v3.13: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 4.1.2-r1 (published over 5 years ago)
- Last Synced: 2026-04-01T10:06:19.500Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Stargazers count: 6.246%
- Forks count: 6.39%
- Average: 8.04%
- Dependent packages count: 19.522%
- Maintainers (1)
alpine-v3.12: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 4.1.2-r0 (published about 6 years ago)
- Last Synced: 2026-04-01T10:07:31.314Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 5.43%
- Stargazers count: 5.539%
- Average: 8.109%
- Dependent packages count: 21.468%
- Maintainers (1)
alpine-v3.14: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 4.1.2-r1 (published about 5 years ago)
- Last Synced: 2026-04-01T10:06:39.913Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Stargazers count: 6.398%
- Forks count: 6.405%
- Average: 8.621%
- Dependent packages count: 21.681%
- Maintainers (1)
alpine-edge: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 7.0.0-r0 (published 23 days ago)
- Last Synced: 2026-05-24T12:59:22.860Z (23 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Average: 8.966%
- Forks count: 10.015%
- Stargazers count: 11.209%
- Dependent packages count: 14.641%
- Maintainers (1)
alpine-v3.15: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 4.2.3-r1 (published over 4 years ago)
- Last Synced: 2026-04-01T10:11:01.946Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 6.685%
- Stargazers count: 6.899%
- Average: 9.792%
- Dependent packages count: 25.585%
- Maintainers (1)
alpine-v3.16: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 4.2.5-r1 (published about 4 years ago)
- Last Synced: 2026-04-01T10:11:13.578Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 6.944%
- Stargazers count: 7.495%
- Average: 10.438%
- Dependent packages count: 27.311%
- Maintainers (1)
alpine-v3.17: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 5.1.0-r0 (published over 3 years ago)
- Last Synced: 2026-04-01T09:15:32.364Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 8.622%
- Stargazers count: 9.234%
- Average: 11.278%
- Dependent packages count: 27.254%
- Maintainers (1)
alpine-v3.19: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 5.3.0-r0 (published over 2 years ago)
- Last Synced: 2026-04-01T10:12:18.936Z (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.20: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 6.0.1-r0 (published about 2 years ago)
- Last Synced: 2026-04-01T10:12:30.271Z (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.21: ruby-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 6.0.1-r0 (published about 2 years ago)
- Last Synced: 2026-04-01T10:11:22.303Z (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)
openbsd-7.9-amd64: graphics/ruby-rmagick,ruby34
Ruby interface to ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses:
- Latest release: 6.0.1p0 (published about 2 months ago)
- Last Synced: 2026-05-28T01:46:08.227Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
openbsd-7.9-amd64: graphics/ruby-rmagick,ruby33
Ruby interface to ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses:
- Latest release: 6.0.1p0 (published about 2 months ago)
- Last Synced: 2026-05-28T01:46:06.966Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
openbsd-7.9-amd64: graphics/ruby-rmagick,ruby40
Ruby interface to ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses:
- Latest release: 6.0.1p0 (published about 2 months ago)
- Last Synced: 2026-05-28T01:46:08.863Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
pkgsrc-netbsd-x86_64-10.1-all: graphics/ruby-RMagick
Ruby binding to ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Documentation: https://pkgsrc.se/graphics/ruby-RMagick
- Licenses: mit
- Latest release: 6.2.0 (published 2 months ago)
- Last Synced: 2026-05-27T07:36:57.737Z (20 days 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/rmagick
An interface between Ruby and the ImageMagick(TM) image processing library
- Homepage: https://github.com/rmagick/rmagick
- Documentation: https://packages.gentoo.org/packages/dev-ruby/rmagick
- Licenses: Artistic
- Latest release: 6.1.5 (published about 2 months ago)
- Last Synced: 2026-05-27T02:49:41.021Z (20 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-23.04: ruby-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: mit
- Latest release: 4.2.3-2build4 (published 4 months ago)
- Last Synced: 2026-03-12T03:12:20.079Z (3 months 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-rmagick
Ruby bindings for ImageMagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: MIT
- Latest release: 6.1.1-r1 (published about 1 year ago)
- Last Synced: 2026-04-01T10:11:46.937Z (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)
debian-11: ruby-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Documentation: https://packages.debian.org/bullseye/ruby-rmagick
- Licenses: mit
- Latest release: 2.16.0-7 (published 4 months ago)
- Last Synced: 2026-03-14T10:11:57.974Z (3 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.10: ruby-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: mit
- Latest release: 4.2.3-2build4 (published 4 months ago)
- Last Synced: 2026-03-14T09:15:39.975Z (3 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-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Documentation: https://packages.debian.org/buster/ruby-rmagick
- Licenses: mit
- Latest release: 2.16.0-6 (published 4 months ago)
- Last Synced: 2026-03-14T04:04:38.293Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-20.04: ruby-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: mit
- Latest release: 2.16.0-6build1 (published 4 months ago)
- Last Synced: 2026-03-13T21:33:21.211Z (3 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-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Documentation: https://packages.debian.org/trixie/ruby-rmagick
- Licenses: mit
- Latest release: 6.0.1-3 (published 4 months ago)
- Last Synced: 2026-03-13T20:11:47.239Z (3 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-rmagick
- Homepage: https://github.com/rmagick/rmagick
- Licenses: mit
- Latest release: 4.2.3-2build2 (published 4 months ago)
- Last Synced: 2026-03-13T17:37:07.739Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
Dependencies
- pry ~> 0.14 development
- rake-compiler ~> 1.0 development
- rspec ~> 3.8 development
- rspec_junit_formatter ~> 0.4.1 development
- rubocop ~> 0.81.0 development
- rubocop-performance ~> 1.5.2 development
- rubocop-rspec ~> 1.38.1 development
- simplecov ~> 0.16.1 development
- yard ~> 0.9.24 development
- actions/checkout v3 composite
- ruby/setup-ruby master composite
- ruby ${RUBY_VERSION} build
- prettier ^3.0.0 development
Score: 29.292463229876088