historiographer 1.4.1 → 1.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb038b8ee2ab30ab82ee72f3191328bf6dfbd895f1052d7023e75ccc4beb7189
4
- data.tar.gz: 73e36c7f2576b916666ca4ecf43e8041f098faf6e0a8ed003db37f78b1515e48
3
+ metadata.gz: 43da85a2f89732b1e1990a15eb4f15f11b2e5e8d964562f4cea22e8b01097b19
4
+ data.tar.gz: 0c4c367212fd4bbdadf575d95913d459c771411b134e851c922796fc6ed6a9a7
5
5
  SHA512:
6
- metadata.gz: 06b64598ac55f5c011f3e58bca504eaf270430b913e2eb00e74234d19b6601aeed4f4de75463d15a74e979effb3dcc0062f26273f46e021145a21eb9c7357ac9
7
- data.tar.gz: c619f5a42db6e3fc8521445ed8c0d8517ce211591ffe440fdd08507e776b0e45b9dbbfa5962f11073c68bdad26a33593c538f4817ee2e2b48dd494eb5f162403
6
+ metadata.gz: 43279052d600ace0253542757599dc9a118417ba60d2f1dce3b53148093382c0826381511046d71ea044c9cf66d95f559023f24fb5115267893bd0862265d274
7
+ data.tar.gz: 684aeaf18ca126dc138345d9b07a67cfe9cbc5cb287d5ed529028781696054e36544bd0d6d32c0ea2413b1f9687261ed44b694a2aa87752948cfd43a15b96ecf
data/README.md CHANGED
@@ -198,7 +198,7 @@ require "historiographer/postgres_migration"
198
198
  class CreatePostHistories < ActiveRecord::Migration
199
199
  def change
200
200
  create_table :post_histories do |t|
201
- t.histories, index_names: {
201
+ t.histories index_names: {
202
202
  title: "my_index_name",
203
203
  [:compound, :index] => "my_compound_index_name"
204
204
  }
@@ -207,6 +207,15 @@ class CreatePostHistories < ActiveRecord::Migration
207
207
  end
208
208
  ```
209
209
 
210
+ == Mysql Install
211
+
212
+ For contributors on OSX, you may have difficulty installing mysql:
213
+
214
+ ```
215
+ gem install mysql2 -v '0.4.10' --source 'https://rubygems.org/' -- --with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include
216
+ ```
217
+
218
+
210
219
  == Copyright
211
220
 
212
221
  Copyright (c) 2016-2020 brettshollenberger. See LICENSE.txt for
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.1
1
+ 1.4.3
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: historiographer 1.4.1 ruby lib
5
+ # stub: historiographer 1.4.3 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "historiographer".freeze
9
- s.version = "1.4.1"
9
+ s.version = "1.4.3"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["brettshollenberger".freeze]
14
- s.date = "2019-11-11"
14
+ s.date = "2020-05-04"
15
15
  s.description = "Creates separate tables for each history table".freeze
16
16
  s.email = "brett.shollenberger@gmail.com".freeze
17
17
  s.extra_rdoc_files = [
@@ -25,7 +25,7 @@ module Historiographer
25
25
  private
26
26
 
27
27
  def history_user_absent_action
28
- Rollbar.error("history_user_id must be passed in order to save record with histories! If you are in a context with no history_user_id, explicitly call #save_without_history")
28
+ nil
29
29
  end
30
30
  end
31
31
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: historiographer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - brettshollenberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-11 00:00:00.000000000 Z
11
+ date: 2020-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord