greenhouse_io-gitlab 2.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.travis.yml +11 -0
- data/CHANGES.md +41 -0
- data/Gemfile +11 -0
- data/LICENSE.txt +22 -0
- data/README.md +200 -0
- data/Rakefile +8 -0
- data/greenhouse_io.gemspec +29 -0
- data/lib/greenhouse_io.rb +9 -0
- data/lib/greenhouse_io/api.rb +19 -0
- data/lib/greenhouse_io/api/client.rb +145 -0
- data/lib/greenhouse_io/api/job_board.rb +66 -0
- data/lib/greenhouse_io/configuration.rb +21 -0
- data/lib/greenhouse_io/error.rb +10 -0
- data/lib/greenhouse_io/version.rb +3 -0
- data/spec/fixtures/cassettes/apply_to_job.yml +44 -0
- data/spec/fixtures/cassettes/client/activity_feed.yml +36 -0
- data/spec/fixtures/cassettes/client/all_scorecards.yml +38 -0
- data/spec/fixtures/cassettes/client/application.yml +36 -0
- data/spec/fixtures/cassettes/client/application_by_job_id.yml +139 -0
- data/spec/fixtures/cassettes/client/applications.yml +43 -0
- data/spec/fixtures/cassettes/client/candidate.yml +36 -0
- data/spec/fixtures/cassettes/client/candidates.yml +38 -0
- data/spec/fixtures/cassettes/client/create_candidate_note.yml +42 -0
- data/spec/fixtures/cassettes/client/create_candidate_note_invalid_candidate_id.yml +42 -0
- data/spec/fixtures/cassettes/client/create_candidate_note_invalid_missing_field.yml +42 -0
- data/spec/fixtures/cassettes/client/create_candidate_note_invalid_on_behalf_of.yml +42 -0
- data/spec/fixtures/cassettes/client/create_candidate_note_invalid_user_id.yml +42 -0
- data/spec/fixtures/cassettes/client/current_offer_for_application.yml +40 -0
- data/spec/fixtures/cassettes/client/department.yml +36 -0
- data/spec/fixtures/cassettes/client/departments.yml +38 -0
- data/spec/fixtures/cassettes/client/headers.yml +38 -0
- data/spec/fixtures/cassettes/client/job.yml +37 -0
- data/spec/fixtures/cassettes/client/job_post.yml +49 -0
- data/spec/fixtures/cassettes/client/jobs.yml +39 -0
- data/spec/fixtures/cassettes/client/offer.yml +48 -0
- data/spec/fixtures/cassettes/client/offers.yml +51 -0
- data/spec/fixtures/cassettes/client/offers_for_application.yml +40 -0
- data/spec/fixtures/cassettes/client/office.yml +36 -0
- data/spec/fixtures/cassettes/client/offices.yml +46 -0
- data/spec/fixtures/cassettes/client/scheduled_interviews.yml +38 -0
- data/spec/fixtures/cassettes/client/scorecards.yml +37 -0
- data/spec/fixtures/cassettes/client/source.yml +39 -0
- data/spec/fixtures/cassettes/client/sources.yml +37 -0
- data/spec/fixtures/cassettes/client/stages.yml +36 -0
- data/spec/fixtures/cassettes/client/user.yml +36 -0
- data/spec/fixtures/cassettes/client/users.yml +38 -0
- data/spec/fixtures/cassettes/department.yml +45 -0
- data/spec/fixtures/cassettes/departments.yml +45 -0
- data/spec/fixtures/cassettes/invalid_application.yml +43 -0
- data/spec/fixtures/cassettes/invalid_application_id.yml +44 -0
- data/spec/fixtures/cassettes/invalid_id.yml +40 -0
- data/spec/fixtures/cassettes/invalid_organization.yml +40 -0
- data/spec/fixtures/cassettes/job.yml +80 -0
- data/spec/fixtures/cassettes/job_with_questions.yml +85 -0
- data/spec/fixtures/cassettes/jobs.yml +44 -0
- data/spec/fixtures/cassettes/jobs_with_content.yml +118 -0
- data/spec/fixtures/cassettes/office.yml +45 -0
- data/spec/fixtures/cassettes/offices.yml +45 -0
- data/spec/greenhouse_io/api/client_spec.rb +679 -0
- data/spec/greenhouse_io/api/job_board_spec.rb +187 -0
- data/spec/greenhouse_io/configuration_spec.rb +71 -0
- data/spec/greenhouse_io/error_spec.rb +23 -0
- data/spec/spec_helper.rb +22 -0
- metadata +242 -0
@@ -0,0 +1,37 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://123FakeToken:@harvest.greenhouse.io/v1/sources
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Content-Type:
|
16
|
+
- application/json;charset=utf-8
|
17
|
+
Date:
|
18
|
+
- Sun, 11 May 2014 23:39:54 GMT
|
19
|
+
Status:
|
20
|
+
- 200 OK
|
21
|
+
X-Content-Type-Options:
|
22
|
+
- nosniff
|
23
|
+
X-Ratelimit-Limit:
|
24
|
+
- '20'
|
25
|
+
X-Ratelimit-Remaining:
|
26
|
+
- '20'
|
27
|
+
Content-Length:
|
28
|
+
- '3028'
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
body:
|
32
|
+
encoding: UTF-8
|
33
|
+
string: "[{\"id\":1,\"name\":\"Customer newsletter\",\"type\":{\"id\":1,\"name\":\"Company
|
34
|
+
marketing\"}}]"
|
35
|
+
http_version:
|
36
|
+
recorded_at: Sun, 11 May 2014 23:39:55 GMT
|
37
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,36 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://123FakeToken:@harvest.greenhouse.io/v1/jobs/4690/stages
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Content-Type:
|
16
|
+
- application/json;charset=utf-8
|
17
|
+
Date:
|
18
|
+
- Sun, 11 May 2014 23:32:17 GMT
|
19
|
+
Status:
|
20
|
+
- 200 OK
|
21
|
+
X-Content-Type-Options:
|
22
|
+
- nosniff
|
23
|
+
X-Ratelimit-Limit:
|
24
|
+
- '20'
|
25
|
+
X-Ratelimit-Remaining:
|
26
|
+
- '20'
|
27
|
+
Content-Length:
|
28
|
+
- '892'
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
body:
|
32
|
+
encoding: UTF-8
|
33
|
+
string: "[{\"id\":31416,\"name\":\"Offer\",\"interviews\":[]}]"
|
34
|
+
http_version:
|
35
|
+
recorded_at: Sun, 11 May 2014 23:32:18 GMT
|
36
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,36 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://123FakeToken:@harvest.greenhouse.io/v1/users/10327
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Content-Type:
|
16
|
+
- application/json;charset=utf-8
|
17
|
+
Date:
|
18
|
+
- Sun, 11 May 2014 23:37:54 GMT
|
19
|
+
Status:
|
20
|
+
- 200 OK
|
21
|
+
X-Content-Type-Options:
|
22
|
+
- nosniff
|
23
|
+
X-Ratelimit-Limit:
|
24
|
+
- '20'
|
25
|
+
X-Ratelimit-Remaining:
|
26
|
+
- '20'
|
27
|
+
Content-Length:
|
28
|
+
- '35'
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
body:
|
32
|
+
encoding: UTF-8
|
33
|
+
string: "{\"id\":10327,\"name\":\"Test User 1\"}"
|
34
|
+
http_version:
|
35
|
+
recorded_at: Sun, 11 May 2014 23:37:55 GMT
|
36
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://123FakeToken:@harvest.greenhouse.io/v1/users
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Content-Type:
|
16
|
+
- application/json;charset=utf-8
|
17
|
+
Date:
|
18
|
+
- Sun, 11 May 2014 23:36:20 GMT
|
19
|
+
Link:
|
20
|
+
- "<https://harvest.greenhouse.io/v1/users?page=2&per_page=100>; rel=\"next\""
|
21
|
+
Status:
|
22
|
+
- 200 OK
|
23
|
+
X-Content-Type-Options:
|
24
|
+
- nosniff
|
25
|
+
X-Ratelimit-Limit:
|
26
|
+
- '20'
|
27
|
+
X-Ratelimit-Remaining:
|
28
|
+
- '20'
|
29
|
+
Content-Length:
|
30
|
+
- '10824'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: "[{\"id\":10327,\"name\":\"Test User 1\",\"disabled\":false,\"site_admin\":false,\"emails\":[\"test_user@email.com\"]}]"
|
36
|
+
http_version:
|
37
|
+
recorded_at: Sun, 11 May 2014 23:36:21 GMT
|
38
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.greenhouse.io/v1/boards/generalassembly/embed/department?id=187
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
16
|
+
- max-age=0, private, must-revalidate
|
17
|
+
Content-Type:
|
18
|
+
- text/html; charset=utf-8
|
19
|
+
Date:
|
20
|
+
- Mon, 16 Sep 2013 16:10:23 GMT
|
21
|
+
Etag:
|
22
|
+
- ! '"bb32e60fd177f151cf0e062eab98a28e"'
|
23
|
+
Status:
|
24
|
+
- 200 OK
|
25
|
+
Vary:
|
26
|
+
- Accept-Encoding
|
27
|
+
X-Request-Id:
|
28
|
+
- 3b821356ecf1bc276d417fc20cacacc7
|
29
|
+
X-Runtime:
|
30
|
+
- '0.032134'
|
31
|
+
X-Ua-Compatible:
|
32
|
+
- IE=Edge,chrome=1
|
33
|
+
Content-Length:
|
34
|
+
- '398'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ! '{"id":187,"name":"Engineering","jobs":[{"id":721,"title":"Application
|
40
|
+
developer","updated_at":"2013-09-12T21:01:50Z","location":{"name":"New York,
|
41
|
+
NY"},"absolute_url":"http://boards.greenhouse.io/generalassembly/jobs/721"},{"id":722,"title":"Finance
|
42
|
+
Analyst","updated_at":"2013-09-12T21:01:50Z","location":{"name":"New York"},"absolute_url":"http://boards.greenhouse.io/generalassembly/jobs/722"}]}'
|
43
|
+
http_version:
|
44
|
+
recorded_at: Mon, 16 Sep 2013 16:10:28 GMT
|
45
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.greenhouse.io/v1/boards/generalassembly/embed/departments
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
16
|
+
- max-age=0, private, must-revalidate
|
17
|
+
Content-Type:
|
18
|
+
- text/html; charset=utf-8
|
19
|
+
Date:
|
20
|
+
- Mon, 16 Sep 2013 16:08:54 GMT
|
21
|
+
Etag:
|
22
|
+
- ! '"f205d9810b3463764180a02bef17ee4b"'
|
23
|
+
Status:
|
24
|
+
- 200 OK
|
25
|
+
Vary:
|
26
|
+
- Accept-Encoding
|
27
|
+
X-Request-Id:
|
28
|
+
- 9f6f27869358dfe950413e981e5238ba
|
29
|
+
X-Runtime:
|
30
|
+
- '0.013228'
|
31
|
+
X-Ua-Compatible:
|
32
|
+
- IE=Edge,chrome=1
|
33
|
+
Content-Length:
|
34
|
+
- '495'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ! '{"departments":[{"id":187,"name":"Engineering","jobs":[]},{"id":188,"name":"Finance","jobs":[{"id":722,"title":"Finance
|
40
|
+
Analyst","updated_at":"2013-09-12T21:01:50Z","location":{"name":"New York"},"absolute_url":"http://boards.greenhouse.io/generalassembly/jobs/722"}]},{"id":0,"name":"No
|
41
|
+
Department","jobs":[{"id":721,"title":"Application developer","updated_at":"2013-09-12T21:01:50Z","location":{"name":"New
|
42
|
+
York, NY"},"absolute_url":"http://boards.greenhouse.io/generalassembly/jobs/721"}]}]}'
|
43
|
+
http_version:
|
44
|
+
recorded_at: Mon, 16 Sep 2013 16:08:59 GMT
|
45
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://123FakeToken:@api.greenhouse.io/v1/applications
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: id=721&question_2720=not_required
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
16
|
+
- max-age=0, private, must-revalidate
|
17
|
+
Content-Type:
|
18
|
+
- text/javascript; charset=utf-8
|
19
|
+
Date:
|
20
|
+
- Tue, 17 Sep 2013 14:47:24 GMT
|
21
|
+
Etag:
|
22
|
+
- ! '"46594fa21df38686f04babfde85dfaa2"'
|
23
|
+
Status:
|
24
|
+
- 200 OK
|
25
|
+
Vary:
|
26
|
+
- Accept-Encoding
|
27
|
+
X-Request-Id:
|
28
|
+
- 634ac5d26bd19706ff5e959fb0beaaaf
|
29
|
+
X-Runtime:
|
30
|
+
- '1.334093'
|
31
|
+
X-Ua-Compatible:
|
32
|
+
- IE=Edge,chrome=1
|
33
|
+
Transfer-Encoding:
|
34
|
+
- chunked
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ! '{"error":"Failed to save person","reason":"Validation failed: Either
|
40
|
+
a name or email address is required."}'
|
41
|
+
http_version:
|
42
|
+
recorded_at: Tue, 17 Sep 2013 14:47:24 GMT
|
43
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://123FakeToken:@api.greenhouse.io/v1/applications
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: id=456&first_name=Gob&last_name=Bluth&email=gob%40bluth.com
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
16
|
+
- max-age=0, private, must-revalidate
|
17
|
+
Content-Type:
|
18
|
+
- text/javascript; charset=utf-8
|
19
|
+
Date:
|
20
|
+
- Tue, 17 Sep 2013 14:41:59 GMT
|
21
|
+
Etag:
|
22
|
+
- ! '"c5c15b924cd09ef721d6e61ddd849216"'
|
23
|
+
Set-Cookie:
|
24
|
+
- _session_id=acebca688b84d644f95a9b2a7b5f34a7; path=/; HttpOnly
|
25
|
+
Status:
|
26
|
+
- 200 OK
|
27
|
+
Vary:
|
28
|
+
- Accept-Encoding
|
29
|
+
X-Request-Id:
|
30
|
+
- d08af7a8a0f96967f7642ef9c144f8d9
|
31
|
+
X-Runtime:
|
32
|
+
- '0.269675'
|
33
|
+
X-Ua-Compatible:
|
34
|
+
- IE=Edge,chrome=1
|
35
|
+
Content-Length:
|
36
|
+
- '69'
|
37
|
+
Connection:
|
38
|
+
- keep-alive
|
39
|
+
body:
|
40
|
+
encoding: US-ASCII
|
41
|
+
string: ! '{"error":"Failed to save person","reason":"Job application not live"}'
|
42
|
+
http_version:
|
43
|
+
recorded_at: Tue, 17 Sep 2013 14:41:59 GMT
|
44
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.greenhouse.io/v1/boards/generalassembly/embed/job?id=123&questions=
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 400
|
13
|
+
message: Bad Request
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
16
|
+
- no-cache
|
17
|
+
Content-Type:
|
18
|
+
- text/html; charset=utf-8
|
19
|
+
Date:
|
20
|
+
- Mon, 16 Sep 2013 22:55:58 GMT
|
21
|
+
Status:
|
22
|
+
- 400 Bad Request
|
23
|
+
Vary:
|
24
|
+
- Accept-Encoding
|
25
|
+
X-Request-Id:
|
26
|
+
- d4e892a3c3184a981c7fa31771a7f24c
|
27
|
+
X-Runtime:
|
28
|
+
- '0.071031'
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge,chrome=1
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
body:
|
36
|
+
encoding: US-ASCII
|
37
|
+
string: ! '{"error":"Could not find a job with id ''123'' for generalassembly"}'
|
38
|
+
http_version:
|
39
|
+
recorded_at: Mon, 16 Sep 2013 22:55:58 GMT
|
40
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.greenhouse.io/v1/boards/not-real-inc/embed/offices
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 400
|
13
|
+
message: Bad Request
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
16
|
+
- no-cache
|
17
|
+
Content-Type:
|
18
|
+
- text/html; charset=utf-8
|
19
|
+
Date:
|
20
|
+
- Mon, 16 Sep 2013 22:43:02 GMT
|
21
|
+
Status:
|
22
|
+
- 400 Bad Request
|
23
|
+
Vary:
|
24
|
+
- Accept-Encoding
|
25
|
+
X-Request-Id:
|
26
|
+
- 94f65289bce6db7cbc539b5c9e7d8b7e
|
27
|
+
X-Runtime:
|
28
|
+
- '0.193542'
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge,chrome=1
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
body:
|
36
|
+
encoding: US-ASCII
|
37
|
+
string: ! '{"error":"Could not find a job board with token ''not-real-inc''"}'
|
38
|
+
http_version:
|
39
|
+
recorded_at: Mon, 16 Sep 2013 22:43:02 GMT
|
40
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,80 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.greenhouse.io/v1/boards/generalassembly/embed/job?id=721&questions=
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
16
|
+
- max-age=0, private, must-revalidate
|
17
|
+
Content-Type:
|
18
|
+
- text/html; charset=utf-8
|
19
|
+
Date:
|
20
|
+
- Mon, 16 Sep 2013 16:16:19 GMT
|
21
|
+
Etag:
|
22
|
+
- ! '"2705299585f8d6e0671bdf2100f3b382"'
|
23
|
+
Status:
|
24
|
+
- 200 OK
|
25
|
+
Vary:
|
26
|
+
- Accept-Encoding
|
27
|
+
X-Request-Id:
|
28
|
+
- 6815bf66134c266fe7042951f30ad4a4
|
29
|
+
X-Runtime:
|
30
|
+
- '0.113526'
|
31
|
+
X-Ua-Compatible:
|
32
|
+
- IE=Edge,chrome=1
|
33
|
+
Content-Length:
|
34
|
+
- '3102'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ! '{"id":721,"title":"Application developer","content":"<h3>Who
|
40
|
+
this job is right for</h3>\n<p>Anim wes anderson mixtape, flexitarian
|
41
|
+
cosby sweater craft beer cardigan aliquip. Qui pork belly labore ad cray.
|
42
|
+
Twee kogi sartorial, fanny pack pickled jean shorts occaecat hoodie mumblecore
|
43
|
+
truffaut VHS. Gluten-free literally intelligentsia, next level keffiyeh ad
|
44
|
+
cardigan dolor nihil fanny pack. Sartorial beard meggings, pug farm-to-table
|
45
|
+
banksy deep v. Hella banh mi swag flannel, authentic carles ethical. Sustainable
|
46
|
+
terry richardson raw denim ullamco brooklyn.</p>\n<h3>What we
|
47
|
+
are looking for</h3>\n<p>Dreamcatcher master cleanse esse odio
|
48
|
+
ullamco, raw denim farm-to-table selvage. Farm-to-table nesciunt fingerstache
|
49
|
+
narwhal echo park accusamus. Adipisicing vero consequat aesthetic:</p>\n<ul>\n<li>Bespoke
|
50
|
+
exercitation viral typewriter.</li>\n<li>Do small batch vinyl
|
51
|
+
gluten-free commodo portland.</li>\n<li>DIY pickled dolore, nostrud
|
52
|
+
biodiesel messenger bag</li>\n<li>Wayfarers brunch fingerstache
|
53
|
+
bespoke.</li>\n</ul>\n<p>Brooklyn aliqua hoodie literally
|
54
|
+
laborum PBR. Typewriter shoreditch photo booth odio, sustainable put a bird
|
55
|
+
on it ethical pinterest skateboard cosby sweater quinoa. Proident hashtag
|
56
|
+
officia trust fund nulla nisi. Stumptown odio veniam quinoa. Typewriter keffiyeh
|
57
|
+
bicycle rights, semiotics irure nihil vice freegan brooklyn pop-up culpa cardigan.
|
58
|
+
Blue bottle marfa voluptate, selfies four loko scenester quis. Pariatur ethnic
|
59
|
+
intelligentsia, tempor polaroid reprehenderit hella typewriter vice ugh bushwick
|
60
|
+
fap umami you probably haven't heard of them cred.</p>\n<h3>About
|
61
|
+
our work environment</h3>\n<p>DIY echo park cupidatat, cred odio
|
62
|
+
aute truffaut master cleanse dolor polaroid sustainable viral ad stumptown
|
63
|
+
pork belly. Flannel nesciunt enim non, sapiente occupy qui. Minim cosby sweater
|
64
|
+
vinyl bushwick nesciunt ea. American apparel polaroid laborum pickled, cosby
|
65
|
+
sweater carles street art exercitation literally disrupt in shoreditch lo-fi
|
66
|
+
incididunt. Food truck chambray pariatur, occupy selvage brooklyn consectetur
|
67
|
+
ennui aute. Polaroid fashion axe lo-fi vero, brooklyn odd future aesthetic.
|
68
|
+
Cupidatat yr nisi church-key craft beer.</p>\n<h3>Required skills
|
69
|
+
&amp; experience</h3>\n<p>Deserunt hashtag qui tempor american
|
70
|
+
apparel irure. Gastropub forage nulla four loko thundercats carles. Raw denim
|
71
|
+
letterpress sartorial portland shoreditch neutra, PBR sint fixie consectetur
|
72
|
+
commodo. Leggings actually bushwick echo park cred, aliquip officia letterpress
|
73
|
+
artisan gastropub odd future single-origin coffee ex. Retro consectetur veniam
|
74
|
+
pug fap et. Vice butcher commodo, vegan synth incididunt banjo bespoke quinoa
|
75
|
+
+1 cillum. VHS trust fund mollit, cliche wolf dreamcatcher salvia tattooed
|
76
|
+
do thundercats carles.</p>","updated_at":"2013-09-12T21:01:50Z","location":{"name":"New
|
77
|
+
York, NY"},"absolute_url":"http://boards.greenhouse.io/generalassembly/jobs/721","departments":[],"offices":[]}'
|
78
|
+
http_version:
|
79
|
+
recorded_at: Mon, 16 Sep 2013 16:16:24 GMT
|
80
|
+
recorded_with: VCR 2.5.0
|