Sha256: 2fc110c8d6cef5c83daf2f8e7717749fe793a82ab805ee12f90873b4dbfaf48b
Contents?: true
Size: 1.03 KB
Versions: 3
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", ">= 4.2.4", "< 6.0" gem.add_development_dependency("rake") gem.add_development_dependency("mysql2") end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ar_transaction_changes-1.1.3 | ar_transaction_changes.gemspec |
ar_transaction_changes-1.1.2 | ar_transaction_changes.gemspec |
ar_transaction_changes-1.1.1 | ar_transaction_changes.gemspec |