Tagged Questions
0
votes
0answers
94 views
How create rails_admin navigation labels without create empty models?
In rails admin you can define a navigation label to a model and his childrens like so:
#in rails_admin.rb
config.model Order do
navigation_label 'Orders related'
end
config.model OrderProducts do
...
2
votes
1answer
49 views
DSL configuration within activerecord model in Rails 3
I want to build reports for some database data. I store report's settings in database through activerecord models, but I don't want that, I want to write something like
class Department < ...
3
votes
3answers
1k views
ruby rules engine
I feel like that I am about to reinvent the wheel here, so before I do that ...
I have a large set of data that I need to process, and the 'rules' that process the data will evolve over time, so I ...
0
votes
2answers
174 views
Ruby operator overloading method from block
I'm using Ruby 1.9.2. For example i've got class :
class Test
def ==(param)
# some process
end
def bar(param)
puts "foo bar #{param}"
end
end
I can invoke bar method using :
...
1
vote
2answers
109 views
How do I stop the others validations to validate when the attribute is not :present in Rails?
What I'm curretly doing is the following:
validates :new_pass,
:presence => {:if => :new_record?},
:confirmation => {:if => :password_not_blank?},
:length ...
1
vote
2answers
2k views
Rake 0.9.1 causing rake:db:migrate to yield deprecation issue, can't downgrade to 0.8.7
I ran a bundle install on my Gemfile recently, and tried to rake:db:migrate. This migration didn't work, and outputs:
WARNING: Global access to Rake DSL methods is deprecated. Please include
... ...
0
votes
1answer
183 views
Ruby: looking for ruby-embeddable interpreter or scripting language
In response to a previous question, @Pablo Fernandez suggested I implement a simple interpreter using Treetop to embed in my RoR application. It looks like a good approach.
But I can't help but ...
3
votes
2answers
612 views
How would you design such a DSL in Ruby?
I've read that Ruby is great for domain specific languages. In the past few months i've been creating a browser game, an rpg type. At some point, i would want users to be able to take and finish ...
1
vote
1answer
137 views
Understanding creation of acts_as_anything
I successfully created a gem having some classes and modules to be'ing able to to something like that in ANY kind of class in a Rails project:
class AnyRubyOrActiveModelClass
acts_as_anything ...
2
votes
1answer
285 views
Which MongoDB DSL should I learn?
Im using MongoDB and Ruby.
I have noticed there are different DSL:s.
The Javascript DSL used with the MongoDB client (mongo):
show dbs
use my_db
db.person.find({first_name: "Syd"})
The Ruby DSL ...
1
vote
4answers
2k views
Why is rails called a dsl?
Recently, when I tried to explain why Rails is a DSL to an intern at my organisation, I was not able to articulate my reasonings to the effect I would like to. Maybe I do not understand the space well ...
0
votes
2answers
258 views
How to get started with Ruby? How can I use Ruby? What is it famous for? How is a DSL going to be useful?
What are some great Learning resources? What kind of problems do I solve with Ruby? Is learning ruby on rails same as ruby? If my current background is visual studio and microsoft.net framework, is ...
1
vote
2answers
1k views
Can we use RubyOnRails for Banking and financial transactions domain
Can we use RubyOnRails framework to develop websites for financial transactions & banking transcations.
Is RubyonRails a DSL for banking Domains.
Some days on DSL, i believe most of the facts of ...
