Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

splitting up the dsl block #18

Open
bf4 opened this issue Jun 15, 2014 · 4 comments
Open

splitting up the dsl block #18

bf4 opened this issue Jun 15, 2014 · 4 comments

Comments

@bf4
Copy link

bf4 commented Jun 15, 2014

Issue by imajes
Monday May 14, 2012 at 19:19 GMT
Originally opened as asmuth#76


i love the way you have Fnordmetric.namespace :x do .. end - but is there a way to split this up to different ruby files?

it'd be cool to just include app/metrics/*.rb or something, and that would allow me to break it up by 'tab' in the app. Right now my metrics files run to 100s - 1000s of lines, and this makes debugging and such a bit nastier than it has to.

thanks!

@bf4
Copy link
Author

bf4 commented Jun 15, 2014

Comment by kulesa
Tuesday May 15, 2012 at 13:27 GMT


I split DSL code between files like this:

# somewhere in initializer
def define_namespace(namespace)
  FnordMetric.namespace namespace do
    instance_eval(File.read(Rails.root.join("app/metrics", "#{namespace}.rb")))
  end
end

define_namespace(:user)
define_namespace(:performance)

Then just put content of namespace blocks in files in app/metrics:

# app/metrics/user.rb
gauge :sign_ups, :tick => 1.day.to_i, :title => "Sign ups"

@bf4
Copy link
Author

bf4 commented Jun 15, 2014

Comment by imajes
Tuesday May 15, 2012 at 15:04 GMT


That worked? I did something similar but it had only the effect of overwriting the namespace with the last file it found. :(

@bf4
Copy link
Author

bf4 commented Jun 15, 2014

Comment by kulesa
Tuesday May 15, 2012 at 15:19 GMT


Yes, it works, I have configured have two namespaces like this.

@bf4
Copy link
Author

bf4 commented Jun 15, 2014

Comment by imajes
Tuesday May 15, 2012 at 16:26 GMT


Ah I see it. i don't, however, want to split the namespace. maybe i will for the future i guess.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant