
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Better Errors is a gem that provides a very useful error page for Ruby web/API applications. This gem adds Pry support to Better Errors.
This gem is intended to allow us to extract Pry support from the BetterErrors project itself. Through at least v2.4.0, Pry support is included in the project directly. Including this gem will replace the built-in support, and it is functionally the same at this time.
BetterErrors supports a very large number of possible configurations. It supports Rails and non-Rails, with binding_of_caller and without, and all of the major versions of the Ruby interpreter.
All of these combinations should be tested. Currently BetterErrors has 14 different test gemfiles, each running on 6 different versions of Ruby. And these are not comprehensive.
Because the BetterErrors gem needs to support each of these configurations, it can't specify any of its optional dependencies' required versions. This makes BetterErrors difficult to maintain, and difficult for application maintainers to keep it and its dependencies up-to-date.
(For example, for several years, the newer version of binding_of_caller
did not work correctly, so applications that used BetterErrors were given instructions to lock binding_of_caller
to a specific version.
This is because BetterErrors could not specify the binding_of_caller
version in its own gemspec, since it is optional.
Once the issue was fixed, application maintainers had no way to know that it was possible to remove the fixed version.)
The solution is to extract optional functionality that depends on additional gems from the BetterErrors project, and place it in a project like this one.
Add this to your application's Gemfile
, in the development
group, just like better_errors:
group :development do
gem 'better_errors'
gem 'better_errors-pry'
end
You need to activate pry in the application (for example, in config/environments/development.rb
):
BetterErrors.use_pry!
It's important to keep this in the development group. See Better Errors for more information.
See Better Errors to get started.
When you see the Better Errors console, you can issue Pry-specific commands, such as ls
and cd
.
After checking out the repo, run bundle install
to install the basic dependencies.
You can run the tests with the most recent versions of Pry and Better Errors by running bundle exec rake
.
To run the tests against the other sets of dependencies, though, you will need to use Appraisal.
Run appraisal install
to run install the dependencies for each of the possible combinations.
Then you can run appraisal rake
to run all tests, or appraisal pry_0.09 rake
(for example) to only run the specs with Pry 0.09.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
On CI, the specs are run against each major release of Ruby in addition to each Appraisal gemfile.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that better_errors-pry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.