gindex 0.3.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: bdb3b0d5be3d4f72b4e2cd9c0e3469bd96980b4e1909f14bc755442d68131920
4
- data.tar.gz: 551566c8043baae73b1de307a09b67759b10aac746776132c693619c450c1cb2
3
+ metadata.gz: c64f20b9ea7044d9c87cc2895a5838ea5998604a5a1842b3e4b6c7147df05ce0
4
+ data.tar.gz: 9a98714495b0039df232d104832147e83b8057322ba698231a9eb7e4ed08b4d8
5
5
  SHA512:
6
- metadata.gz: bed474abae726b41b17f0d8b773ab941a3ef43adf1223fc2d2ea39c0a66d64759746cffd615cbfd942cf99d95a909a2a2cd08f47cfa1b887653ab000633c7d58
7
- data.tar.gz: 27ce4c182bdaa83d575267048beb782481e048cdb0e42516deaa804d891015171e5f5ac77d3e1afe464e8806801dc5f0d3964616744f700612e6c83d07144499
6
+ metadata.gz: b520e49b028d7cfb1e48961cc801db0ca6a2868eab95601088a04bc772aafab73aa038716c790a565bb8981a09be51ffece6b331ff971f1961da6f7c8d9092e0
7
+ data.tar.gz: 3f7029f4d83bb881ca7e40371d33e635ca8a035d94fc34a8f006f900e9cc023f3ee8e9f8bc073dc86c8fead8a5c865c44410d68770996a778e48c012077c7c46
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.5.0 (2025-05-04)
2
+
3
+ - Dropped support for Ruby < 3.2 and Rails < 7.1
4
+
5
+ ## 0.4.0 (2023-07-02)
6
+
7
+ - Dropped support for Ruby < 3 and Rails < 6.1
8
+
1
9
  ## 0.3.0 (2022-01-10)
2
10
 
3
11
  - Dropped support for Ruby < 2.6 and Rails < 5.2
@@ -11,3 +19,11 @@
11
19
  ## 0.1.2 (2018-03-22)
12
20
 
13
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-2022 Andrew Kane
1
+ Copyright (c) 2015-2025 Andrew Kane
2
2
 
3
3
  MIT License
4
4
 
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/actions/workflows/build.yml/badge.svg)](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[6.1]
24
+ class AddIndexOnEmailToUsers < ActiveRecord::Migration[8.0]
23
25
  disable_ddl_transaction!
24
26
 
25
27
  def change
@@ -34,10 +36,6 @@ Also works with multi-column indexes
34
36
  rails g index deliveries store_id delivered_at
35
37
  ```
36
38
 
37
- ## TODO
38
-
39
- - add `:name` option to long index names
40
-
41
39
  ## History
42
40
 
43
41
  View the [changelog](https://github.com/ankane/gindex/blob/master/CHANGELOG.md)
@@ -57,4 +55,5 @@ To get started with development:
57
55
  git clone https://github.com/ankane/gindex.git
58
56
  cd gindex
59
57
  bundle install
58
+ bundle exec rake test
60
59
  ```
@@ -1,3 +1,3 @@
1
1
  module Gindex
2
- VERSION = "0.3.0"
2
+ VERSION = "0.5.0"
3
3
  end
data/lib/gindex.rb CHANGED
@@ -1 +1 @@
1
- require "gindex/version"
1
+ require_relative "gindex/version"
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.3.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: 2022-01-11 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: '5.2'
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: '5.2'
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: '2.6'
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.3.3
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: []