Sha256: 25f60cd16098d7cc2409c1f857d6c023855780f5c3dd7376bf06fdb3e9beaac1
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 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", ">= 3.0", "< 5.0" gem.add_development_dependency("rake") gem.add_development_dependency("mysql2") gem.add_development_dependency("appraisal") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ar_transaction_changes-1.0.3 | ar_transaction_changes.gemspec |