cb-api 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/cb/{utils → Utils}/api.rb +0 -0
- data/lib/cb/{utils → Utils}/country.rb +0 -0
- data/lib/cb/{utils → Utils}/fluid_attributes.rb +0 -0
- data/lib/cb/{utils → Utils}/meta_values.rb +0 -0
- data/lib/cb/{utils → Utils}/string.rb +0 -0
- data/lib/cb/models/cb_job.rb +3 -2
- data/lib/cb/version.rb +1 -1
- metadata +16 -10
- checksums.yaml +0 -15
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/cb/models/cb_job.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module Cb
|
2
2
|
class CbJob
|
3
|
-
attr_accessor :did, :title, :job_skin, :job_skin_did, :job_branding, :pay, :pay_per, :commission, :bonus,
|
3
|
+
attr_accessor :did, :title, :job_skin, :job_skin_did, :job_branding, :pay, :pay_per, :commission, :bonus, :pay_other,
|
4
4
|
:categories, :category_codes, :degree_required, :experience_required, :travel_required,
|
5
5
|
:industry_codes, :manages_others_code,
|
6
6
|
:contact_email_url, :contact_fax, :contact_name, :contact_phone,
|
@@ -38,7 +38,8 @@ module Cb
|
|
38
38
|
@pay_per = args['PayPer'] || ''
|
39
39
|
@commission = args.has_key?("PayCommission") && !args["PayCommission"].nil? ? args['PayCommission']['Money']['FormattedAmount'] : ''
|
40
40
|
@bonus = args.has_key?("PayBonus") && !args["PayBonus"].nil? ? args['PayBonus']['Money']['FormattedAmount'] : ''
|
41
|
-
|
41
|
+
@pay_other = args.has_key?("PayOther") && !args["PayOther"].nil? ? args['PayOther'] : ''
|
42
|
+
|
42
43
|
# Job Search related
|
43
44
|
@description_teaser = args['DescriptionTeaser'] || ''
|
44
45
|
@posted_date = args['PostedDate'] || ''
|
data/lib/cb/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cb-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Jesse Retchko
|
@@ -19,6 +20,7 @@ dependencies:
|
|
19
20
|
- !ruby/object:Gem::Dependency
|
20
21
|
name: httparty
|
21
22
|
requirement: !ruby/object:Gem::Requirement
|
23
|
+
none: false
|
22
24
|
requirements:
|
23
25
|
- - ~>
|
24
26
|
- !ruby/object:Gem::Version
|
@@ -26,6 +28,7 @@ dependencies:
|
|
26
28
|
type: :runtime
|
27
29
|
prerelease: false
|
28
30
|
version_requirements: !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
29
32
|
requirements:
|
30
33
|
- - ~>
|
31
34
|
- !ruby/object:Gem::Version
|
@@ -33,6 +36,7 @@ dependencies:
|
|
33
36
|
- !ruby/object:Gem::Dependency
|
34
37
|
name: json
|
35
38
|
requirement: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
36
40
|
requirements:
|
37
41
|
- - ~>
|
38
42
|
- !ruby/object:Gem::Version
|
@@ -40,6 +44,7 @@ dependencies:
|
|
40
44
|
type: :runtime
|
41
45
|
prerelease: false
|
42
46
|
version_requirements: !ruby/object:Gem::Requirement
|
47
|
+
none: false
|
43
48
|
requirements:
|
44
49
|
- - ~>
|
45
50
|
- !ruby/object:Gem::Version
|
@@ -48,7 +53,7 @@ description: Ruby wrapper for Careerbuilder Public API.
|
|
48
53
|
email:
|
49
54
|
- Jesse.Retchko@Careerbuilder.com
|
50
55
|
- Chris.Little@Careerbuilder.com
|
51
|
-
- Matt.Moldavan@Careerbuilder.com
|
56
|
+
- Matt.Moldavan@Careerbuilder.comMiriamDeana@gmail.com
|
52
57
|
- David.Posey@Careerbuilder.com
|
53
58
|
- Kyle.Bumpus@Careerbuilder.com
|
54
59
|
- Ben.Schmaltz@Careerbuilder.com
|
@@ -92,35 +97,36 @@ files:
|
|
92
97
|
- lib/cb/models/cb_job.rb
|
93
98
|
- lib/cb/models/cb_job_branding.rb
|
94
99
|
- lib/cb/models/cb_user.rb
|
95
|
-
- lib/cb/
|
96
|
-
- lib/cb/
|
97
|
-
- lib/cb/
|
98
|
-
- lib/cb/
|
99
|
-
- lib/cb/
|
100
|
+
- lib/cb/Utils/api.rb
|
101
|
+
- lib/cb/Utils/country.rb
|
102
|
+
- lib/cb/Utils/fluid_attributes.rb
|
103
|
+
- lib/cb/Utils/meta_values.rb
|
104
|
+
- lib/cb/Utils/string.rb
|
100
105
|
- lib/cb/version.rb
|
101
106
|
- lib/cb.rb
|
102
107
|
- README.md
|
103
108
|
homepage: http://api.careerbuilder.com
|
104
109
|
licenses: []
|
105
|
-
metadata: {}
|
106
110
|
post_install_message:
|
107
111
|
rdoc_options: []
|
108
112
|
require_paths:
|
109
113
|
- lib
|
110
114
|
required_ruby_version: !ruby/object:Gem::Requirement
|
115
|
+
none: false
|
111
116
|
requirements:
|
112
117
|
- - ! '>='
|
113
118
|
- !ruby/object:Gem::Version
|
114
119
|
version: '0'
|
115
120
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
116
122
|
requirements:
|
117
123
|
- - ! '>='
|
118
124
|
- !ruby/object:Gem::Version
|
119
125
|
version: '0'
|
120
126
|
requirements: []
|
121
127
|
rubyforge_project:
|
122
|
-
rubygems_version:
|
128
|
+
rubygems_version: 1.8.25
|
123
129
|
signing_key:
|
124
|
-
specification_version:
|
130
|
+
specification_version: 3
|
125
131
|
summary: Ruby wrapper around Careerbuilder Public API.
|
126
132
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
NGJiN2Q3MmJkZjQ3ZTgzMjBiZjA1ODZlYjk0MjYxYjE0NmQ1MjExMA==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
OGQ4YWU3ZWU2NjgzOWM5MTNkYWIyMjQ5YjUwNzk2NTI1ODgwYTM0Nw==
|
7
|
-
!binary "U0hBNTEy":
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
ZmY4MGM2YzkwMzY4YmUwNWQxMjRkMzFjOTdmMDhlOTUwOWM5YTEzNWI0Yjc2
|
10
|
-
NjA0Y2VkZTgzNWQ0YTRhODNhOTI3NmVlOGI3M2Y1M2NhN2ZhZTY2ZTQyNWU1
|
11
|
-
NDM3M2VkZThjNjI0OTk0OTU0ZmU0ZjdkZjQ2YzU4YTk1ZGEwYjA=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
YmI3OTcxMGY0MjY1OGRkNDE5MzJmYTVkMTE4ODc3ZjVjNjBhN2E1ZjI2Zjcw
|
14
|
-
ZTYwNTFlMGYxNTU5YmVhMDc0NGY2OGJjMjRjY2MxNzY0NjJlYmNmM2U4MjU1
|
15
|
-
OTljMGI4NDM5YjRkZGU3ZWNjOTE0ZWJlNTdjMjMwN2Y3OTMyNGE=
|