rails-image-post-solution 0.1.5 → 0.1.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: 53bedd05012e7de53fb923d5f59bfad301425de29b0878403c0b2567bfaddef5
4
- data.tar.gz: d48a1d5c4f4ad3df39131b85b55ab47c4029c5cf44b29d16ae502b5ddd6039ed
3
+ metadata.gz: 9509b647fc4754ab678ba3ec61d981770dd74a3a004d101b5199f63b0b25ad47
4
+ data.tar.gz: 3255a0da4ea9db4b32560abfac145a5b018ab367d830550c84b92a4b805e60c3
5
5
  SHA512:
6
- metadata.gz: b6afda9c3e23182b67be36065bc91cc5208d5f43bcd60196f10565a9ae8f9fc42242bd44939fdc21474b9951a4fd856c528575247132b66c02e7e698923b7555
7
- data.tar.gz: b021855c6bc5aaaba5059914e47641dca0bf3a8c9453fb20adf243d383553f5537b8a01993cc97bcfc9f2604c0a707c77ebaed421c555211fd9ec70d141eae67
6
+ metadata.gz: 363365fb52b8b43344d2d2850ca13f684bc401bb3991aac6da46335213a201e9b57087a3ef4f1b0daaee0fe1bbb8127955cb6fe43f2edc4234f7bb605c5fc473
7
+ data.tar.gz: b0a6e9a4bfc78842ad43ee56856985a60943d9c25d90bed2b885b1f241bb7290374d20dbde13725ccf99c5ec07b67632c767565386348a8e6f8da170db4d4357
@@ -20,29 +20,14 @@ module RailsImagePostSolution
20
20
  end
21
21
 
22
22
  # Make engine route helpers available in the main application
23
- initializer "rails_image_post_solution.route_helpers" do
24
- config.after_initialize do
25
- Rails.application.routes.url_helpers.class_eval do
26
- # Delegate common route helpers to the engine
27
- delegate :admin_image_reports_path, :admin_image_reports_url,
28
- :admin_image_report_path, :admin_image_report_url,
29
- :confirm_admin_image_report_path, :confirm_admin_image_report_url,
30
- :dismiss_admin_image_report_path, :dismiss_admin_image_report_url,
31
- :admin_users_path, :admin_users_url,
32
- :admin_user_path, :admin_user_url,
33
- :suspend_admin_user_path, :suspend_admin_user_url,
34
- :unsuspend_admin_user_path, :unsuspend_admin_user_url,
35
- :ban_admin_user_path, :ban_admin_user_url,
36
- :unban_admin_user_path, :unban_admin_user_url,
37
- :admin_frozen_posts_path, :admin_frozen_posts_url,
38
- :image_reports_path, :image_reports_url,
39
- to: RailsImagePostSolution::Engine.routes.url_helpers
40
- end
23
+ initializer "rails_image_post_solution.helpers" do
24
+ ActiveSupport.on_load(:action_controller_base) do
25
+ include RailsImagePostSolution::Engine.routes.url_helpers
26
+ helper RailsImagePostSolution::Engine.routes.url_helpers
27
+ end
41
28
 
42
- # Also make helpers available in controllers and views
43
- ActiveSupport.on_load(:action_controller_base) do
44
- helper RailsImagePostSolution::Engine.routes.url_helpers
45
- end
29
+ ActiveSupport.on_load(:action_view) do
30
+ include RailsImagePostSolution::Engine.routes.url_helpers
46
31
  end
47
32
  end
48
33
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsImagePostSolution
4
- VERSION = "0.1.5"
4
+ VERSION = "0.1.6"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-image-post-solution
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - dhq_boiler