Tagged Questions
16
votes
2answers
7k views
Where's the best place to define a constant in a Ruby on Rails application?
In a Ruby on Rails 2.3.2 application, where is the best place to define a constant?
I have an array of constant data that I need available across all the controllers in my application.
16
votes
4answers
8k views
What is the best way to handle constants in Ruby when using Rails?
I have some constants that represent the valid options in one of my model's fields. What's the best way to handle these constants in Ruby?
14
votes
2answers
4k views
Where/How to code Constants in Rails 3 Application
I am interested in doing this the "Rails Way" on a new application. I would also like to refer to constants in some sort of context to make the code more readable. I have an application where a user ...
11
votes
4answers
3k views
Ruby on Rails: Where to define global constants?
I'm just getting started with my first Ruby on Rails webapp. I've got a bunch of different models, views, controllers, and so on.
I'm wanting to find a good place to stick definitions of truly ...
7
votes
6answers
9k views
constant values in Rails
I have some data that I want to store somewhere in my Rails app because I use it for generating form fields, checking a submitted form to ensure its values are valid, etc. Basically, I want the data ...
6
votes
1answer
2k views
RAILS_ROOT require?
I'm trying to access the RAILS_ROOT constant in a file residing in the /lib directory, but I'm not able to (uninitialized constant error). Is there something that I need to require to be able to do ...
6
votes
3answers
706 views
Best way to handle view and helper-only constants in Rails
I have a constant that is only used in views, but it's used in different ways in different places. It's an array of option names, and is used for select boxes, but I also use this in other views to ...
4
votes
1answer
740 views
Internationalization for constants-hashes in rails 3
Could you tell me whats the best practice for storing constants with internationalization in rails3?
f.e. i want to have a constant-hash for haircolours for my user model:
# btw: how can I store ...
3
votes
2answers
6k views
Rails : uninitialized constant error on Active Record destroy
I am having an issue when trying to destroy an active record instance.
It involves the following AR
class Client < ActiveRecord::Base
has_many :phone_numbers, :dependent => :destroy
...
2
votes
2answers
165 views
Dynamic finder methods for validation purposes
I am using Ruby on Rails 3.0.7 and I would like to find some records at run time for validation purposes but passing\setting a value for that finder method. That is, in a my class I have the ...
2
votes
2answers
289 views
In rails, where to put a constant (variable?) that changes based on the current date?
I have an app that heavily relies on dates. There is a moderately expensive calculation that is needed to set these dates, based on the current date. As far as each request is concerned, these dates ...
1
vote
5answers
54 views
Use Constant or Class Variable?
I am showing a number of navigation links on a page.
It will be fixed in the application but in the future could change, but not interactively, just if a new release changed it. So fixed within the ...
1
vote
1answer
164 views
Neo4j with Jruby project rails
I trying use neo4j with Ruby on rails on Mac OSX.
I have installed jruby and neo4j with brew.
I follow this guide:
http://wiki.neo4j.org/content/Getting_Started_With_Ruby
and this:
...
1
vote
3answers
89 views
Validate model field: if value equals a key in a hash
In an initializer I have a huge COUNTRY_CODES hash, with format:
{ :us => "United States, :de => "Germany" }
In my model I want to validate that the entered value is:
present
a key of my ...
1
vote
1answer
53 views
What (of bad) can happen if I state a constant value using '||='?
I am using Ruby on Rails v3.0.9 and I would like to know what (of bad) can happen if I state a constant value as this:
MAX_LENGTH ||= 30
BTW: I am developing an "acts_as_something" plugin (in my ...
1
vote
1answer
492 views
Devise Invitable: uninitialized constant
I'm using devise, wich works fine, now I try to use devise_invitable.
I installed it correctly, but I'm getting the error when I try to access
http://localhost:3000/users/invitation/new
The error ...
1
vote
2answers
646 views
NameError: uninitialized constant Object::User
I searched the other posts that had this issue and could not find one that fixed my particular issue. My irb is going crazy. I am trying to change user roles in my database but I can't even get to my ...
1
vote
1answer
403 views
Missing a constant on load.. how can i get around this?
I just installed bundler for a rails 2.3.5 Spree project.
After doing so, I realized that I was getting this error when I went to script/console :
Loading development environment (Rails 2.3.5)
...
1
vote
2answers
178 views
How to combine the benefits of constants and symbols in RoR?
currently I use constants for things like *task_type*:
class TaskType
TWITTER_MENTION_REPLY = "twitter_mention_reply"
TWITTER_FOLLOW = "twitter_follow"
TWITTER_DM_REPLY = ...
1
vote
2answers
533 views
Uninitialized Tag constant in Rails 3 with Acts_As_Taggable_On
This controller action worked perfectly in Rails 2.3.x:
def show
@title = Tag.find(params[:id]).name
@tag = Tag.find(params[:id])
@messages = Post.paginate(Post.find_tagged_with(@tag),
...
1
vote
2answers
483 views
Scope of Constants in Ruby Modules
I'm having a little problem with constant scope in mixin modules. Let's say I have something like this
module Auth
USER_KEY = "user" unless defined? USER_KEY
def authorize
user_id = ...
1
vote
2answers
95 views
How to define a constant when running script/server?
I want to start up my Rails development server like this:
script/server OFFLINE_MODE=1
and have a method in application_controller.rb that checks for the presence of that constant:
helper_method ...
1
vote
2answers
639 views
uninitialized constant with rails friendships
I'm new to rails and getting the following error:
NameError in FriendshipsController#create
uninitialized constant FriendshipsController
this also shows up:
...
1
vote
2answers
455 views
Question about Ruby on Rails, Constants, belongs_to & Database Optimization/Performance
I've developed a web based point of sale system for one of my clients in Ruby on Rails with MySQL backend. These guys are growing so fast that they are ringing close to 10,000 transactions per day ...
1
vote
3answers
102 views
For one of my models, I have a few instances that should be auto-populated. How do I handle this?
I have to be specific for this to make sense. In my application I have a model called theme which contains widget color theme information. We provide a few themes, but mainly rely on the user to ...
0
votes
3answers
35 views
How can I make an alias both cd and run a script or run a script in a non-home directory
How can I make an alias either run a script in another directory or both cd and run the script?
I have commands in my .bashrc file to cd /home/myname/my_dir
and also
rake sunspot:solr:start
...
0
votes
1answer
61 views
Unitialized constant but the class exists
I'm having an issue making an app that plays music in rails. I can't seem to actually obtain the properties of the songs from the database. The model class is named 'Music'. The error I get is ...
0
votes
1answer
42 views
How to manage project-wide constants in a project using ROR?
lib/constant.rb
module Constant
BANQUET_TYPE_OF_OFFER = [['Narrow By Offer Type',''], ["A la Carte", "A la Carte"],
["Alcohol Offer", "Alcohol Offer"], ["Buffet", "Buffet"], ["Brunch", ...
0
votes
0answers
43 views
Rails - Unable to access the object's attribute with dot operator
I use rails 2.3.11 and I have a strange issue. I have defined a constant in initilizers as:
PACKAGES = Package.find(:all, :select=>"cost, description, billing_cycle")
when I access this in ...
0
votes
1answer
34 views
Rails 1.2.3 + How to define and access the CONSTANTS in Rails
I am confused in defining constant in Rails 1.2.3.
Here I want to define one of the url in constant and want to access at any controller. For example ::
TEMPLATE_URL = "www.google.com"
Now I want ...
0
votes
1answer
181 views
Ruby on Rails - Top 5 of a model: formal argument cannot be a constant
I'm having some issues trying to get the top 5 of my tutorial model to display on my index page.
I've got the following in the index method (for the index action) in my tutorial controller:
...
0
votes
0answers
59 views
Rails 3.0.9 Test data issue
When I intent to seed data with the rake db:seed , the shell returns :
rake aborted!
uninitialized constant Project
Tasks: TOP => db:seed
(See full trace by running task with --trace)
Where the ...
0
votes
1answer
60 views
Stating constant values using '||'
I am using Ruby on Rails 3.0.9 and I am developing a plugin. I would like to know if it "right" to state a constant value like this (note the ||):
CONSTANT_NAME ||= "Constant_value"
Is it a ...
0
votes
2answers
52 views
How to write constant inside module?
module Test1
module Test2
def self.included(base)
# Where can I declare constant ? How ?
base.extend ClassMethods
base.class_eval do
# named scopes
end
end
...
0
votes
2answers
214 views
Rails 3.1: Model Constant in initializer causes warning
I have monkey patched the Tag class of the ActsAsTaggableOn plugin in an an initializer. All works fine, however I get a warning for a constant I added to Tag:
...
0
votes
2answers
58 views
Where should a ruby constant live?
%div{:id=>[Arsenal[@home.page_color]], :class=> "page"}
I'm using the following constant Arsenal in my Home#Page view. Where should this constant live in order to be used by the view in ruby ...
0
votes
3answers
99 views
Stating CONSTANT values in a Ruby on Rails application
I am using Ruby on Rails 3.0.7 and I would like to state somewhere some CONSTANT values that is accessible by all classes in the application. I will use mentioned constants mostly for "global" ...
0
votes
3answers
92 views
How do you access a class' constant variables?
If I have
class Foo
CONSTANT_NAME = ["a", "b", "c"]
...
end
Is there a way to access Foo::CONSTANT_NAME or do I have to make a class method to access the value?
0
votes
2answers
107 views
uninitialized constant … error
I am getting the following error: uninitialized constant Profile::STRING_LEN_MAX_DB.
Here is what I have:
application_helper.rb
def field ( form, field_name, len = TEXT_FIELD_LEN, max_len = ...
0
votes
2answers
173 views
ROR + Access Constant in Controller and Define in Config/initializer/constant.rb
Here in my project I want to use constant in place of simple string. For this, I have define color constant in config/initiailizer/constant.rb file. Here is the code ::
RED = "red"
GREEN = "green"
...
0
votes
1answer
30 views
How would I refactor a Rail's ApplicationController with Constants set to ActiveRecord results?
I'm working on a Rails 2.1 project that has an ApplicationController similar to the following:
class ApplicationController < ActionController:Base
THIS_SITE = Site.find_by_url('www.example.net')
...
0
votes
2answers
205 views
RAILS_ROOT_VIEW_PATH Constant, like RAILS_ROOT?
Is there an answer to the following SAT-style analogy?
. : RAILS_ROOT :: ./app/views : ???
I.e., is there a constant in Rails for the path app/views?
The reason I'm asking is because from ...
0
votes
1answer
166 views
setting / changing rails configuration values after initialization
I recently introduced a bug that only rears its head in development due to cache_classes being set to false. I'd like to write a test to ensure that doesn't happen again, and I am trying to do so by ...
0
votes
3answers
195 views
Javascript condition based on Rails variable
I want to set a global constant (in Rails) and then depending on that I want to put a condition in a JavaScript file (which is included in every page of my app). I also have some Rails dependent code ...
0
votes
0answers
192 views
How can I set a constant with namespace in the initializers?
Help!
in my rails controllers, there is a 'Admin' namespace.
(My the structure of the controllers dir is like this :
app/controllers:
home_controller.rb
...
admin/posts_controller.rb
...
0
votes
1answer
285 views
Rails model constants with hash
I have added some constants to a model say MyModel.rb as shown below.
MY_CONST = {
:foo =>"Some Name for Foo",
:bar =>"Some Name for Bar"
}
Also I have saved string foo as the column ...