gindex 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/LICENSE.txt +1 -1
- data/README.md +3 -1
- data/lib/gindex/version.rb +1 -1
- data/lib/gindex.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ce9d396994cebf96b83e64f0ca9a33f37f90d6a5db05805095e453d4821699c
|
4
|
+
data.tar.gz: 07c2f418fa7ff7191f14131a4e69aaa6ed521e6bc81c73099aa7ce4c48bcf0cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dda8a7e6c2ffe6ccca95b867d99c976cf7e5f43228b0d9072214e56a55146eaa524f6f429c9be1e20f3597309c37cbaac0893ba8e024fbd82a85d1fb1030ca0
|
7
|
+
data.tar.gz: 2d65af7aae71aa48b313ca8e4a9bc33671b53f3e8e4a96ba37049030a5d7b8fc784f8c956f0748be9b6af5d77795e782b4d435eb2d289ea93192573f7fbae5e6
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
:speedboat: Instant **concurrent** index migrations for Rails
|
4
4
|
|
5
|
+
[![Build Status](https://github.com/ankane/gindex/workflows/build/badge.svg?branch=master)](https://github.com/ankane/gindex/actions)
|
6
|
+
|
5
7
|
## Installation
|
6
8
|
|
7
9
|
Add this line to your application’s Gemfile:
|
@@ -19,7 +21,7 @@ rails g index users email
|
|
19
21
|
generates:
|
20
22
|
|
21
23
|
```ruby
|
22
|
-
class AddIndexOnEmailToUsers < ActiveRecord::Migration[
|
24
|
+
class AddIndexOnEmailToUsers < ActiveRecord::Migration[7.0]
|
23
25
|
disable_ddl_transaction!
|
24
26
|
|
25
27
|
def change
|
data/lib/gindex/version.rb
CHANGED
data/lib/gindex.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
require_relative "gindex/version"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gindex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '6.1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '6.1'
|
27
27
|
description:
|
28
28
|
email: andrew@ankane.org
|
29
29
|
executables: []
|
@@ -49,14 +49,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
49
|
requirements:
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: '
|
52
|
+
version: '3'
|
53
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
55
|
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: '0'
|
58
58
|
requirements: []
|
59
|
-
rubygems_version: 3.
|
59
|
+
rubygems_version: 3.4.10
|
60
60
|
signing_key:
|
61
61
|
specification_version: 4
|
62
62
|
summary: Instant concurrent indexes for Rails
|