rails_modular_migration 1.0.0 → 1.0.1

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: 076d34bfed46c020e9e98abb91378b146e386b833c0af0f31c9dd9a6c1461e90
4
- data.tar.gz: 0edc079db7d4d9b41ff0b05caf28565d49dd8f6baec9fe71a680e38f0d487019
3
+ metadata.gz: 14cdf0b15e579267fddd61571dba3e159429adeea249bb3824b4d8054ec8bce9
4
+ data.tar.gz: ff8b6bad739de1683558be54f805a6ccf65951552d7c733245f67b875386d535
5
5
  SHA512:
6
- metadata.gz: 21f04b40d20c433d83b261460448da9bee1fdd7cfd21a7748ef796f0a20dbb8c808a7d13185aa6d57745dc0844fe02decfa9f25b0097f5aebf13ff4d6e2298cc
7
- data.tar.gz: 455ef9bed89edda0bedfb4d841737c99a90c4002c1ca47a3b1dba13a3138c10972dc8e522f9e9f6dce422bf9e0517680e8b39f7d69eae8bc0e26fc8383d42b12
6
+ metadata.gz: c63a39e40208fc3b0b40a68b92657760dadafd80bd66807a9ed4f6e32a38f98ec80c0e62951eb751a92821e2935437ab64484bd18c4ff2a67eb4f36ed45794e4
7
+ data.tar.gz: 7919f4265af8307952265c0b8fce1fd268fc7059e673f615e402f36d7fd61dc8dad5e295a60ac84bebd5d2fcb334c6830e4a6007c86c7a491c7165204780b188
@@ -2,5 +2,5 @@ require 'rails/generators'
2
2
  require 'rails/generators/active_record'
3
3
  require 'rails/generators/active_record/model/model_generator'
4
4
  require 'rails/generators/active_record/migration/migration_generator'
5
- require 'modular_migration/active_record/generators/model_generator'
6
- require 'modular_migration/active_record/generators/migration_generator'
5
+ require 'rails_modular_migration/active_record/generators/model_generator'
6
+ require 'rails_modular_migration/active_record/generators/migration_generator'
@@ -0,0 +1,3 @@
1
+ module RailsModularMigration
2
+ VERSION = '1.0.1'
3
+ end
@@ -1,9 +1,9 @@
1
1
  $LOAD_PATH.push File.expand_path("../lib", __FILE__)
2
- require 'modular_migration/version'
2
+ require 'rails_modular_migration/version'
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "rails_modular_migration"
6
- s.version = ModularMigration::VERSION
6
+ s.version = RailsModularMigration::VERSION
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.author = ['Lijia Tong']
9
9
  s.email = ["user_tony@163.com"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_modular_migration
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lijia Tong
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-06 00:00:00.000000000 Z
11
+ date: 2021-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -37,11 +37,11 @@ files:
37
37
  - LICENSE
38
38
  - README.md
39
39
  - Rakefile
40
- - lib/modular_migration.rb
41
- - lib/modular_migration/active_record/generators/migration_generator.rb
42
- - lib/modular_migration/active_record/generators/model_generator.rb
43
- - lib/modular_migration/version.rb
44
- - modular_migration.gemspec
40
+ - lib/rails_modular_migration.rb
41
+ - lib/rails_modular_migration/active_record/generators/migration_generator.rb
42
+ - lib/rails_modular_migration/active_record/generators/model_generator.rb
43
+ - lib/rails_modular_migration/version.rb
44
+ - rails_modular_migration.gemspec
45
45
  homepage: https://github.com/user-tony/modular_migration
46
46
  licenses:
47
47
  - MIT
@@ -1,3 +0,0 @@
1
- module ModularMigration
2
- VERSION = '1.0.0'
3
- end