Skip to content

Instantly share code, notes, and snippets.

@yatinsns
Created June 10, 2015 06:03
Show Gist options
  • Save yatinsns/64a1e56569a95e6e3385 to your computer and use it in GitHub Desktop.
Save yatinsns/64a1e56569a95e6e3385 to your computer and use it in GitHub Desktop.
Open Fogbugz Tasks
TASKS_IDS = [1138, 1735, 1734, 1641, 1629, 1628, 1625, 1506, 1555, 1554, 1193, 1526, 1626, 1710, 1395, 1539, 1189, 1317, 1483, 1481, 1482]
def open_links
TASKS_IDS.each do |task_id|
`open https://talkto.fogbugz.com/f/cases/#{task_id}/`
sleep 0.5
end
end
open_links if __FILE__ == $0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment