Socket
Socket
Sign inDemoInstall

activerecord_with_progress

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

activerecord_with_progress


Version published
Maintainers
2
Created
Source

ActiverecordWithProgress

Similar to other gems that provide progress bars for Enumerable, this gem provides a progress bar for ActiveRecord relations. We use it for Rake tasks, migrations, and console commands. Maybe it's useful to you, too.

Installation

Add this line to your application's Gemfile:

gem 'activerecord_with_progress', github: 'deseretbook/activerecord_with_progress'

And then execute:

$ bundle

Usage

Provides _with_progress wrappers (via method_missing) for several common ActiveRecord iteration methods. They should have, but are not guaranteed to have, the same memory usage, computation requirements, and access patterns as the methods they wrap.

SomeModel.all.each_with_progress do |record|
  # Do something with the record
end

SomeModel.all.find_each_with_progress do |record|
  # ...
end

SomeModel.all.each_with_index_and_progress do |record, index|
  # ...
end

SomeModel.where(condition: true).each_with_index_and_progress do |record, index|
  # ...
end

mapped = SomeModel.all.map_with_progress do |record|
  # ...
end

There's an option to catch errors and return them in a second return value:

# Returns the #each return value, and a Hash mapping failed records to exceptions
_, errors = SomeModel.all.each_with_progress(handle_errors: true) do |record|
  raise 'Handled'
end

# Returns the map with nil for errors, and a Hash with exceptions.
mapped, errors = SomeModel.where(some: 'condition').map_with_progress(handle_errors: true) do |record|
  raise 'Nil in the map'
end

The find_in_batches method is a little bit tricker to work with:

# Need to override :total; I would use #find_each_with_progress instead.
query = SomeModel.where(query: 'parameters')
query.find_in_batches_with_progress(batch_size: 5, total: query.count / 5 + !) do |batch| puts batch.size end

You can change the progress bar format from the colorful default. See the docs for ruby-progressbar for format details.

ActiverecordWithProgress.progress_format = 'a ruby-progressbar format string'

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

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.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/deseretbook/activerecord_with_progress.

License

The gem is available as open source under the terms of the MIT License.

This independent gem is not an official part of or endorsed add-on for ActiveRecord.

FAQs

Package last updated on 16 Mar 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc