rails-image-post-solution 0.1.5 → 0.1.7

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: 5177474ff11773b95901978d5663140c9220f9264eb5069df3fd1a0d21135c4f
4
+ data.tar.gz: 9e4320b3daf678da0dd8981ca6d486c921fe03cb856b59dfe0b069c6fc0b77d8
5
5
  SHA512:
6
- metadata.gz: b6afda9c3e23182b67be36065bc91cc5208d5f43bcd60196f10565a9ae8f9fc42242bd44939fdc21474b9951a4fd856c528575247132b66c02e7e698923b7555
7
- data.tar.gz: b021855c6bc5aaaba5059914e47641dca0bf3a8c9453fb20adf243d383553f5537b8a01993cc97bcfc9f2604c0a707c77ebaed421c555211fd9ec70d141eae67
6
+ metadata.gz: dc7ed57192f84ab4506bece69cac84bed39853cd64231c4378941938531b5fcaf6bcad382d552b8ec8c04df4b6841b8e34f2bb4550b48c08865a2a399eebfc93
7
+ data.tar.gz: cca2b3a38545119616aef194c6e949901a7fe63d874aa398f0c3d939e0817cf09ff8007d52e0ef1bc4748921cd0b9d267b6f660acc046dc28e5e915f8d0b0f79
@@ -6,6 +6,19 @@ module RailsImagePostSolution
6
6
  class Engine < ::Rails::Engine
7
7
  isolate_namespace RailsImagePostSolution
8
8
 
9
+ # Explicitly set engine root
10
+ config.root = File.expand_path('../..', __dir__)
11
+
12
+ # Load routes when engine is initialized
13
+ config.after_initialize do
14
+ routes_path = RailsImagePostSolution::Engine.root.join("config", "routes.rb")
15
+ if File.exist?(routes_path)
16
+ RailsImagePostSolution::Engine.class_eval do
17
+ load routes_path
18
+ end
19
+ end
20
+ end
21
+
9
22
  config.generators do |g|
10
23
  g.test_framework :rspec
11
24
  g.fixture_replacement :factory_bot
@@ -20,29 +33,14 @@ module RailsImagePostSolution
20
33
  end
21
34
 
22
35
  # 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
36
+ initializer "rails_image_post_solution.helpers" do
37
+ ActiveSupport.on_load(:action_controller_base) do
38
+ include RailsImagePostSolution::Engine.routes.url_helpers
39
+ helper RailsImagePostSolution::Engine.routes.url_helpers
40
+ end
41
41
 
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
42
+ ActiveSupport.on_load(:action_view) do
43
+ include RailsImagePostSolution::Engine.routes.url_helpers
46
44
  end
47
45
  end
48
46
  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.7"
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.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - dhq_boiler