jinda 0.7.5.5 → 0.7.6

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: 0442f608847f0b56a2c0e6246e48c077e06a415c3ef8a47f11155fbd4874347d
4
- data.tar.gz: 42f8f2c0014bc9f01ba2fa3664f2bfd6820565f70b7168f0f77e14738d4a24df
3
+ metadata.gz: 7bf6e82e9caf616289e1439a920f3ac338f5102f048f87bf1df98bd173e7142f
4
+ data.tar.gz: daa518676ade873edb56c5a6b6b3866d834f3574f59a16dfe96c4550f4268291
5
5
  SHA512:
6
- metadata.gz: 5e30f45bf0f5109339bcc497b4f4edd21965abc035f9504ec5b3e236d886f48b26011f5837cfeb31c8faa953dc39e372198ee851c7e0b68dd18c61dc143b4a68
7
- data.tar.gz: fadd8a7d31eb8003f2aed4f8bde3306a691d4524b3e133a11c91d430d1328d901e26d66680a7fc1be1eb173a1ecdc60a0eb42d3517845d1d483e2c10b95b3f4f
6
+ metadata.gz: 0017da27ccf27991a4bcb9c152bf436998ee7f8005bf6b879c31736fa78d8948602e1b7db437e994976b1366d27d75b8ca6d48fa20177c88dc6873116d1a4bc7
7
+ data.tar.gz: 202030be25e6486a77f98aa7782777f6c10e4504d7872d6dec6aee790ef4a62d5542954ed5941a7efe0098ba04518cda748ecf4cb0ad3754431d31ae198fc9ed
data/lib/jinda/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jinda
2
- VERSION = "0.7.5.5"
2
+ VERSION = "0.7.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jinda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prateep Kul
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2021-03-25 00:00:00.000000000 Z
12
+ date: 2021-09-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -362,7 +362,6 @@ files:
362
362
  - lib/generators/jinda/templates/app/views/users/pwd/enter.html.erb
363
363
  - lib/generators/jinda/templates/app/views/users/user/enter_user.html.erb
364
364
  - lib/generators/jinda/templates/config/cloudinary.yml
365
- - lib/generators/jinda/templates/config/initializers/fix_mongoid_generator.rb
366
365
  - lib/generators/jinda/templates/config/mongoid.yml-docker
367
366
  - lib/generators/jinda/templates/config/mongoid.yml-localhost
368
367
  - lib/generators/jinda/templates/db/seeds.rb
@@ -489,7 +488,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
489
488
  - !ruby/object:Gem::Version
490
489
  version: '0'
491
490
  requirements: []
492
- rubygems_version: 3.2.3
491
+ rubygems_version: 3.2.26
493
492
  signing_key:
494
493
  specification_version: 4
495
494
  summary: 'Rails workflow from mind map: Freemind'
@@ -1,14 +0,0 @@
1
- require 'rails/generators'
2
- require 'rails/generators/mongoid/config/config_generator'
3
-
4
- if Gem::Version.new(Mongoid::VERSION) >= Gem::Version.new('7.3.0')
5
- warn("You may need not this file: #{__FILE__}\nAfter https://github.com/mongodb/mongoid/pull/4953 is released.")
6
- end
7
- Mongoid::Generators::ConfigGenerator.class_eval do
8
- def app_name
9
- # Rails::Application.subclasses.first.parent.to_s.underscore
10
- # No more Module#parent
11
- # See https://github.com/rails/rails/commit/167b4153cac0069a21e0bb9689cb16f34f6abbaa
12
- Rails::Application.subclasses.first.module_parent_name.underscore
13
- end
14
- end