r3_plugin_toolbox 0.3.10 → 0.3.11
Sign up to get free protection for your applications and to get access to all the features.
- 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
|