lever_postings 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.rubocop.yml +16 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +152 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lever_postings.gemspec +31 -0
- data/lib/lever_postings.rb +29 -0
- data/lib/lever_postings/client.rb +47 -0
- data/lib/lever_postings/error.rb +10 -0
- data/lib/lever_postings/posting.rb +17 -0
- data/lib/lever_postings/version.rb +3 -0
- metadata +187 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0cca75eb1f6af1ad679a7ca2b6cc7ecfa747de8e
|
4
|
+
data.tar.gz: c1bd31b5aacfe15d12f4fb4214d0370f930b7a20
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 94fd707ca31acd9e29fa7207240fdc3abd9a11ef52217f9a424f4f86aec8f93c708fd3300bdf84a8a9616ad1d686ba79ffcd9f6dd6d57eb8404925ad6bdb0657
|
7
|
+
data.tar.gz: e049222ae6b8437fc3731e7d23bf3d14dd0daeb89a5d2f25e4d301b79299872835afa4bd1783f6aa8502112d201228546ef419f666224d732418677abc792c85
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
Style/StringLiterals:
|
2
|
+
Enabled: false
|
3
|
+
Metrics/LineLength:
|
4
|
+
Max: 100
|
5
|
+
|
6
|
+
# Allow for commas at the end of multi-line literals.
|
7
|
+
#
|
8
|
+
# Example:
|
9
|
+
# {
|
10
|
+
# body: "Hello World",
|
11
|
+
# }
|
12
|
+
#
|
13
|
+
# This style protects against forgetting to add a comma and makes git diffs
|
14
|
+
# smaller.
|
15
|
+
TrailingComma:
|
16
|
+
EnforcedStyleForMultiline: comma
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Sean Abrahams
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,152 @@
|
|
1
|
+
# Lever Postings API
|
2
|
+
|
3
|
+
A Ruby client for [Lever.co's Postings API](https://github.com/lever/postings-api). This gem is limited to the functionality of Lever.co's Postings API (which is separate from their more comprehensive Lever API) and is intended to be used for the display of, and application to, jobs from your own web site. For more information see: https://github.com/lever/postings-api
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'lever_postings'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install lever_postings
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
### Get Job Postings
|
24
|
+
|
25
|
+
Job postings for a company:
|
26
|
+
```ruby
|
27
|
+
LeverPostings.postings "<site name, ex: leverdemo>"
|
28
|
+
```
|
29
|
+
|
30
|
+
Individual job posting:
|
31
|
+
```ruby
|
32
|
+
LeverPostings.postings "<site name, ex: leverdemo>", id: "<specific job posting ID>"
|
33
|
+
```
|
34
|
+
|
35
|
+
Job postings for a company with query parameters:
|
36
|
+
```ruby
|
37
|
+
LeverPostings.postings "<site name, ex: leverdemo>", team: "Engineering", location: "San Francisco"
|
38
|
+
```
|
39
|
+
|
40
|
+
| Query parameter | Description |
|
41
|
+
| --------------- | ----------------------------- |
|
42
|
+
| mode | The rendering output mode. json or html. Default is json. |
|
43
|
+
| skip | skip N from the start |
|
44
|
+
| limit | only return at most N results |
|
45
|
+
| location | Filter postings by location |
|
46
|
+
| commitment | Filter postings by commitment. |
|
47
|
+
| team | Filter postings by team. |
|
48
|
+
| level | Filter postings by level. |
|
49
|
+
| group | May be one of `location`, `commitment`, or `team`. Returns results grouped by category |
|
50
|
+
|
51
|
+
|
52
|
+
#### Postings Result Example
|
53
|
+
|
54
|
+
JSON results are parsed and converted into Hashie::Mash objects for property style access to data (posting.text instead of posting[:text]).
|
55
|
+
|
56
|
+
| Field | Description |
|
57
|
+
| ----------- | ----------------------------- |
|
58
|
+
| id | Unique Job ID
|
59
|
+
| text | Posting name
|
60
|
+
| categories | Object with location, commitment and team
|
61
|
+
| description | Job description
|
62
|
+
| lists | Extra lists of things like requirements from the job posting. This is a list of `{text:NAME, content:"unstyled HTML of list elements"}`
|
63
|
+
| additional | Optional closing content for the job posting. May be an empty string.
|
64
|
+
| id | Unique Job ID
|
65
|
+
| hostedUrl | A URL which points to lever's hosted job posting page. [Example](https://jobs.lever.co/leverdemo/5ac21346-8e0c-4494-8e7a-3eb92ff77902)
|
66
|
+
| applyUrl | A URL which points to lever's hosted application form to apply to the job posting. [Example](https://jobs.lever.co/leverdemo/5ac21346-8e0c-4494-8e7a-3eb92ff77902/apply)
|
67
|
+
|
68
|
+
```ruby
|
69
|
+
posting = LeverPostings.postings("<site name, ex: leverdemo>")[0]
|
70
|
+
posting.id # => "5ac21346-8e0c-4494-8e7a-3eb92ff77902"
|
71
|
+
posting.text # => "Account Executive"
|
72
|
+
posting.description # => "Be a foundational member on a fast-growing sales team..."
|
73
|
+
posting.lists # => [
|
74
|
+
# { text => "WITHIN ONE MONTH YOU WILL:"
|
75
|
+
# content => "<li>Thoroughly know our customers, their needs, and ..." },
|
76
|
+
# { text => "WITHIN 3 MONTHS YOU WILL:"
|
77
|
+
# content => "<li>Master a consultative strategy to sell Lever’s..." },
|
78
|
+
# { text => "WITHIN 6 MONTHS YOU WILL:"
|
79
|
+
# content => "<li>Shape, iterate, and scale our sales strategy..." }
|
80
|
+
# ]
|
81
|
+
posting.lists[0].text # => "WITHIN ONE MONTH YOU WILL:"
|
82
|
+
posting.created_at # => 1380917667108
|
83
|
+
posting.hostedUrl # => "https://jobs.lever.co/leverdemo/5ac21346-8e0c-4494-8e7a-3eb92ff77902"
|
84
|
+
posting.applyUrl # => "https://jobs.lever.co/leverdemo/5ac21346-8e0c-4494-8e7a-3eb92ff77902/apply"
|
85
|
+
posting.categories # => { team => "Sales"
|
86
|
+
# location => "Mountain View"
|
87
|
+
# commitment => "Full-time" }
|
88
|
+
# ]
|
89
|
+
posting.categories.team # => "Sales"
|
90
|
+
```
|
91
|
+
|
92
|
+
### Apply to a job posting
|
93
|
+
|
94
|
+
This enables you to add job applicants via a custom form on your site.
|
95
|
+
|
96
|
+
The API is modeled off Lever's hosted jobs form. If in doubt about custom
|
97
|
+
fields, look at any job application form on jobs.lever.co, [for example
|
98
|
+
here](https://jobs.lever.co/leverdemo/491029da-9b63-4208-83f6-c976b6fe2ac5/apply).
|
99
|
+
|
100
|
+
To use the POST API you need an API key. For now, this must be configured by a Lever employee. Contact support and they can set you up.
|
101
|
+
|
102
|
+
```ruby
|
103
|
+
LeverPostings.apply "<site name, ex: leverdemo>", "<API key>", {
|
104
|
+
posting_id: "<specific job posting ID>",
|
105
|
+
name: "Spock",
|
106
|
+
email: "spock@yourcompany.com",
|
107
|
+
resume: File.open("/path/to/resume.ext"),
|
108
|
+
phone: "415-555-5555",
|
109
|
+
org: "United Federation of Planets",
|
110
|
+
urls: {
|
111
|
+
github: "https://github.com/spock",
|
112
|
+
twitter: "https://twitter.com/spock" },
|
113
|
+
comments: "LLAP",
|
114
|
+
silent: true
|
115
|
+
}
|
116
|
+
```
|
117
|
+
|
118
|
+
When testing be aware that Lever de-duplicates candidates using their email address. You won't see duplicate testing candidates appear on hire.lever.co.
|
119
|
+
|
120
|
+
The candidate will be emailed after they apply to the job, unless the `silent` field is set to true
|
121
|
+
|
122
|
+
|
123
|
+
| Field | Description |
|
124
|
+
| ----------------- | ----------------------------- |
|
125
|
+
| `name` (*required*) | Candidate's named |
|
126
|
+
| `email` (*required*)| Email address |
|
127
|
+
| `resume` | Résumé data. Must be a file.
|
128
|
+
| `phone` | Phone number
|
129
|
+
| `org` | Current company / organization
|
130
|
+
| `urls` | Hash of URLs for sites (Github, Twitter, LinkedIn, Portfolio, Other, etc): `{ github: "https://github.com/lever", twitter: "https://twitte.com/lever" }`
|
131
|
+
| `comments` | Additional information from the candidate
|
132
|
+
| `silent` | Disables confirmation email sent to candidates upon application
|
133
|
+
|
134
|
+
The server will respond with JSON object.
|
135
|
+
|
136
|
+
- On success, **200 OK** and a body of `{ok:true, applicationId: '...'}`
|
137
|
+
- The applicationId returned can be used to view the candidate profile in Lever at the url: `https://hire.lever.co/search/application/{applicationId}`. Note that only users logged in to Lever will be able to access that page.
|
138
|
+
- On error, Lever will send the appropriate HTTP error code and a body of `{ok:false, error:<error string>}`.
|
139
|
+
|
140
|
+
## Development
|
141
|
+
|
142
|
+
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.
|
143
|
+
|
144
|
+
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).
|
145
|
+
|
146
|
+
## Contributing
|
147
|
+
|
148
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/otelic/lever_postings. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
149
|
+
|
150
|
+
## License
|
151
|
+
|
152
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "lever"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'lever_postings/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "lever_postings"
|
8
|
+
spec.version = LeverPostings::VERSION
|
9
|
+
spec.authors = ["Sean Abrahams"]
|
10
|
+
spec.email = ["abrahams@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q(Ruby library for accessing Lever.co's Postings API)
|
13
|
+
spec.description = %q(Ruby library for accessing Lever.co's Postings API)
|
14
|
+
spec.homepage = "https://github.com/otelic/lever_postings"
|
15
|
+
spec.license = "MIT"
|
16
|
+
spec.required_ruby_version = '>= 1.9.3'
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "faraday", "~> 0.9"
|
22
|
+
spec.add_dependency "multi_json", "~> 1.10"
|
23
|
+
spec.add_dependency "hashie", "~> 3.0"
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
26
|
+
spec.add_development_dependency "pry", "~> 0.10"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
spec.add_development_dependency "rspec", "~> 3.3"
|
29
|
+
spec.add_development_dependency "webmock", "~> 1.21"
|
30
|
+
spec.add_development_dependency "vcr", "~> 2.9"
|
31
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require "faraday"
|
2
|
+
require "hashie"
|
3
|
+
require "multi_json"
|
4
|
+
|
5
|
+
require "lever_postings/client"
|
6
|
+
require "lever_postings/error"
|
7
|
+
require "lever_postings/posting"
|
8
|
+
require "lever_postings/version"
|
9
|
+
|
10
|
+
module LeverPostings
|
11
|
+
def self.apply(account, api_key, params)
|
12
|
+
postings_api = LeverPostings::Client.new("postings", account)
|
13
|
+
posting_id = params[:posting_id]
|
14
|
+
results = postings_api.post(posting_id, { api_key: api_key }, params)
|
15
|
+
results
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.postings(account, params = {})
|
19
|
+
params[:mode] ||= "json"
|
20
|
+
postings_api = LeverPostings::Client.new("postings", account)
|
21
|
+
results = postings_api.get(params.delete(:id), params)
|
22
|
+
|
23
|
+
if params.key?(:mode) && params[:mode] == "html"
|
24
|
+
results
|
25
|
+
else
|
26
|
+
Posting.from_json(results)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module LeverPostings
|
2
|
+
class Client
|
3
|
+
attr_accessor :account, :api, :connection
|
4
|
+
|
5
|
+
def initialize(api, account)
|
6
|
+
@api = api
|
7
|
+
@account = account
|
8
|
+
@connection = Faraday.new url: "https://api.lever.co/v0/" do |conn|
|
9
|
+
# POST/PUT params encoders:
|
10
|
+
conn.request :multipart
|
11
|
+
conn.request :url_encoded
|
12
|
+
conn.adapter :net_http
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def get(path, params = {})
|
17
|
+
request :get, path, {}, params
|
18
|
+
end
|
19
|
+
|
20
|
+
def post(path, options = {}, params = {})
|
21
|
+
request :post, path, options, params
|
22
|
+
end
|
23
|
+
|
24
|
+
def request(method, path, options = {}, params = {})
|
25
|
+
path = path && path != "" ? "/#{path}" : nil
|
26
|
+
url = "#{api}/#{account}#{path}"
|
27
|
+
url += "?key=#{options[:api_key]}" if options.key?(:api_key)
|
28
|
+
|
29
|
+
if method == :post
|
30
|
+
response = connection.post(url, params)
|
31
|
+
response
|
32
|
+
else
|
33
|
+
connection.params = params
|
34
|
+
response = connection.send(method, url)
|
35
|
+
if response.status == 200
|
36
|
+
if params[:mode] == "json"
|
37
|
+
MultiJson.load(response.body, symbolize_keys: true)
|
38
|
+
else
|
39
|
+
response.body
|
40
|
+
end
|
41
|
+
else
|
42
|
+
fail LeverPostings::Error.new("#{response.status}: #{response.body}", response.status)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module LeverPostings
|
2
|
+
class Posting
|
3
|
+
def self.from_json(json)
|
4
|
+
if json[0]
|
5
|
+
postings = []
|
6
|
+
json.each do |posting|
|
7
|
+
postings << ::Hashie::Mash.new(posting)
|
8
|
+
end
|
9
|
+
postings
|
10
|
+
elsif json != []
|
11
|
+
::Hashie::Mash.new(json)
|
12
|
+
else
|
13
|
+
json
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,187 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lever_postings
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sean Abrahams
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-08-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: faraday
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.9'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: multi_json
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.10'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: hashie
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.10'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.10'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.10'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.10'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '10.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '10.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.3'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.3'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: webmock
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '1.21'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '1.21'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: vcr
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '2.9'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '2.9'
|
139
|
+
description: Ruby library for accessing Lever.co's Postings API
|
140
|
+
email:
|
141
|
+
- abrahams@gmail.com
|
142
|
+
executables: []
|
143
|
+
extensions: []
|
144
|
+
extra_rdoc_files: []
|
145
|
+
files:
|
146
|
+
- ".gitignore"
|
147
|
+
- ".rspec"
|
148
|
+
- ".rubocop.yml"
|
149
|
+
- ".travis.yml"
|
150
|
+
- CODE_OF_CONDUCT.md
|
151
|
+
- Gemfile
|
152
|
+
- LICENSE.txt
|
153
|
+
- README.md
|
154
|
+
- Rakefile
|
155
|
+
- bin/console
|
156
|
+
- bin/setup
|
157
|
+
- lever_postings.gemspec
|
158
|
+
- lib/lever_postings.rb
|
159
|
+
- lib/lever_postings/client.rb
|
160
|
+
- lib/lever_postings/error.rb
|
161
|
+
- lib/lever_postings/posting.rb
|
162
|
+
- lib/lever_postings/version.rb
|
163
|
+
homepage: https://github.com/otelic/lever_postings
|
164
|
+
licenses:
|
165
|
+
- MIT
|
166
|
+
metadata: {}
|
167
|
+
post_install_message:
|
168
|
+
rdoc_options: []
|
169
|
+
require_paths:
|
170
|
+
- lib
|
171
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - ">="
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: 1.9.3
|
176
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
requirements: []
|
182
|
+
rubyforge_project:
|
183
|
+
rubygems_version: 2.4.7
|
184
|
+
signing_key:
|
185
|
+
specification_version: 4
|
186
|
+
summary: Ruby library for accessing Lever.co's Postings API
|
187
|
+
test_files: []
|