gindex 0.4.0 → 0.5.0

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: 6ce9d396994cebf96b83e64f0ca9a33f37f90d6a5db05805095e453d4821699c
4
- data.tar.gz: 07c2f418fa7ff7191f14131a4e69aaa6ed521e6bc81c73099aa7ce4c48bcf0cf
3
+ metadata.gz: c64f20b9ea7044d9c87cc2895a5838ea5998604a5a1842b3e4b6c7147df05ce0
4
+ data.tar.gz: 9a98714495b0039df232d104832147e83b8057322ba698231a9eb7e4ed08b4d8
5
5
  SHA512:
6
- metadata.gz: 9dda8a7e6c2ffe6ccca95b867d99c976cf7e5f43228b0d9072214e56a55146eaa524f6f429c9be1e20f3597309c37cbaac0893ba8e024fbd82a85d1fb1030ca0
7
- data.tar.gz: 2d65af7aae71aa48b313ca8e4a9bc33671b53f3e8e4a96ba37049030a5d7b8fc784f8c956f0748be9b6af5d77795e782b4d435eb2d289ea93192573f7fbae5e6
6
+ metadata.gz: b520e49b028d7cfb1e48961cc801db0ca6a2868eab95601088a04bc772aafab73aa038716c790a565bb8981a09be51ffece6b331ff971f1961da6f7c8d9092e0
7
+ data.tar.gz: 3f7029f4d83bb881ca7e40371d33e635ca8a035d94fc34a8f006f900e9cc023f3ee8e9f8bc073dc86c8fead8a5c865c44410d68770996a778e48c012077c7c46
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.5.0 (2025-05-04)
2
+
3
+ - Dropped support for Ruby < 3.2 and Rails < 7.1
4
+
1
5
  ## 0.4.0 (2023-07-02)
2
6
 
3
7
  - Dropped support for Ruby < 3 and Rails < 6.1
@@ -15,3 +19,11 @@
15
19
  ## 0.1.2 (2018-03-22)
16
20
 
17
21
  - Added support for Rails 5
22
+
23
+ ## 0.1.1 (2015-07-16)
24
+
25
+ - Moved generators to index directory
26
+
27
+ ## 0.1.0 (2015-07-16)
28
+
29
+ - First release
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015-2023 Andrew Kane
1
+ Copyright (c) 2015-2025 Andrew Kane
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
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)
5
+ [![Build Status](https://github.com/ankane/gindex/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/gindex/actions)
6
6
 
7
7
  ## Installation
8
8
 
@@ -21,7 +21,7 @@ rails g index users email
21
21
  generates:
22
22
 
23
23
  ```ruby
24
- class AddIndexOnEmailToUsers < ActiveRecord::Migration[7.0]
24
+ class AddIndexOnEmailToUsers < ActiveRecord::Migration[8.0]
25
25
  disable_ddl_transaction!
26
26
 
27
27
  def change
@@ -36,10 +36,6 @@ Also works with multi-column indexes
36
36
  rails g index deliveries store_id delivered_at
37
37
  ```
38
38
 
39
- ## TODO
40
-
41
- - add `:name` option to long index names
42
-
43
39
  ## History
44
40
 
45
41
  View the [changelog](https://github.com/ankane/gindex/blob/master/CHANGELOG.md)
@@ -59,4 +55,5 @@ To get started with development:
59
55
  git clone https://github.com/ankane/gindex.git
60
56
  cd gindex
61
57
  bundle install
58
+ bundle exec rake test
62
59
  ```
@@ -1,3 +1,3 @@
1
1
  module Gindex
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gindex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-07-02 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: railties
@@ -16,15 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '6.1'
18
+ version: '7.1'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '6.1'
27
- description:
25
+ version: '7.1'
28
26
  email: andrew@ankane.org
29
27
  executables: []
30
28
  extensions: []
@@ -41,7 +39,6 @@ homepage: https://github.com/ankane/gindex
41
39
  licenses:
42
40
  - MIT
43
41
  metadata: {}
44
- post_install_message:
45
42
  rdoc_options: []
46
43
  require_paths:
47
44
  - lib
@@ -49,15 +46,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
49
46
  requirements:
50
47
  - - ">="
51
48
  - !ruby/object:Gem::Version
52
- version: '3'
49
+ version: '3.2'
53
50
  required_rubygems_version: !ruby/object:Gem::Requirement
54
51
  requirements:
55
52
  - - ">="
56
53
  - !ruby/object:Gem::Version
57
54
  version: '0'
58
55
  requirements: []
59
- rubygems_version: 3.4.10
60
- signing_key:
56
+ rubygems_version: 3.6.7
61
57
  specification_version: 4
62
58
  summary: Instant concurrent indexes for Rails
63
59
  test_files: []