model_info 0.0.7 → 0.0.8

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: 9c92fd753c984c611f1f6126f0b6665bc749f5c1
4
- data.tar.gz: 6fb95331e4a1c2180e8f297c07aaabd07b96f715
2
+ SHA256:
3
+ metadata.gz: 5246392322490ce9575c71a6c33bbf2892440d91a53a72855a796967fb7b9f31
4
+ data.tar.gz: d96067439db1995a3d4e7c5f35307cb0b8ed750f314e528e4ad00c56ca56d35e
5
5
  SHA512:
6
- metadata.gz: 3e9bb0441873c38e750a69f9b0ff0d180ec704d5846cad9a439296d5bdb461824c0374ecc4d8a3da03d114157d12e316558e72d7728d76a1f2e06ac4857c0a87
7
- data.tar.gz: da6e65c3fdb797f3d496f385a09ba7583f62fe7a08595521455aca483f427eb835eb258c8b48349b81340b2106a532b98efef0c5736f1517462279b4258f63c8
6
+ metadata.gz: e88f6e3e2eef8b8a06eb8afb3d4fef6643bbd0e057901274bc30a1350cf7166266a6cdabc6de72e07d05ee60d630ddea2d6cddf1240ffa62e2bd17425e77eef4
7
+ data.tar.gz: b45c787971ab44fca264d54403c4738e030325c182ec96c63fccf86556b456132bdda5d6fb9f0f4147647949349f723e416bb30936002defad33de8f255e9d29
@@ -0,0 +1,3 @@
1
+ //= link_directory ../stylesheets .css
2
+ //= link_tree ../../javascript .js
3
+ //= link_tree ../../../vendor/javascript .js
@@ -10,6 +10,4 @@
10
10
  // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
- //= require jquery
14
- //= require jquery_ujs
15
13
  //= require_tree .
@@ -4,7 +4,9 @@ module ModelInfo
4
4
  class Engine < ::Rails::Engine
5
5
  isolate_namespace ModelInfo
6
6
 
7
- initializer 'model_info', before: :load_config_initializers do |app|
7
+ initializer 'model_info', before: :load_config_initializers do |app|
8
+ app.config.assets.precompile += %w( model_info/application.js model_info/application.css)
9
+
8
10
  Rails.application.routes.append do
9
11
  mount ModelInfo::Engine, at: '/model_info'
10
12
  end
@@ -1,3 +1,3 @@
1
1
  module ModelInfo
2
- VERSION = '0.0.7'
2
+ VERSION = '0.0.8'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: model_info
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - nitanshu verma
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-29 00:00:00.000000000 Z
11
+ date: 2023-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.1'
19
+ version: 5.2.3
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: '4.1'
26
+ version: 5.2.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: kaminari
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.1'
33
+ version: 1.2.2
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.1'
40
+ version: 1.2.2
41
41
  description: ModelInfo provides the UI interface for the CRUD of all models (including
42
42
  engine's) and their associated models. It also enables the admin to download the
43
43
  CSV and JSON format data of all the Models and their associated Models.
@@ -50,14 +50,11 @@ files:
50
50
  - MIT-LICENSE
51
51
  - README.rdoc
52
52
  - Rakefile
53
+ - app/assets/config/model_info/manifest.js
53
54
  - app/assets/javascripts/model_info/application.js
54
- - app/assets/javascripts/model_info/associations.js
55
- - app/assets/javascripts/model_info/fetch_model_infos.js
56
55
  - app/assets/stylesheets/model_info/application.css
57
- - app/assets/stylesheets/model_info/associations.css
58
56
  - app/assets/stylesheets/model_info/bootstrap.css
59
57
  - app/assets/stylesheets/model_info/bootstrap.min.css
60
- - app/assets/stylesheets/model_info/fetch_model_infos.css
61
58
  - app/assets/stylesheets/model_info/sytle.css.scss
62
59
  - app/controllers/model_info/application_controller.rb
63
60
  - app/controllers/model_info/associations_controller.rb
@@ -89,7 +86,7 @@ homepage: https://github.com/nitanshu/model_info
89
86
  licenses:
90
87
  - MIT
91
88
  metadata: {}
92
- post_install_message:
89
+ post_install_message:
93
90
  rdoc_options: []
94
91
  require_paths:
95
92
  - lib
@@ -104,9 +101,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
101
  - !ruby/object:Gem::Version
105
102
  version: '0'
106
103
  requirements: []
107
- rubyforge_project:
108
- rubygems_version: 2.4.6
109
- signing_key:
104
+ rubygems_version: 3.2.32
105
+ signing_key:
110
106
  specification_version: 4
111
107
  summary: ModelInfo provides the UI interface for the CRUD of all models (including
112
108
  engine's) and their associated models.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */