lib/logidze.rb in logidze-0.0.1 vs lib/logidze.rb in logidze-0.1.0

- old
+ new

@@ -1,5 +1,25 @@ +# frozen_string_literal: true require "logidze/version" +# Logidze provides tools for adding in-table JSON-based audit to DB tables +# and ActiveRecord extensions to work with changes history. module Logidze - # Your code goes here... + require 'logidze/history' + require 'logidze/model' + require 'logidze/has_logidze' + + require 'logidze/engine' if defined?(Rails) + + # Temporary disable DB triggers. + # + # @example + # Logidze.without_logging { Post.update_all(active: true) } + def self.without_logging + ActiveRecord::Base.transaction do + ActiveRecord::Base.connection.execute "SET LOCAL logidze.disabled = 'on';" + res = yield + ActiveRecord::Base.connection.execute "SET LOCAL logidze.disabled = DEFAULT;" + res + end + end end