gindex 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: aee2df8c223d9f38ab1da97c9d1945c664da597a
4
- data.tar.gz: 005c75639a52baf00ad3d68f6c4908cd02b23666
2
+ SHA256:
3
+ metadata.gz: 35cce2217af3e0865848afdd61cb2a54ff7970ec47236aa577e0b50701532869
4
+ data.tar.gz: d8b1640375ff1a053d49d6bc6c766dc8f68befd0f5fddd36308622d2c92cae5a
5
5
  SHA512:
6
- metadata.gz: 789e48f2d11bb843b33327f0e63b45a3a8b8001da1a68b5164b32cae7fb0c4e52f76cf7bc9200fd37906a0c12698674d96926decf94706b46b6f4e31b8dcde58
7
- data.tar.gz: 29b19a25733e887740c4985c57874512ed3a37ba33952380056b61ee1ff05ed3072d9dedd8bdd8d48c46d8ee9bf526530a934f35781f77c80e1da33deb8d7452
6
+ metadata.gz: ca3037522cf1b9dfa8d02fad92f781ceab8cc8d120bfb769bc7e373544b06c706385823f9f49c83759844a259010edffeafd3fbd86aff5b9c86a3b3704465b38
7
+ data.tar.gz: 9a41396ce868f949d39c99c93372eabb9c85eeb3572dbc2303d3b97eb1ae352309004610f0c5e298911bc267c33437879c376c96bd39968c4fe9ecf40b90680f
@@ -1,3 +1,9 @@
1
- ## 0.1.2
1
+ ## 0.2.0 (2019-12-20)
2
+
3
+ - Added support for custom migrations path
4
+ - Improved migration for single column
5
+ - Dropped support for Rails 4.2
6
+
7
+ ## 0.1.2 (2018-03-22)
2
8
 
3
9
  - Added support for Rails 5
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015-2019 Andrew Kane
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -2,13 +2,25 @@
2
2
 
3
3
  :speedboat: Instant **concurrent** index migrations for Rails
4
4
 
5
- ```ruby
5
+ ```sh
6
6
  rails g index users email
7
7
  ```
8
8
 
9
- Also works with multi-column indexes
9
+ generates:
10
10
 
11
11
  ```ruby
12
+ class AddIndexOnEmailToUsers < ActiveRecord::Migration[6.0]
13
+ disable_ddl_transaction!
14
+
15
+ def change
16
+ add_index :users, [:email], algorithm: :concurrently
17
+ end
18
+ end
19
+ ```
20
+
21
+ Also works with multi-column indexes
22
+
23
+ ```sh
12
24
  rails g index deliveries store_id delivered_at
13
25
  ```
14
26
 
@@ -1,30 +1,30 @@
1
- require "rails/generators/migration"
1
+ require "rails/generators/active_record"
2
2
 
3
3
  class IndexGenerator < Rails::Generators::Base
4
- include Rails::Generators::Migration
5
-
6
- source_root File.expand_path("../templates", __FILE__)
4
+ include ActiveRecord::Generators::Migration
5
+ source_root File.join(__dir__, "templates")
7
6
 
8
7
  argument :table, type: :string
9
8
  argument :columns, type: :array
10
9
 
11
- # Implement the required interface for Rails::Generators::Migration.
12
- def self.next_migration_number(dirname) #:nodoc:
13
- next_migration_number = current_migration_number(dirname) + 1
14
- if ::ActiveRecord::Base.timestamped_migrations
15
- [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max
16
- else
17
- "%.3d" % next_migration_number
18
- end
19
- end
20
-
21
10
  def copy_migration
22
- migration_template "index_migration.rb", "db/migrate/add_index_on_#{columns.join('_and_')}_to_#{table}.rb"
11
+ migrate_path = ActiveRecord::Tasks::DatabaseTasks.migrations_paths.first
12
+ migration_template "index_migration.rb", "#{migrate_path}/add_index_on_#{columns.join('_and_')}_to_#{table}.rb"
23
13
  end
24
14
 
25
15
  def migration_version
26
- if ActiveRecord::VERSION::MAJOR >= 5
27
- "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
16
+ "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
17
+ end
18
+
19
+ def table_str
20
+ table.to_sym.inspect
21
+ end
22
+
23
+ def column_str
24
+ if columns.size == 1
25
+ columns.first.to_sym.inspect
26
+ else
27
+ columns.map(&:to_sym).inspect
28
28
  end
29
29
  end
30
30
  end
@@ -2,6 +2,6 @@ class <%= migration_class_name %> < ActiveRecord::Migration<%= migration_version
2
2
  disable_ddl_transaction!
3
3
 
4
4
  def change
5
- add_index <%= table.to_sym.inspect %>, <%= columns.map(&:to_sym).inspect %>, algorithm: :concurrently
5
+ add_index <%= table_str %>, <%= column_str %>, algorithm: :concurrently
6
6
  end
7
7
  end
@@ -1,3 +1,3 @@
1
1
  module Gindex
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
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.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-22 00:00:00.000000000 Z
11
+ date: 2019-12-20 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: '0'
19
+ version: '5'
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: '0'
26
+ version: '5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -53,24 +53,21 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description:
56
- email:
57
- - andrew@chartkick.com
56
+ email: andrew@chartkick.com
58
57
  executables: []
59
58
  extensions: []
60
59
  extra_rdoc_files: []
61
60
  files:
62
- - ".gitignore"
63
61
  - CHANGELOG.md
64
- - Gemfile
62
+ - LICENSE.txt
65
63
  - README.md
66
- - Rakefile
67
- - gindex.gemspec
68
64
  - lib/generators/index/index_generator.rb
69
- - lib/generators/index/templates/index_migration.rb
65
+ - lib/generators/index/templates/index_migration.rb.tt
70
66
  - lib/gindex.rb
71
67
  - lib/gindex/version.rb
72
68
  homepage: https://github.com/ankane/gindex
73
- licenses: []
69
+ licenses:
70
+ - MIT
74
71
  metadata: {}
75
72
  post_install_message:
76
73
  rdoc_options: []
@@ -80,15 +77,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
80
77
  requirements:
81
78
  - - ">="
82
79
  - !ruby/object:Gem::Version
83
- version: '0'
80
+ version: '2.4'
84
81
  required_rubygems_version: !ruby/object:Gem::Requirement
85
82
  requirements:
86
83
  - - ">="
87
84
  - !ruby/object:Gem::Version
88
85
  version: '0'
89
86
  requirements: []
90
- rubyforge_project:
91
- rubygems_version: 2.6.13
87
+ rubygems_version: 3.0.3
92
88
  signing_key:
93
89
  specification_version: 4
94
90
  summary: Instant concurrent indexes for Rails
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in gindex.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,24 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "gindex/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "gindex"
8
- spec.version = Gindex::VERSION
9
- spec.authors = ["Andrew Kane"]
10
- spec.email = ["andrew@chartkick.com"]
11
-
12
- spec.summary = "Instant concurrent indexes for Rails"
13
- spec.homepage = "https://github.com/ankane/gindex"
14
-
15
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
- spec.bindir = "exe"
17
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
- spec.require_paths = ["lib"]
19
-
20
- spec.add_dependency "railties"
21
-
22
- spec.add_development_dependency "bundler"
23
- spec.add_development_dependency "rake"
24
- end