Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have lot of helpers in my main Sinatra project_name.rb and I want to remove them to the external file, what is the best practice to do that ?

from ./preject_name.rb

   helpers do
     ...#bunch of helpers
   end

to for exapmple ./helpers/something.rb

thank you

share|improve this question

3 Answers

up vote 4 down vote accepted

Just as you said it yourself:

Move the helpers block into another file and require it where you need.

#helpers.rb
helpers do
...
end

#project_name.rb
require 'path/to/helpers.rb'
share|improve this answer
lol, simple :) why didn't I tryied in firstplace :) thank you, I used is like require "#{File.dirname(__FILE__)}/helpers/helpers.rb" – equivalent8 Aug 3 '11 at 13:56
When you use Ruby 1.9.2 you might aswell use require_relative 'helpers/helpers' instead of that File-construct – daddz Aug 3 '11 at 14:10
what's the advantage ? ... and I kinda want this project to run on all machines, will be on github for share :) – equivalent8 Aug 4 '11 at 9:34
Not sure if it has any impact besides it just looks better/cleaner imho. – daddz Aug 4 '11 at 10:38
1  
tried this and it didn't work. Full answer below. – Dave Sag Oct 4 '11 at 2:02
show 1 more comment

Alas, if, like me, you are building a modular Sinatra app, it's a little more complex than simply moving the helpers out into another file.

The only way I got this to work is as follows.

first up in your app (I'll call this my_modular_app.rb)

require 'sinatra/base'
require 'sinatra/some_helpers'

class MyModularApp < Sinatra::Base
  helpers Sinatra::SomeHelpers

  ...

end

and then create the folder structure ./lib/sinatra/ and create some_helpers.rb as follows:

require 'sinatra/base'

module Sinatra
  module SomeHelpers

    def help_me_world
      logger.debug "hello from a helper"
    end

  end

  helpers SomeHelpers

end

doing this you can simply split all your helpers up into multiple files, affording more clarity in larger projects.

share|improve this answer
I think it can be more simple. See answer below. – kgpdeveloper Mar 31 at 13:59

The simple and recommended way:

module ApplicationHelper

# methods

end

class Main < Sinatra::Base

  helpers ApplicationHelper

end
share|improve this answer
I'll give that a go – Dave Sag Mar 31 at 22:29
@DaveSag great. If you read the Sinatra book, it's there. – kgpdeveloper Apr 1 at 6:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.