Skip to content

Instantly share code, notes, and snippets.

@mlambie
Last active September 23, 2015 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlambie/581951 to your computer and use it in GitHub Desktop.
Save mlambie/581951 to your computer and use it in GitHub Desktop.
# The desired array
frequencies = ["hourly", "daily", "weekly", "monthly"]
# Shorthand conversion into array
frequencies = %w{hourly daily weekly monthly}
# Note the delimiter is not important, but must match
frequencies = %w"hourly daily weekly monthly"
frequencies = %w|hourly daily weekly monthly|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment