Tagged Questions
0
votes
0answers
26 views
Ruby: How to DRY subclassing of DSL-expressed classes?
I'm currently building out a Storm topology using RedStorm. In doing so, I've come across the desire to subclass out Bolts so that I can reduce the complexity of my code base. In RedStorm, Bolts are ...
0
votes
0answers
16 views
Ruby DSL - object storage and associations
I'm venturing into the world of Ruby DSL's and while I have done this before those languages I've created have been imperative in nature. Do X, then Y, then Z.
I've got a piece of software that has a ...
2
votes
1answer
58 views
Ruby DSL: Can you pass a block to an object
I'm quite new to Ruby and just exploring around with DSL. I'm wondering if this is possible in Ruby, and if so, how would one do this?
melissa = Player.new
melissa do
on :turn do
puts "It's my ...
1
vote
1answer
20 views
Capturing the spec filename in a ruby DSL implementation?
I am writing a ruby DSL that will be used to code-generate a number of Objective-C++ functions. I would like the name of each function to be derived from the name of its ruby DSL source file.
For ...
0
votes
2answers
37 views
Is it possible to redefine “describe”?
Is there any way I can redefine describe so that I can, for example, write
new_describe MyModule::MyClass do
it "does this" do
end
it "does that" do
end
end
instead of
describe "something" ...
0
votes
0answers
194 views
Chef Recipes - Setting node attributes in ruby_block
I have a Chef recipe for a multi-node web service, each node of which needs to get the hostname and IP of the other nodes, to put it into its own local configuration.
The code is shown below. The ...
4
votes
2answers
92 views
How to create this little DSL in Ruby?
My functions are:
def hello(str)
puts "hello #{str}"
end
def hello_scope(scope, &block)
# ???
end
I would like to temporarily augment a function within a block of my method.
In ...
0
votes
0answers
93 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
...
1
vote
3answers
84 views
block like parameter for Ruby DSL
I have a ruby code that currently look like this:
grades.sum{|g| g.grade * g.weight}
For a user maintained DSL, I would like to implement something like this:
grades.sum('grade' * 'weight')
Is ...
0
votes
2answers
34 views
The proper style to test a function over a variety of inputs
I need to test a following line:
result = handle(streamOfMessages)
Where messages and context are well-populated hashes. I could write the it like this:
messages1 = [ ...
3
votes
2answers
139 views
Is this internal DSL syntax possible in Ruby?
I'm trying to create an internal DSL for Ruby, I haven't started coding it yet, and I'm wondering if this syntax is possible in Ruby:
IF more_than: 1, :class smells to: "god class", sense: HIGH and ...
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 ...
2
votes
2answers
102 views
Writing a DSL method in ruby that will create a method with arguments
I'm attempting to write a DSL for a background worker class, and I'm a little stuck trying to accomplish something.
Ideally, I should be able to write a job worker like the following...
job ...
5
votes
2answers
118 views
Monkey patching built-in ruby classes in limited scopes
I'm working on an internal Ruby DSL and to make it look as pretty as possible I need to monkey patch the Symbol class and add some operators. I want to be responsible in how I do this and would like ...
0
votes
1answer
104 views
puppet like dsl in ruby
I'm implementing an internal DSL using ruby. I provide a command line tool to execute DSL scripts written in files (much like puppet). At first I was going to use load() to run the scripts, thing is, ...
0
votes
1answer
89 views
loading an input file in Ruby which is a slight variation of Ruby
Is there a way that I can load a user-defined Ruby input file into my application in a way that I can access any variables, methods, and classes defined in the input file?. An example input file might ...
0
votes
1answer
85 views
Access to nested methods when DSL
class Warcraft
def initialize &block
instance_eval &block
end
def method_missing name, *args, &block
instance_variable_set("@#{name}".to_sym, args[0])
...
0
votes
1answer
84 views
ruby dsl making
I try to write DSL
class Warcraft
class << self
def config
unless @instance
yield(self)
end
@instance ||= self
end
attr_accessor :name, :battle_net
...
0
votes
1answer
123 views
Refactoring to no block parameters in a Ruby internal DSL
I've got a little DSL that looks like this:
ActivityLogger.log do
activity('27-06-2012') do
eat do |act|
act.duration = 15
act.priority = 5
end
end
end
I want to refactor it ...
1
vote
1answer
132 views
How to create dsl
I want to make DSL construction for my class something like
class Car
brand :mercedes
end
What code I need to write?
2
votes
1answer
404 views
Design patterns/advise on building a Rule engine
I have a need to build an app (Ruby) that allows the user to select one or more patterns and in case those patterns are matched to proceed and complete a set of actions.
While doing my research I've ...
1
vote
1answer
117 views
Ruby DSLs and Dynamic Documentation?
How do you approach defining a DSL with a dynamic number of arguments being created for the method such as in the following example:
module my_module
class Resource
# @macro dsl_method
# ...
0
votes
1answer
134 views
Metaprogramming with ruby, operator overloading and instance_eval
For example i've class like :
class QueryDSL
def initialize(&block)
instance_eval &block
end
def ==(value)
"bla bla '#{value}'"
end
def test(param)
param + param
end
...
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 :
...
0
votes
2answers
83 views
Making a Ruby block return an array?
I've made a small DSL-like program for adding drinks to an array. It's a pretty basic example for using instance_eval and &block to create a quick program.
Here's the program:
class Drinks
def ...
2
votes
0answers
131 views
What programming languages are 'general purpose' and 'domain specific'? [closed]
I've read a few posts on SO about different DSL's and GP languages but I'm still a bit confused as to how you define a programming language to be one or the other.
My understanding so far (and ...
2
votes
1answer
413 views
Rake (Ruby) equivalent internal DSL in C#
For insight into the below, read: http://martinfowler.com/articles/rake.html
I've been using Rake (with Albacore) recently, and like it alot. Mostly the strength of having the Ruby language right at ...
0
votes
2answers
187 views
Ruby DSL Initialization of Variables
I'm trying to replicate the functionality of Sinatra. Specifically the DSL-like part where you can define routes in the definition of the class. When I try to run my version of a persons-DSL I get ...
3
votes
3answers
190 views
Using ruby to automate tasks [closed]
I would like to learn some scripting to help automate some common tasks. Is ruby a good language to learn for this and what gems will be useful?
I would like to make scripts similar to this bash ...
7
votes
3answers
289 views
DSL block without argument in ruby
I'm writing a simple dsl in ruby. Few weeks ago I stumbled upon some blog post, which show how to transform code like:
some_method argument do |book|
book.some_method_on_book
...
-2
votes
1answer
199 views
Something like Ruby and Scala for a PHP developer? [closed]
First a brief story:
once upon a time there was a Joe who was very happy with C, then came the OOP and C++ then the inevitable web-fuzz and, for him, PHP; been there for another quite a while and ...
0
votes
2answers
395 views
Is there a way to override instance variable lookup at ruby?
Say if I want to return something else if variable isn't initialized instead of Nil?
Also I'd like to only overload it per class not globally.
(The reason for this is mainly to play with crazy ...
11
votes
4answers
1k views
Are there technical reasons a Ruby DSL like RSpec couldn't be rewritten in Python?
The section below goes into more detail, but basically someone stated that the Ruby-written DSL RSpec couldn't be rewritten in Python. Is that true? If so, why?
I'm wanting to better understand the ...
1
vote
1answer
83 views
Ruby initialize: why doesn't it execute my read instruction
This is code from the day 3 of the Ruby section of 7 programming languages in 7 weeks. I can't get it to output anything if I don't write m.read just after m = RubyCsv.new
Shouldn't the initialize ...
-1
votes
1answer
396 views
ruby hash tree with blocks
how can I do this:
class MyClass
tile 'some title'
collection do
node1 'node1'
node2 'node2'
another_collection do
node1 'node1'
node2 'node2'
end
end
...
2
votes
2answers
174 views
How to write a DSL that is not in isolation to the block's environment?
I am trying to write a small Ruby DSL and have stumbled upon an inconvenience. Right now my "DSL" code is https://gist.github.com/0379b07f516f4f322204 and my implementation code (inside an .html.erb ...
0
votes
2answers
201 views
Business Natural Language for Ruby beginners
I would like to know where would you begin for doing natural language processing in Ruby. I am a C# programmer, and although I found this C# tutorial:
Writing Your First Domain Specific Language, I ...
1
vote
1answer
197 views
How to run a Proc within a dynamically generated module?
It might sound confusing, but I'm working with a small team of newcomers, and I'm trying to abstract away some things in ruby to make things go more smoothly. The part I'm having problems with is ...
8
votes
2answers
2k views
Dynamically define named classes in Ruby
I am writing an internal DSL in Ruby. For this, I need to programmatically create named classes and nested classes. What is the best way to do so? I recon that there are two ways to do so:
Use ...
2
votes
2answers
85 views
How to create natural variable allocation
I am working on a fairly simple DSL and would like to be declare and allocate variables more naturally.
GlobalMemory.init {
val1 5
val2 "some string"
}
This is for a simple VM that runs the ...
1
vote
2answers
46 views
Enforcing method calls
I am playing around with creating a DSL. I am using http://jroller.com/rolsen/entry/building_a_dsl_in_ruby as a guide.
Given this DSL:
question 'Who was the first president of the USA?'
wrong 'Fred ...
0
votes
1answer
131 views
Re-using Ruby DSL in a REPL or irb?
I have developed a simple DSL for tasks on a UniVerse database in jruby. It looks something like this
support = {
:host => 'localhost',
:account => 'SUPPORT'
}
uni_task support do
...
1
vote
1answer
129 views
Access Associating Methods with Node in Treetop
With the grammar defined as below, why I keep get error while try to access the val method of nodes created by rule key?
The error message is
(eval):168:in `val': undefined local variable or method ...
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 ...
10
votes
2answers
1k views
Resources for learning how to design good API wrappers in ruby
I'd like to learn how to design good API wrappers in ruby. I'm looking for:
blog articles
tutorials
best code and library to learn from the code directly (well commented and designed)
books
... ...
1
vote
3answers
707 views
Ruby blocks with method_missing
Note, this is a follow up to my question here.
I'm trying to parse the following Tcl code:
foo bar {
biz buzz
}
In Tcl, foo is the method name, bar is the argument, and the rest is a "block" to ...
0
votes
2answers
217 views
Use Ruby to parse a Tcl DSL
I would like to be able to parse some Tcl code where arguments are not surrounded by strings.
Consider this tcl code:
proc foo {name} {
puts "Foo --> $name"
}
foo bar
For those ...
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
436 views
What's the cleanest way to ignore empty nodes with Nokogiri::XML::Builder
So let's say I have a builder template like the following:
builder = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') do |xml|
xml.environment do |environment|
environment.title title
...
8
votes
2answers
5k views
Tutorials for writing DSL in Ruby
What are the good online tutorials on how to implement DSLs in Ruby? I am looking for hands-on examples that explain the whole process.
I am aware that there is this question on good books about DSLs ...
