https://github.com/mickey/job_board
A simple moderated job board aggregator
https://github.com/mickey/job_board
Last synced: 11 months ago
JSON representation
A simple moderated job board aggregator
- Host: GitHub
- URL: https://github.com/mickey/job_board
- Owner: mickey
- Created: 2010-10-31T13:48:46.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-11-16T18:06:49.000Z (over 15 years ago)
- Last Synced: 2025-03-18T18:58:38.359Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.12 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Launch specs with rake spec so the db is reset !
# find all jobs where tags are either id1, id2 or id3 => id1 || id2 || id3
#Job.all(:conditions => {'tag_ids' => [id1, id2, id3]})
#find all jobs where tags contains id1, id2 AND id3 => id1 && id2 && id3
#Job.all(:conditions => {'tag_ids' => {'$all' => [id1, id2, id3] }})