historiographer 1.4.1 → 1.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -1
- data/VERSION +1 -1
- data/historiographer.gemspec +3 -3
- data/lib/historiographer/safe.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43da85a2f89732b1e1990a15eb4f15f11b2e5e8d964562f4cea22e8b01097b19
|
4
|
+
data.tar.gz: 0c4c367212fd4bbdadf575d95913d459c771411b134e851c922796fc6ed6a9a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.4.3
|
data/historiographer.gemspec
CHANGED
@@ -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.
|
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.
|
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 = "
|
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 = [
|
data/lib/historiographer/safe.rb
CHANGED
@@ -25,7 +25,7 @@ module Historiographer
|
|
25
25
|
private
|
26
26
|
|
27
27
|
def history_user_absent_action
|
28
|
-
|
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.
|
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:
|
11
|
+
date: 2020-05-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|