Tagged Questions
0
votes
2answers
91 views
Add filter after devise's :authenticate_user?
I want to add a second filter after :authenticate_user!.
Currently, I have a typical setup in my base namespaced controller:
module Admin
class AdminController < ApplicationController
...
1
vote
2answers
98 views
rails sti and namespace duplicates model name
in my rails app i have models like this
class Account < ActiveRecord::Base
class Account::Bonus < Account
class Account::Virtual < Account
...more
And like this
class DiscountSystem < ...
0
votes
1answer
19 views
Using relations for models with namespace in Rails
How do I write relations for models with namespace?
if I have Class Foo::Bar and Class Employee and I want to have habtm between them would I write
Class Foo::Bar
has_and_belongs_to_many :employees
...
1
vote
0answers
42 views
Rails custom validation messages with namespaced models
This is the direction I'm trying to go, but I can't get it to work with namespaced models.
class Surveys::Hospital::JobMatch < ActiveRecord::Base
has_many :job_match_answers,
...
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
122 views
How to get all classes in namespace without manually loading the classes?
I'm looking for a way to list all classes defined inside a module (namespace).
Here is similar question regarding the problem:
How to get all class names in namespace in ruby?
but see the last reply, ...
1
vote
0answers
99 views
Rails namespaced models autoloading issue?
Here's the setup:
class Project < ActiveRecord::Base
has_many :project_subject_areas, class_name: "Project::SubjectArea"
has_many :subject_areas, through: :project_subject_areas
end
class ...
0
votes
2answers
205 views
aws-s3 gem has namespace issues with my Engine
I'm developing a Rails 3 Engine for one of our projects. To debug an issue I moved the gem declaration to a :path statement, as the edge guide suggests. It comes about two gems after the requirement ...
1
vote
0answers
117 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 .
...
2
votes
1answer
103 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
1answer
262 views
Rails 3 link_to to namespaced controller action without model
I have the following Rails controller (this controller has no model):
class Admin::AdminController < ApplicationController
def login
end
end
I am not able to link to this controller action ...
0
votes
1answer
649 views
How do I create custom rails namespace routes
I'm starting to use routes with namespaces for the first time. I understand the concept of what the following does.
namespace :company do
namespace :project, defaults:{format: 'json'} 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 ...
2
votes
2answers
847 views
Using Devise with multiple namespaces for the same Model
I want to use Devise with two namespaces: an API namespace, and the default namespace,
but the two seem to be conflicting when a user tries to sign in.
Meaning, whichever namespace that references ...
0
votes
0answers
254 views
Trouble on solving the “NameError uninitialized constant” when using namespaced classes?
I am using rails v3.2.2. I have two classes stated like the following:
# app/models/article/category/article_relationship.rb
class Article::Category::ArticleRelationship < ActiveRecord::Base
...
...
1
vote
0answers
158 views
Rails 3 routing error with namespace and uncountable noun together
Well this is my first time doing this. In routes.rb I have the following:
namespace :admin do
resources :news
end
And I have this after rake routes:
admin_news_index GET /admin/news(.:format) ...
3
votes
1answer
97 views
Dry up rails namespaces in routes
I have a couple of namespaces which look identical, the only difference between the two are the names. So I have
namespace :narrow do
resources :posts
resources :comments
...
...
end
...
0
votes
1answer
182 views
Rails 3 Delete Confirmation not Displaying
I have the following in a namespace enviroment.
This is in my Article Index File to delete an Article.
<%=button_to "Delete", admin_article_path(article), :class => 'button', :confirm => ...
0
votes
1answer
61 views
Changing a namespaced admin route into a root route
I have my Pages model, views, and controller in the Admin namespace. However, I would like to display the pages at a root level. Instead of admin/pages/[:id], I would like the routes for showing pages ...
0
votes
2answers
507 views
How to access a namespace method in Ruby console?
Found this post Include namespace in Rails 3.1 console but it doesn't seem to work.
The following lib/task defined and it works from the command line: rake namespace_name:task_name.
How to call a ...
1
vote
1answer
240 views
Best practices: Namespace or resources for admin interface dashboard Mongoid
I will build a admin interface for my aplication back-end.
I am using Mongoid, and I want to know What is the best for make my own Backend Interface.
I can not use active_admin because it does not ...
2
votes
1answer
516 views
dots in URL routes with namespace rails 3.1
I have this in routes.rb
root :to => "posts#index"
devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks" }
resources :users, :only => :show
...
1
vote
1answer
137 views
Namespace with duplicate resource name
I'm new to rails, and trying to develop a system that will have several different types of user. I'm trying to use namespaces to separate these areas, but I want the models to be shared. I've created ...
2
votes
2answers
137 views
Double namespaced routing issues
I'm trying to follow this example.
I've created an action in my controller:
def distribute_resume
Rails.logger.info(distribution_id.to_s)
PartnerNotifier.distribute_resume(distribution_id)
...
0
votes
2answers
196 views
Redirecting from a namespaced controller using a hash
I have a double namespace situation, where my controllers look like this:
CandidateController
Candidate::PerformanceController
Candidate::Performance::ReviewController
In Rails 2, I was able to use ...
0
votes
1answer
123 views
RoR - Workflow and Namespaces
I'm using Workflow in a Ruby on Rails application. Everything worked fine until I started moving Controllers into a namespace.
Now I get an "unknown action" error when I try to invoke events on the ...
0
votes
1answer
546 views
How to namespace models\classes?
I am using Ruby on Rails 3.1.1 and I would like to "(re)name"\"use" namespaced model files and related classes "a là Ruby on Rails Way" keeping current database table names. That is, I have the ...
1
vote
1answer
787 views
Nested namespace in Active Admin
I need to have a nested namespace:
/admin/namespace/resource.rb*
I'd like to know how I could create this through ruby (rails g active_admin:resource namespace/Resource didn't work)
Are any ...
2
votes
1answer
177 views
Is there a graceful way to refactor a namespace collision with Ruby/Rails gems?
I would like to use the Ruby gem Turn, but it currently collides with a model (ActiveRecord) I have called 'Turn'. The end result is that my test output is borked.
I realize I can simply refactor my ...
0
votes
1answer
84 views
Creating a namespaced resource from within a different namespace
I am creating a gallery application, and I want the ability to have public and private galleries. I have the public galleries set up pretty well, I think, but I'm having some trouble conceptualizing ...
0
votes
2answers
1k views
Rails Routes: Nested Scopes/Namespaces
Right now I have an admin.domain.com subdomain for which there is a module scope:
constraints(AdminDomain) do
scope :module => "admin" do
resources :visitors
end
end
This makes ...
21
votes
4answers
3k views
Inconsistent “LoadError” behavior with 'lib' namespacing/autoloading
We have just created a new file in 'lib' that has spawned a series of headaches involving load errors.
/lib/response_set.rb:
module MyCompany
class ResponseSet < Array
...
end
end
...
0
votes
2answers
1k views
Nokogiri - search by attribute value
I have the following XML doc:
<files>
<elements xsi:type="foo:elementType1">
<name>foo1</name>
</elements>
<elements xsi:type="foo:elementType1">
...
0
votes
1answer
277 views
Rails 3: Different namespace inside nested resource?
Is there a way to use a (different) namespaces inside nested resources? For example,
I have:
resources :users do
resources :tags
end
and I'd like to place the tags controller inside ...
1
vote
0answers
222 views
How to define a nested resources for polymorphic models with different namespace?
I am struggling with defining a route in routes.rb to work with nested resources while having a polymorphic association and models with different namespaces.
There are two controllers (I show ...
1
vote
2answers
4k views
Rails 3 routing with namespace
When trying to access the following URL, I get a 404 error page:
dev.mydomain.com/api
whereas my routes.rb file mentions that this route does exist:
routes.rb
constraints :subdomain => ...
3
votes
1answer
466 views
Label references for associations
Rails provides label references for associations in fixtures like this:
### in pirates.yml
reginald:
name: Reginald the Pirate
monkey: george
### in monkeys.yml
george:
name: ...
0
votes
3answers
961 views
Devise route helpers inside namespace - problem with warden.authenticate!
I have problem with logging to my application through API. I want to authenticate user through POST /api/v1/users/sign_in and return this user's object if email with password are valid.
routes.rb
...
0
votes
1answer
115 views
Trouble in Rails 3 Adding Restful Routes to Namespaced Resources
I am trying to add a route to a controller that has been set as a resource in the 'admin' namespace like this:
namespace :admin do
resources :books do
collection do
post :process_new
...
3
votes
1answer
180 views
Rails: Dividing up a single database between multiple subdomains
I'm relatively new to Rails, and here is my situation:
I'm building an inventory management app with rails to help three separate branches of a company manage their own product inventory.
Each of ...
1
vote
1answer
313 views
Should namespace names be in plural form?
Routing question. Are there any instances when namespace names can be pluralized?
Or are all namespaces supposed to be in singular form?
0
votes
0answers
329 views
namespaces and rails routes
I have a routing like that:
namespace :folio do
resources :portfolios do
resources :portfolio_items do
resources :images
end
end
end
Now please don´t flame me ...
1
vote
2answers
615 views
getting the namespace of a rails controller object?
What is the best way to get the current controller object's namespace? From inspecting self in a current controller action, I see there is a parameter "REQUEST_URI" that contains a string like ...
2
votes
1answer
308 views
From Namespace to Subdomain?
what I want to do is to match the namespace route to subdomain route, for example in my routes.rb I have:
namespace :group do
resources :groups
resources :clubs
end
The current path of group ...
4
votes
2answers
2k views
Using factory_girl_rails with Rspec on namespaced models
I have a web service that serves Ads to several different clients. The structure of the Ad varies between clients, and therefore, I am using namespaces for my models and controllers by the client name ...
2
votes
1answer
350 views
rails and namespaced models issue
Using rails 3/3.1 I want to store invoices with their items (and later more associations like payments, etc…).
So in a first approach I set up the models like this:
class Invoice < ...
0
votes
1answer
189 views
Mocking a Rails application object with mocha
I'm writing a generator and I need to get mock a Rails.application object and get back the Rails.application.class.parent as the name of the Rails application.
def ...
4
votes
2answers
492 views
“Module is not missing constant Model” - Rails 3 error
I have namespaced my models and controllers within my app.
when I try to visit admin/stories.html (NameSpace::Admin::StoriesController)
I keep getting an error "NameSpace is not missing constant ...
0
votes
1answer
288 views
Namespaced Controller cannot find model virtual attribute method
I get the following error with the supplied code.
undefined method `password' for #<User:0x00000002e66980>
User Model
class User < ActiveRecord::Base
validates_presence_of ...
4
votes
2answers
802 views
Namespaced controller causes error in Rails-3
I am using ActsAsTaggableOn to add tagging to my application. In addition to the features i get from this gem, I would also like to add a TagsController and basically treat tags as any other resource ...