Sha256: e4b401139f9002af9253103d0059b5febc50edf0cb7dbfb39a6aa7a5b5f99fa4

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ar_transaction_changes/version'

Gem::Specification.new do |gem|
  gem.name          = "ar_transaction_changes"
  gem.version       = ArTransactionChanges::VERSION
  gem.authors       = ["Dylan Thacker-Smith"]
  gem.email         = ["Dylan.Smith@shopify.com"]
  gem.description   = %q{Solves the problem of trying to get all the changes to an object during a transaction in an after_commit callbacks.}
  gem.summary       = %q{Store transaction changes for active record objects}
  gem.homepage      = "https://github.com/dylanahsmith/ar_transaction_changes"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_dependency "activerecord", ">= 5.2.0"

  gem.add_development_dependency("rake")
  gem.add_development_dependency("mysql2")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ar_transaction_changes-1.1.5 ar_transaction_changes.gemspec