-
We have a namespaced engine with some models.
``` ruby
Person::Person.table_name
#=> person_person in development
#=> person in production or test
```
If I do
``` ruby
Person::Person.reset_table_na…
-
I'm getting a segfault during garbage collection during test runs.
This isn't a critical problem for me, as I'm running a pre-release version of Ubuntu 13.04. So I get what I deserve :).
However, …
-
When running `rails g devise user` inside a mountable engine, it doesn't insert
```
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
```
…
jess updated
12 years ago
-
according to https://github.com/rails/rails/issues/393
and https://github.com/haml/haml/blob/master/lib/haml/helpers/rails_323_textarea_fix.rb
I use slim with rails 3.2.3 in one of my company's proje…
-
Routing to a resource in a mountable engine does not work correctly. Requests for the mountable resource only connect if there is a root route in the engine. Requests for other resources in the engine…
mmell updated
12 years ago
-
I meet a issue that devise did not trigger local language as expected,come here for some help.
I copy and merge a original app rather than use devise generator inside mountable app.
devise logic insid…
grasp updated
12 years ago
-
Developers should be able to generate a new module which will also be a Rails Mountable Engine via:
`bcms module bcms_name_of_module`
We have updated the module generator so that it generate mountab…
-
Unfortunately this is currently not working when used in a mountable engine.
```
dev4:rails vincent$ rails -v
Rails 3.2.2
dev4:rails vincent$ rvm use 1.9.3
Using /Users/vincent/.rvm/gems/ruby-1.9.3-p…
-
My application is not mounted at the site root, but instead lies in a subfolder (e.g. www.website.com/railsapp/). I installed RailsAdmin, which seems to be only partly working with correct routing. M…
-
I'm concerned that this is a bit brittle right now, since it's setup in two different places which aren't connected (the config.mount_at variable and then in the main application routes file).
Ample…