Project

snappier

0.0
A long-lived project that still receives updates
Audit trail for data by persisting full snapshots.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

Snappier

Imagine a dream where every moment your objects whisper their truths into the ether—each change a shimmer in time, gently bottled and sealed. Snappier is the archivist of that dream: a watchful spirit that captures the essence of Ruby objects, encasing their state in crystalline snapshots. Through enchanted serializers and portals like S3, their stories are preserved across realms. You shape the ritual—what is seen, how it's told, where it rests—yet Snappier hums quietly, faithfully, beneath it all.

Installation

bundle add snappier

If bundler is not being used to manage dependencies, install the gem by executing:

gem install snappier

Usage

Right, so you’ve decided to track your data like a proper psycho—every twist, every turn, every bloody mutation. You take Snappier, slap it in your Gemfile like it owes you money, and set it up to watch your objects spill their guts. You tell it how to remember—JSON, YAML, dark magic—whatever. Then you point it somewhere to stash the loot: S3, disk, down the pub. When the time comes, you take the snapshot. Click. Another wee lie safely stored. Choose life. Choose history. Choose Snappier.

Call Snappier::Take.for(entity) in your application code and a snapshopt will be persisted via a sidekiq job (this specific dependency on sidekiq for async processing may be abstracted later).

You may call this in an active record model callback (like after_save) or anywhere else in your application code.

There is no specific dependency on active record but the methods attributes, previously_new_record? and destroyed? are used by default (the latter two deciding if snapshot is related to create/delete otherwise defaulting to update).

To attribute changes to a specific user, call Snappier::Who.current = "<current user description>" and that information will be persisted with any subsequent snapshots. In rails, you may set this in a before_action method to capture a description of the current user - this setting exists only in the current thread.

By default snapshots are persisted to tmp/snappier. You can instead persist to S3 using the snappier-aws_s3 extension gem and the following configuration when your application starts up:

persistence = Snappier::AwsS3::Persistence.new(
  region: aws_region,
  bucket_name: bucket_name,
  credentials: aws_credentials,
)
Snappier::Registry.register_persistence(persistence)

By default, snapshot state is persisted by calling record.attributes, if you want to persist more or less information then you can create a module and register it when your application starts up:

module OrderSnapshot
  def self.snap(order)
    order.attributes.without(:created_at, :updated_at).tap do |attributes|
      attributes["line_items"] = order.line_items.map { |line_item| line_item.attributes }
    end
  end
end

Snappier::Registry.register(
  "Order" => "OrderSnapshot"
)

It is possible to replay the snapshots for a specific record which will calculate any change for presentation in a UI:

Snappier::Replay.for(
  type: Order,
  id: "1"
) { |change| pp change }

Development

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

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 the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/markryall/snappier. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

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

Code of Conduct

Everyone interacting in the Snappier project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.