Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8845759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:48:37+00:00 2026-06-14T11:48:37+00:00

My yml file looks like: defaults: &defaults key1: value1 key2: value2 .. .. My

  • 0

My yml file looks like:

defaults: &defaults
  key1: value1
  key2: value2
  ..
  ..

My template files have the following:

<%= key1 %>
<%= key2 %>

So my script has a list of files, loops through them and I want to pass the yml object to my erb for parsing:

config = YAML::load(File.open('config.yml'))ENV['ENV']

file_names.each do |fn|

  file = File.new "#{fn}", "r"

  template = ERB.new file

  result = template.result

  # save file here

end

How do I pass my config object to the erb templating system?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T11:48:38+00:00Added an answer on June 14, 2026 at 11:48 am

    With help from http://ciaranm.wordpress.com/2009/03/31/feeding-erb-useful-variables-a-horrible-hack-involving-bindings/

    Not super pretty, but if you hid the class away then it’s not so bad. Downside is you’ll probably run into problems calling other methods that don’t exist in the ThingsForERB class so you’ll want to think about that before just changing things over to use config['key1'] as Sergio suggested.

    require 'erb'
    
    config = {'key1' => 'aaa', 'key2' => 'bbb'}
    
    class ThingsForERB
      def initialize(hash)
        @hash = hash.dup
      end
      def method_missing(meth, *args, &block)
        @hash[meth.to_s]
      end
      def get_binding
        binding
      end
    end
    
    
    template = ERB.new <<-EOF
      The value of key1 is: <%= key1 %>
      The value of key2 is: <%= key2 %>
    EOF
    puts template.result(ThingsForERB.new(config).get_binding)
    

    When run the output is:

      The value of key1 is: aaa
      The value of key2 is: bbb
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I have a yml file for my rails configuration... settings.yml defaults: &defaults interceptor_email:
I have a YML file containing fixtures for a Rails model (Comment) which looks
I am using Doctrine with Symfony2. My config.yml file looks something like this:- Doctrine
I have a Rails app with a config/my_private_data.yml file. I would like to push
Whenever I run rake assets:precompile , I get a manifest.yml file that looks like:
I have a page where its meta-contents are deriving from view.yml file. <meta name=robots
I have a file called config.yml in my /config folder of my rails application.
I have a file located at [application]/config/routing.yml, when I change something in there, the
I have a database configuration file, database.yml, which needs to be in Git because
I have runned cap deploy:setup & cap deploy:check, everything looks fine and dandy... However

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.