Tagged Questions
0
votes
0answers
33 views
Namespaced form_for claims route does not exist
I've built this kind of structure lots of times before without issue, but this time I am stumped. I have an "admin" namespace defined in my routes like so:
namespace :admin do
resources :articles
...
0
votes
0answers
29 views
Rails: Rendering a Namespaced Polymorphic Partial
I have a polymorphic model called Update. Typically, I can render its associated updatable model with a simple:
<%= render @update.updatable %>
Unfortunately, if I'm calling this method from ...
0
votes
1answer
49 views
rails 3 using folder name as namspace throws uninitialized constant error
I'm trying to upgrade an app from rails 2.3 to 3.0 and it has a file
app/utility/interface/import/import_statistics_manager.rb
which contains
class ...
0
votes
1answer
20 views
Rails: Creating Wrong Table Name With a Namespaced STI
I have a model which uses STI:
class Contributor::Name < Contributor::NameBase
...
end
From this model:
class Contributor::NameBase < ActiveRecord::Base
...
end
Whenever ...
0
votes
1answer
18 views
Rails: Namespace is Applied to Associations in Unintended Ways
I have a namespaced model Collection::Publication with a has_many relationship to another namespaced model Library::Publication. The association declaration looks like this:
has_many ...
1
vote
0answers
31 views
Rails: Undefined Method Error for Namespaced, STI-Inherited Class
I have an after_create callback in my Tag model:
def auto_vote
params = parametrize_media_tag(media_tag)
Tag::Vote.cast_vote(params)
end
Which gives me this error:
undefined method `cast_vote' ...
1
vote
1answer
36 views
Rails: Conflict Between Namespaced and Non-Namespaced Resources
I have two Review models. The first is namespaced as Membership::Review and the second is not namespaced, Review. When I make a call on the non-namespaced model, Rails tries to lookup the namespaced ...
0
votes
2answers
54 views
Combining many JS files with Rails Asset Pipeline
I am making a long-overdue upgrade from Rails 3.0.20 to Rails 3.1.10. (Later I'll upgrade to 3.2, but I want to get the more major changes in 3.1 working with my codebase first. I don't have a test ...
1
vote
1answer
55 views
Rails is Looking for a Partial in the Wrong Directory
I have a polymorphic Review model. The namespaced model User::Library::Publication is reviewable. The reviews are created properly, but when I try to display them through a partial, Rails looks up the ...
1
vote
0answers
25 views
Rails: Namespaced Class Method Referring to Wrong Class
I have two models, one of which is namespaced:
Group::Vote
The other of which is not:
Vote
The namespaced model has a class method:
def self.get_user_value(voteable)
...
0
votes
1answer
42 views
make subdomain have a namespace as root?
Would it be possible to have a namespace to be the root for a subdomain in rails 3?
Currently my routes are:
namespace :mobile do
resources :home
resources :profiles
root :to => ...
-1
votes
1answer
19 views
omniauth-facebook namespace trace
I saw this code at omniauth-facebook/lib/omniauth/strategies/facebook.rb
require 'omniauth/strategies/oauth2'
require 'base64'
require 'openssl'
require 'rack/utils'
module OmniAuth
module ...
0
votes
2answers
24 views
Forms broken after namespace modification
I recently modified my Sessions.rb controller as it was fighting against the Devise Sessions controller for supremacy in my application. It seems to have worked out well. I modified my route.rb as ...
1
vote
1answer
45 views
Getting prepend_view_path "app/views/ current namespace
In my ApplicationController I have this:
def prepend_view_paths
prepend_view_path "app/views/#{request.subdomain}_subdomain" if request.subdomain.present?
end
I want something like this:
...
1
vote
1answer
185 views
Using Devise Gem with namespaces throwing ActionController::RoutingError
Ok, I've seen a ton of different answers for how to get Devise working when using namespaces in your app, but none of them are working for me.
I have my app split up into three namespaces
Home (the ...
0
votes
1answer
21 views
Namespaced Join Table Refers to Itself
I have the following models:
class User < ActiveRecord::Base
has_many :groups, :through => :memberships
has_many :memberships, :class_name => "User::Group"
end
class Group < ...
0
votes
1answer
58 views
Rails Namespace - Calling Model From Second Controller
I'm currently using Devise for user authentication and I would like to implement a backend admin to control the creation of users in the admin panel.
I have generated an admin controller and I've ...
0
votes
1answer
30 views
Rails 3: Getting the ID of a Namespaced Model
I have a model called Contributor, which also acts as a namespace for several other models, such as Contributor::Alias and Contributor::Reassignment. I want to use a URL that includes the Contributor ...
2
votes
2answers
72 views
Rails class naming collision
In my rails application I have the following:
Post model
class Post < ActiveRecord::Base
# ...
end
Post model inside such a module
# lib/my_module/models.rb
module MyModule
module Models
...
2
votes
1answer
182 views
Rails - Savon set multiple namespaces
I'm using savon version 2 (with Ruby on Rails )to invoke a webservice and i need to inject some additional namespaces to my Envelope. Something like:
<soapenv:Envelope ...
0
votes
2answers
101 views
Rails: best_in_place collection issue
My app runs on two different database, and I use the application logic to work on them.
I have the User model on an external db and I only records the id on my default_role class.
So in the index ...
0
votes
1answer
115 views
View factory specific to Namespace on Active Admin
I need to implement two namespaces in active admin and have different menu design for each.
My namespaces works well and I use view_factory to redifine my nav bar but when I try to set my view for a ...
2
votes
2answers
165 views
Rails 3 trouble with namespaces & custom classes (uninitialized constant)
I have a file in my Rails 3.2.11 project called app/queries/visible_discussions.rb which looks like the following:
class VisibleDiscussions
...
end
I'd like to namespace the query so that I can ...
0
votes
1answer
98 views
How to use has_many through with namespace models in Rails?
I have a name spaced model called Accounting::Invoice
I also have a model called Contact
An Accounting::Invoice has many contacts through another model called Contactable -- this is in cases where ...
0
votes
0answers
59 views
Rails routes issue, undefined '******_path' with form_for
So, I'm new to rails, and I'm building an app that will need to be versioned. My question is very similar to this question, however, trying the given solutions to that have not resolved my issue.
...
0
votes
1answer
225 views
Backbone + Coffeescript + Rails App Init issue (2-level namespace): Cannot read property 'IndexView' of undefined
I am new to Backbone + Coffeescript + Rails and I'm stuck in initializing the application. The main_app.js.coffee is:
#= require_self
#= require_tree ./templates
#= require_tree ./models
#= ...
0
votes
1answer
70 views
Rails namespace routes and custom action on resource
I currently have these routes set up:
namespace :api do
namespace :v1 do
resources :users do
match 'api/v1/users/all'
end
resources :sessions
end
end
I'm trying to set up a ...
3
votes
2answers
187 views
Ruby on Rails Routes: Namespace with more params
i have a namespace "shop". In that namespace i have a resource "news".
namespace :shop do
resources :news
end
What i now need, is that my "news" route can get a new parameter:
/shop/nike ...
0
votes
0answers
139 views
Rails routes without controller and admin namespace
The code below is in my route.rb :
resources :books, :path => ''
resources :books, :path => '', :only => [] do
resources :chapter, :path => '', :except => [:index]
end
With ...
0
votes
0answers
95 views
Mongoid Devise Sign in always return 401
I am building a Ruby on Rails API with a client authentication.
I use devise to process the authentication, and mongoid as ODM.
I have a namespace and a scope to define my routes :
...
0
votes
2answers
511 views
2 Namespaces of activeadmin
I'm trying to install activeadmin with two namespaces for the past 4 hours and am having no luck.
I want two namespaces. "admin" and "admin_unit".
I would assume that I would have the app/admin and ...
1
vote
1answer
326 views
Namespaces with nested resources Rails 3.2.8
I'm trying to organize my Rails application into two namespaces that provide the same resources, but with different controllers and views. Something like the following cenario:
routes.rb
resources ...
0
votes
0answers
64 views
Heroku Namespacing Routing Error
I am having an error that I can't figure out for the life of me. I am making a rails app to host the back end of my IOS project. In order to auth the user, I am using token-auth strategy in Devise.
...
0
votes
2answers
140 views
how to handle form_for in rails namspaced controller
I have worked with rails scaffold to generate forms and views automatically.
But now I had to use namespaced controller with model in root namspace.
So, I generated controller manually without ...
0
votes
2answers
160 views
Rails namespaced model conflicting with non-namespaced model
I have two classes in rails 3.2.6:
class Foo in models/foo.rb (is in table foos, per default)
class Bar::Foo in models/bar/foo.rb (which sets self.table_name to bar_foos)
When I go into console, ...
2
votes
1answer
260 views
Resolving Namespace conflicts between a class and a gem
In my Rails 2.3 app, I found that the problem emanates from namespace collisions between an existing ActiveRecord model and a gem I recently added.
Specifically, I was trying to add jammit support ...
0
votes
1answer
47 views
Namespacing all controllers for devise
I am using Devise with multiple models (three to be exact) and each role has some different interactions. For example, after the user model signs up I override a devise method to redirect them to a ...
0
votes
0answers
92 views
Rails multiple namespaces for one controller
I need to be able to add some routes to one or more dynamic paths.
For example paths = [ "foo/news", "bar/news" ]. Both need to go to the same routes.
Should be something like this:
paths.each do ...
1
vote
0answers
121 views
paginate_alphabetically gem: Pagination links in namespace not working
I have an admin namespace in a rails 3.2 app. I want to paginate a postgres database of authors, using the paginate_alphabetically gem at https://github.com/edendevelopment/paginate_alphabetically .
...
1
vote
1answer
142 views
How to “import” nested classes into current class in Ruby?
In Ruby I can nest modules/classes into other modules/classes. What I want is to add some declaration inside file or class to be able to refer nested classes by their short names, e.g. to use Inner to ...
0
votes
1answer
155 views
Uinitialized constant BaseController error when using admin namespace
I have an admin namespace as such:
namespace :admin do
resources :users
resources :base
end
With the following directory structure:
/app/controllers/
+ admin
- ...
0
votes
2answers
419 views
Rails namescoped model object without module prefix route path
i have problem little bit with Rails router and form generator.
My application have namespaced modules for models and controllers. Module is used to easier abstraction to another projects.
I using in ...
0
votes
0answers
27 views
Rails Test:Module, when is it included, how to skip it?
I'm working on a Rails app for processing tests. Not surprisingly, I've got a model named Test. Throwing some quick scaffolding together worked fine, but testing and interacting with this in the ...
2
votes
1answer
104 views
How to check if a class or module is namespaced?
I am using Ruby on Rails 3.2.2 and I would like to know if it is possible to check whether a class or module is namespaced. That is, I would like to run something like the following
...
0
votes
2answers
235 views
Namespace, static pages, and inherited controllers, what files in what folders?
I'm building an admin control panel (attempting to ;) ).
I have been looking at Backend Administration in rails and as suggested I am trying to make Admin::AdminController that checks for admin and ...
0
votes
1answer
339 views
Rails routing scope/namespace problems
I am working on a project with several parts and developers. We use mongodb and thus declare the db stuff in the models. To only have one db although the project has several separated servers we store ...
5
votes
2answers
535 views
Rails: form_for namespaced resource
I want to set up the CRUD for users, available just for administrators of my web application.
So in routes.rb:
namespace :admin do
resources :user
end
which means this:
admin_user_index GET ...
1
vote
1answer
278 views
Rails 3.1 Sweeper for controller method in different namespace
All,
I am trying to add caching to my Rails 3.1 apps. The sweeper lives in default namespace, and I have controller that lives in the Admin namespace.
For example, I have BooksController in the ...
0
votes
2answers
278 views
Ruby On Rails - namespaces
could anyone help me with the ROR? I am a beginner and I have brutal problems with namespaces.
Exception is :
No route matches [GET] "/admin"
and routes.rb
SimpleCms::Application.routes.draw do
...
1
vote
1answer
308 views
nested namespace route going to wrong controller
Using Rails 3.0.7, I'm creating an API for our app, and I have this setup:
routes.rb
namespace :api do
namespace :v1 do
match "connect" => "users#login", :via => :post
match ...