Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/buren/metrojobb
Build a feed for Metrojobb with ease.
https://github.com/buren/metrojobb
metrojobb rubygem
Last synced: 2 months ago
JSON representation
Build a feed for Metrojobb with ease.
- Host: GitHub
- URL: https://github.com/buren/metrojobb
- Owner: buren
- License: mit
- Created: 2017-09-19T17:43:51.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-01T04:41:02.000Z (about 1 year ago)
- Last Synced: 2024-09-14T00:11:36.917Z (3 months ago)
- Topics: metrojobb, rubygem
- Language: Ruby
- Size: 63.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-sweden - Ruby
README
# Metrojobb [![Build Status](https://travis-ci.org/buren/metrojobb.svg?branch=master)](https://travis-ci.org/buren/metrojobb)
Build a feed for Metrojobb with ease.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'metrojobb'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install metrojobb
## Usage
:information_source: For detailed usage please see the test suite in `spec/`.
__Examples__
Create full XML-document
```ruby
ads = Metrojobb::Ads.new([ad])
ads.to_xml # Returns the full XML document
```Single model
```ruby
region = Metrojobb::Region.new(name: 'Stockholms län')
region.valid? # => true
region.errors[:region_id] # => []
region.to_xml # => '1'
```Single model with errors
```ruby
region = Metrojobb::Region.new(id: 'invalid id')
region.valid? # => false
region.errors[:region_id] # => ["is not included in the list"]
```Ad model:
```ruby
ad = Metrojobb::Ad.new(
order_number: '<>'
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](https://rubygems.org).
## Data
:warning: Current data in `data/` folder downloaded 2017-09-19 14:41 UTC.
Categories, regions and employment types implemented on Metrojobb.se
- Regions: http://www.metrojobb.se/data/regions.csv
- Categories: http://www.metrojobb.se/data/categories.csv
- Employment types: http://www.metrojobb.se/data/employmenttypes.csv__Update data__
```bash
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](https://opensource.org/licenses/MIT).