outro_rails 0.1.0 → 0.1.1
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/lib/outro_rails/engine.rb +5 -4
- data/lib/outro_rails/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: 59bd1b6132a33453ad21b45a5b217c08df5a52bd860a538af18255a464916c00
|
|
4
|
+
data.tar.gz: 3096b3ab4acd40c8e1a3d557831ba8b2888a3db958597f83336c368dfc0dd6f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d6b2bc029e0b97ccc479c807591f74e465e40f5f4df827be705b093890e5a895b775c1ccf4594ce407810da677ac633485187c29ceec581f9d349107c500ce9
|
|
7
|
+
data.tar.gz: 06f1d6bfbc3d57cffbe5d88a588d2a5cebf5891ff8906e97c009eabd5d4f6473f6da82a5e6bf671ccac92e372feb2689fb0041778aed36f57ad8c900aec52d03
|
data/lib/outro_rails/engine.rb
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
1
|
module OutroRails
|
|
4
2
|
class Engine < ::Rails::Engine
|
|
5
3
|
isolate_namespace OutroRails
|
|
@@ -10,9 +8,12 @@ module OutroRails
|
|
|
10
8
|
end
|
|
11
9
|
end
|
|
12
10
|
|
|
13
|
-
initializer "outro_rails.
|
|
11
|
+
initializer "outro_rails.form_builder_extensions" do
|
|
12
|
+
require "outro_rails/form_builder_extensions"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
config.to_prepare do
|
|
14
16
|
ActiveSupport.on_load(:action_view) do
|
|
15
|
-
require "outro_rails/form_builder_extensions"
|
|
16
17
|
include OutroRails::ChordChartsHelper
|
|
17
18
|
end
|
|
18
19
|
end
|
data/lib/outro_rails/version.rb
CHANGED