ems 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/app/controllers/ems/ems_controller.rb +5 -0
- data/app/views/ems/articles/_form.html.haml +2 -3
- data/app/views/ems/globals/_asset.html.haml +1 -1
- data/app/views/ems/globals/_lead_image.html.haml +4 -0
- data/app/views/ems/news/_form.html.haml +1 -2
- data/app/views/ems/reports/_form.html.haml +4 -0
- data/lib/ems/version.rb +1 -1
- metadata +2 -1
@@ -3,6 +3,11 @@ module Ems
|
|
3
3
|
skip_authorization_check :only => [:index]
|
4
4
|
|
5
5
|
def index
|
6
|
+
# Workaround for active admin routing problem.
|
7
|
+
# see:
|
8
|
+
# http://stackoverflow.com/questions/10684566/mountable-engine-routing-with-active-admin-on-rails
|
9
|
+
# @todo find a nicer solution for this problem.
|
10
|
+
render :layout => 'ems/application'
|
6
11
|
end
|
7
12
|
|
8
13
|
end
|
data/lib/ems/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ems
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -368,6 +368,7 @@ files:
|
|
368
368
|
- app/views/ems/channels/show.html.haml
|
369
369
|
- app/views/ems/ems/index.html.haml
|
370
370
|
- app/views/ems/globals/_asset.html.haml
|
371
|
+
- app/views/ems/globals/_lead_image.html.haml
|
371
372
|
- app/views/ems/news/_form.html.haml
|
372
373
|
- app/views/ems/news/edit.html.haml
|
373
374
|
- app/views/ems/news/index.html.haml
|