r3_plugin_toolbox 0.3.10 → 0.3.11
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.
- data/VERSION +1 -1
- data/lib/r3_plugin_toolbox/railtie.rb +7 -1
- data/r3_plugin_toolbox.gemspec +1 -1
- data/spec/r3_plugin_toolbox/engine_macro_spec.rb +7 -0
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.11
|
data/r3_plugin_toolbox.gemspec
CHANGED
@@ -6,6 +6,13 @@ describe Rails3::Engine do
|
|
6
6
|
with_engine :my_engine do |e|
|
7
7
|
e.add_locales_dir 'my_locales'
|
8
8
|
e.set_orm :active_record
|
9
|
+
|
10
|
+
e.config.wow = 'super'
|
11
|
+
# set custom config object
|
12
|
+
e.configs do
|
13
|
+
greeting = 'hello'
|
14
|
+
saying = 'hi'
|
15
|
+
end
|
9
16
|
end
|
10
17
|
|
11
18
|
# Initialize the rails application
|