Tagged Questions

12
votes
1answer
1k views

How do I escape ERB code in fixtures?

I have a simple fixture.yml label: body: "<%= variable %>" The issue is that the erb code is parsed as part of loading the fixture, but I actually want to body to be "<%= variable %>" ...
1
vote
0answers
157 views

Ruby on Rails - Fixtures populate sqlite3 database with wrong utf-8 encoding

Seeding the sqlite3 database with Fixtures did work with config1 but with config2 utf-8 support fails. config1: Ubuntu 11.04, ruby 1.9.2p136, Rails 3.0.3, "development" environment config2: OS X ...
1
vote
3answers
565 views

How do I populate a table in rails from a fixture?

Quick summary: I have a Rails app that is a personal checklist / to-do list. Basically, you can log in and manage your to-do list. My Question: When a user creates a new account, I want to populate ...