Tagged Questions
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?
7
votes
4answers
1k views
How to redefine a Ruby constant without warning?
I'm running some ruby code which evals a .rb file everytime its date changes. In the file, I happen to have constant definitions, like
Tau = 2 * Pi
and of course they make the interpreter display ...
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
2answers
95 views
Is there a hook for when anonymous classes are assigned to a constant?
I've been practicing some Ruby meta-programming recently, and was wondering about assigning anonymous classes to constants.
In Ruby, it is possible to create an anonymous class as follows:
...
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 ...
5
votes
3answers
838 views
Constants or class variables in ruby?
I've been programming in Ruby for a few months now, and I'm wondering when it is appropriate to use constants over class variables and vice versa. (I'm working in Rails, thinking about constants in ...
4
votes
1answer
211 views
How to use an overridden constant in an inheritanced class
given this code:
class A
CONST = 'A'
def initialize
puts CONST
end
end
class B < A
CONST = 'B'
end
A.new # => 'A'
B.new # => 'A'
I'd like B to use the CONST = 'B' ...
4
votes
1answer
540 views
Configurable ruby logger setup: Logger.new().level = variable
I want to change the logging level of an application (ruby).
require 'logger'
config = { :level => 'Logger::WARN' }
log = Logger.new STDOUT
log.level = Kernel.const_get config[:level]
Well, ...
4
votes
4answers
208 views
Why does the absence of the assignment operator permit me to modify a Ruby constant with no compiler warning?
In the following two examples I do the same thing, creating a constant String and using the concat method to modify it. Because it's a constant, I expect a compiler warning but only receive one in the ...
3
votes
1answer
52 views
Ruby bindings - the scope of local variables versus constants
I want to run eval of strings to define both local variables and constants.
I want to do this in different namespaces. I can do this with local variables
but not with constants. Is there a way to ...
3
votes
1answer
46 views
How to overwrite defined? operator?
if you have something like:
module Real
A = 1
end
when you do defined?(Real::A) you get 'constant' which is a truish value. Now if i do something like:
module Virtual
def self.constants
...
3
votes
2answers
338 views
Unable to include a Class in to another class in Ruby: uninitialized constant (NameError)
Lets say I have three classs, each define in its own file. e.g. ClassA in ClassA.rb etc...
class ClassA
def initialize
end
def printClassA
puts "This is class A"
end
end
class ClassB
...
3
votes
2answers
107 views
What does String(42) do in Ruby?
Why cant I do this?
>> s = String
>> s(42)
s(42)
NoMethodError: undefined method `s' for main:Object
from (irb):86
from /home/sam/.rvm/rubies/ruby-1.9.2-p0/bin/irb:17:in ...
3
votes
1answer
112 views
RUBY: how to resolve circular dependency in constant definitions?
class A
X = 9
Y = B::X
end
class B
X = 8
Y = A::X
end
I have two classes each defining some constants but requiring constants
from the other as shown above but this gives me an error:
...
3
votes
2answers
160 views
Throw exception when re-assigning a constant in Ruby?
I've long been aware that "constants" in Ruby (i.e., variable names that are capitalized) aren't really constant. Like other programming languages, a reference to an object is the only thing stored ...
3
votes
3answers
540 views
(In Ruby) allowing mixed-in class methods access to class constants
I have a class with a constant defined for it. I then have a class method defined that accesses that class constant. This works fine. An example:
#! /usr/bin/env ruby
class NonInstantiableClass
...
2
votes
2answers
37 views
Have a parent class's method access the subclass's constants
For example:
class Animal
def make_noise
print NOISE
end
end
class Dog < Animal
NOISE = "bark"
end
d = Dog.new
d.make_noise # I want this to print "bark"
How do I accomplish the ...
2
votes
3answers
84 views
Constants and scope in loops with Ruby
In this question I found an interesting detail about scope of a final variable in Java. I don't know Java good enough, but I think that final is identical to a constant in Ruby.
In C++ this is ...
2
votes
2answers
166 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
4answers
114 views
What kind of Ruby variable do I want to use here?
I’m still learning Ruby, and I’m curious about whether it is appropriate to use a class variable, constant, or local variable in this scenario.
In my below code example (that generates random ...
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 ...
2
votes
4answers
2k views
Ruby module with a static method call from includer class
I need to define the constant in the module that use the method from the class that includes this module:
module B
def self.included(base)
class << base
CONST = self.find
end
end
...
2
votes
2answers
215 views
How to set class-scope constants in ruby?
Super-beginner easy points ruby question. I'm trying to learn some ruby by programming the Project Euler problems. So I have a test
class ProjectEuler_tests < Test::Unit::TestCase
@solution = ...
1
vote
5answers
57 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
170 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
1answer
49 views
Ruby - Forbid constants redefinition
redefining some constant in Ruby (ex. FOO = 'bar') generates the warning already initialized constant.
I'm trying to write a sort of ReallyConstants module, where this code should have this ...
1
vote
1answer
112 views
solutions to the annoying “warning: already initialized constant” message
Today I've stumbled upon a tricky issue with Ruby constants. In our team someone created a module, which is included into multiple models. In our (spec) test output this results into warning messages ...
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
2answers
96 views
Can somebody please explain ruby constant lookup for me?
More specifically:
When do you need to prefix the scope with :: (like ::Foo::Bar)
When is directly referring to a scoped const ok? (just Foo::Bar)
Is there a good reason why this behavior is so ...
1
vote
2answers
85 views
Packaging a read-only data file with a Ruby gem
I'm working on a Ruby application that is deployed as a gem. I'd like to include a read-only data file with the gem and am not sure how/where that should be packaged
For a little background, this ...
1
vote
3answers
157 views
Ruby 1.8.6: How to alias a constant in one class to a class method in another?
Is there any way to create aliases across classes? Specifically, from a constant in one class to a class method in another?
Something like
Object.const_set('Foo', proc { Bar.meth })
except having ...
1
vote
2answers
176 views
In Ruby, how does a class defined in a module know the module's constants?
I'm trying to understand how a class defined in a module knows the module's constants. Here's an example of what I mean:
module Car
class Wheel
end
class Seat
p Wheel # Car::Wheel
...
1
vote
2answers
488 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
641 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
1k views
Can I use rspec mocks to stub out version constants?
I've got code that only needs to run on a certain version of ActiveRecord (a workaround for a bug on old AR libraries). This code tests the values of ActiveRecord::VERSION constants to see if it needs ...
1
vote
3answers
453 views
Cast between String and Classname
I have a string, containing an Class name. It is, for example, a string containing "Article". That string came up from the params[]. What should I do to work with this string as if it was a class ...
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
4answers
52 views
How to get a class from a String?
I'd like to index a hash with a Class (not a symbol !), like the following
irb(main):015:0> class Key ;end
=> nil
irb(main):016:0> h={Key => "ok"}
=> {Key=>"ok"}
Good.
Then, given ...
0
votes
3answers
52 views
Iterate Hash constants in Ruby
I have the following Ruby module:
module Test
Constant1 = {
:key1 => :value1,
:key2 => :value2
}
Constant2 = {
:key1 => :value1,
:key2 => :value2
}
end
...
0
votes
1answer
43 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
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
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
102 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
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
68 views
Ruby: The simplest way of getting the full constant name of all constants within an object (Class or Module)
I have the following Structure:
module SomeMod::SubMod
module Mod1; end
module Mod2; end
end
I want to get all constants of SubMod, but I want a fully qualified reference to the Constant (ie. ...