the_mechanic_2 0.1.0 → 0.1.2
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 +4 -4
- data/config/routes.rb +1 -0
- data/lib/the_mechanic_2/engine.rb +5 -5
- data/lib/the_mechanic_2/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e8e9bc35b1dab5caae5f8a52a5264d6859818e69fa7c88e3bbdb7f3d6465fcd
|
|
4
|
+
data.tar.gz: c7e0b86b7566b316b5ad5ff9f1194cf67f13706ba7aad4c35f7a0f3253c91b5e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2c7fddc2a3e50f9b61524aed923a273398a4082f1d7af4350665d93fe0e6effcffdfa095bc6302908209111ae030e826116e6d0ac8c4d0fc73a324b76cdc4eb
|
|
7
|
+
data.tar.gz: 22b58b9e344a743da98522d5a2367c6cf0b8f839a4763156cc305fb7d73b423377937a784e8fa3e3e8b9f0ea62e622d80cec297fae354b30d47de3b45737f11a
|
data/config/routes.rb
CHANGED
|
@@ -9,10 +9,10 @@ module TheMechanic2
|
|
|
9
9
|
g.factory_bot dir: 'spec/factories'
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
-
#
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
config.
|
|
12
|
+
# Rails will automatically load from these paths
|
|
13
|
+
# Just ensure they're in the engine's load path
|
|
14
|
+
config.eager_load_paths << root.join('app', 'controllers')
|
|
15
|
+
config.eager_load_paths << root.join('app', 'services')
|
|
16
|
+
config.eager_load_paths << root.join('app', 'models')
|
|
17
17
|
end
|
|
18
18
|
end
|