Skip to content

Instantly share code, notes, and snippets.

@Kalimaha
Created April 24, 2016 06:20
Show Gist options
  • Select an option

  • Save Kalimaha/5e4caaa47586b63f79c16a866dd828e3 to your computer and use it in GitHub Desktop.

Select an option

Save Kalimaha/5e4caaa47586b63f79c16a866dd828e3 to your computer and use it in GitHub Desktop.
Generate random fixtures in Ruby-on-Rails
<% 1000.times do |n| %>
user_<%= n %>:
first_name: <%= ['Bruce', 'Steve', 'Dave', 'Janick', 'Adrian', 'Nicko'].sample %>
last_name: <%= ['Dickinson', 'Harris', 'Murray', 'Gers', 'Smith', 'McBrain'].sample %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment