0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A simple gem for querying the Github jobs api
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0
>= 0
 Project Readme

Gem Version Build Status Dependency Status

github-jobs

For your ruby apps that need to consume the Github jobs api...

Installation

Add this line to your application's Gemfile:

gem 'github-jobs'

Usage

Search for jobs by term, location, full time vs part time, or any combination of the three. All parameters are optional.

Parameter Description
description A search term, such as "ruby" or "java". This parameter is aliased to search
location A city name, zip code, or other location search term
lat A specific latitude. If used, you must also send long and must not send location
long A specific longitude. If used, you must also send lat and must not send location
full_time If you want to limit results to full time positions set this parameter to 'true'
search A query string
markdown Set to 'true' to get the description and how_to_apply fields as Markdown

Below are some code examples

Github::Jobs.positions

Github::Jobs.positions(search: 'ruby', location: 'london', markdown: true)

Github::Jobs.positions.first.title

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Copyright

© Copyright George Drummond 2014 - MIT License