buren / metrojobb

Build a feed for Metrojobb with ease.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Metrojobb Build Status

Build a feed for Metrojobb with ease.

Installation

Add this line to your application's Gemfile:

gem 'metrojobb'

And then execute:

$ bundle

Or install it yourself as:

$ gem install metrojobb

Usage

ℹ️ For detailed usage please see the test suite in spec/.

Examples

Create full XML-document

ads = Metrojobb::Ads.new([ad])
ads.to_xml # Returns the full XML document

Single model

region = Metrojobb::Region.new(name: 'Stockholms län')
region.valid? # => true
region.errors[:region_id] # => []
region.to_xml # => '<region><id>1</id></region>'

Single model with errors

region = Metrojobb::Region.new(id: 'invalid id')
region.valid? # => false
region.errors[:region_id] # => ["is not included in the list"]

Ad model:

ad = Metrojobb::Ad.new(
  order_number: '<<your-id>>'
  external_application: true,
  heading: '',
  job_title: '',
  summary: '',
  description: '',
  employer: '',
  employer_home_page: '',
  opportunities: '',
  from_date: '2018-09-01',
  to_date: '2018-10-01',
  external_logo_url: 'https://example.com',
  application_url: 'https://example.com',
  video_url: 'https://example.com',
  # relations
  location: Metrojobb::Location.new(city: 'Stockholm'),
  contact: Metrojobb::Contact.new(name: 'buren'),
  employment_type: Metrojobb::EmploymentType.new(id: '1'),
  category: Metrojobb::Category.new(id: '1'),
  region: Metrojobb::Region.new(id: '1')
)

ad.to_xml # Returns the ad as an XML-string

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Data

⚠️ Current data in data/ folder downloaded 2017-09-19 14:41 UTC.

Categories, regions and employment types implemented on Metrojobb.se

Update data

cd data/
wget http://www.metrojobb.se/data/regions.csv
wget http://www.metrojobb.se/data/categories.csv
wget http://www.metrojobb.se/data/employmenttypes.csv

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/buren/metrojobb.

License

The gem is available as open source under the terms of the MIT License.

About

Build a feed for Metrojobb with ease.

License:MIT License


Languages

Language:Ruby 99.5%Language:Shell 0.5%