wolf_core 0.2.5 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11cd74b191eebc5365c2c56849e8c207a5a8adfc98b572afb75ab06a579c5691
4
- data.tar.gz: 54d3ed8e95c12f9f5df8306517f60b3969bfcad7b173e795979ea88eecc0fbc3
3
+ metadata.gz: 2b1b3bd18498da025626fe2aa2c5153fb13bc495da0ed79afc7cca1a63f86c69
4
+ data.tar.gz: e5fe268fdc99952ff2db2c42c7857bf847c52d068b5be1b5c47cda0b04e5916f
5
5
  SHA512:
6
- metadata.gz: 98aea542b1efe0309a9f1d751667913617959e2d396f84e40d51adc854b9b79fc1c640599df8b2a6bad8e581ba9392a21a230053415342dee6f6cd384d378e6e
7
- data.tar.gz: 376cc4f83d6560d4b08780ca9094333a1de17505c71bd67d4c08fa319e2c2ba5a505fa74f0cec60abd2cd9e1dc2821234f0eeae298a1c8ae1dd6f7eb18daf026
6
+ metadata.gz: da422c06fafa9dd88c7defa4e5d619fdc3e549b67621fe0324fa10ec4bd081ca27d99d7bb3f580461fe6b407f995a511259762c20803f26a635b456be04de91b
7
+ data.tar.gz: 253d73c5acfab87fdc7ea7c1dc8b0bc64db1ff9c658397d1f3e147b0e59e2bf53579ba9538fe087dfc90ff08c9e0ccb8d3b8af57417db3fdd33261bde8785965
@@ -41,56 +41,64 @@ module WolfCore
41
41
  }
42
42
 
43
43
  STATE_ABBREVIATIONS_MAP = {
44
- "Alabama"=>"AL",
45
- "Alaska"=>"AK",
46
- "Arizona"=>"AZ",
47
- "Arkansas"=>"AR",
48
- "California"=>"CA",
49
- "Colorado"=>"CO",
50
- "Connecticut"=>"CT",
51
- "Delaware"=>"DE",
52
- "Florida"=>"FL",
53
- "Georgia"=>"GA",
54
- "Hawaii"=>"HI",
55
- "Idaho"=>"ID",
56
- "Illinois"=>"IL",
57
- "Indiana"=>"IN",
58
- "Iowa"=>"IA",
59
- "Kansas"=>"KS",
60
- "Kentucky"=>"KY",
61
- "Louisiana"=>"LA",
62
- "Maine"=>"ME",
63
- "Maryland"=>"MD",
64
- "Massachusetts"=>"MA",
65
- "Michigan"=>"MI",
66
- "Minnesota"=>"MN",
67
- "Mississippi"=>"MS",
68
- "Missouri"=>"MO",
69
- "Montana"=>"MT",
70
- "Nebraska"=>"NE",
71
- "Nevada"=>"NV",
72
- "New Hampshire"=>"NH",
73
- "New Jersey"=>"NJ",
74
- "New Mexico"=>"NM",
75
- "New York"=>"NY",
76
- "North Carolina"=>"NC",
77
- "North Dakota"=>"ND",
78
- "Ohio"=>"OH",
79
- "Oklahoma"=>"OK",
80
- "Oregon"=>"OR",
81
- "Pennsylvania"=>"PA",
82
- "Rhode Island"=>"RI",
83
- "South Carolina"=>"SC",
84
- "South Dakota"=>"SD",
85
- "Tennessee"=>"TN",
86
- "Texas"=>"TX",
87
- "Utah"=>"UT",
88
- "Vermont"=>"VT",
89
- "Virginia"=>"VA",
90
- "Washington"=>"WA",
91
- "West Virginia"=>"WV",
92
- "Wisconsin"=>"WI",
93
- "Wyoming"=>"WY",
44
+ "Alabama" => "AL",
45
+ "Alaska" => "AK",
46
+ "American Samoa" => "AS",
47
+ "Arizona" => "AZ",
48
+ "Arkansas" => "AR",
49
+ "California" => "CA",
50
+ "Colorado" => "CO",
51
+ "Connecticut" => "CT",
52
+ "Delaware" => "DE",
53
+ "District of Columbia" => "DC",
54
+ "Florida" => "FL",
55
+ "Georgia" => "GA",
56
+ "Guam" => "GU",
57
+ "Hawaii" => "HI",
58
+ "Idaho" => "ID",
59
+ "Illinois" => "IL",
60
+ "Indiana" => "IN",
61
+ "Iowa" => "IA",
62
+ "Kansas" => "KS",
63
+ "Kentucky" => "KY",
64
+ "Louisiana" => "LA",
65
+ "Maine" => "ME",
66
+ "Marshall Islands" => "MH",
67
+ "Maryland" => "MD",
68
+ "Massachusetts" => "MA",
69
+ "Michigan" => "MI",
70
+ "Minnesota" => "MN",
71
+ "Mississippi" => "MS",
72
+ "Missouri" => "MO",
73
+ "Montana" => "MT",
74
+ "Nebraska" => "NE",
75
+ "Nevada" => "NV",
76
+ "New Hampshire" => "NH",
77
+ "New Jersey" => "NJ",
78
+ "New Mexico" => "NM",
79
+ "New York" => "NY",
80
+ "North Carolina" => "NC",
81
+ "North Dakota" => "ND",
82
+ "Northern Mariana Islands" => "MP",
83
+ "Ohio" => "OH",
84
+ "Oklahoma" => "OK",
85
+ "Oregon" => "OR",
86
+ "Palau" => "PW",
87
+ "Pennsylvania" => "PA",
88
+ "Puerto Rico" => "PR",
89
+ 'Rhode Island' => 'RI',
90
+ 'South Carolina' => 'SC',
91
+ 'South Dakota' => 'SD',
92
+ 'Tennessee' => 'TN',
93
+ 'Texas' => 'TX',
94
+ 'U.S. Virgin Islands' => 'VI',
95
+ 'Utah' => 'UT',
96
+ 'Vermont' => 'VT',
97
+ 'Virginia' => 'VA',
98
+ 'Washington' => 'WA',
99
+ 'West Virginia' => 'WV',
100
+ 'Wisconsin' => 'WI',
101
+ 'Wyoming' => 'WY'
94
102
  }
95
103
 
96
104
  DISPLAY_PAY_RATE_UNIT_MAP = {
@@ -68,11 +68,11 @@ module WolfCore
68
68
  end
69
69
 
70
70
  custom_values.group_by do |custom_value|
71
- custom_requirement_group = if jobseeker_file_custom_requirement_ids.include?(custom_value['custom_requirement_id'])
71
+ custom_requirement_group = if jobseeker_file_custom_requirement_ids.include?(custom_value['custom_requirement_id'].to_s)
72
72
  'jobseeker_file'
73
- elsif reference_form_custom_requirement_ids.include?(custom_value['custom_requirement_id'])
73
+ elsif reference_form_custom_requirement_ids.include?(custom_value['custom_requirement_id'].to_s)
74
74
  'reference_form'
75
- elsif disclosure_form_custom_requirement_ids.include?(custom_value['custom_requirement_id'])
75
+ elsif disclosure_form_custom_requirement_ids.include?(custom_value['custom_requirement_id'].to_s)
76
76
  'disclosure_form'
77
77
  elsif custom_value['user_category'] == 'Freelancer'
78
78
  'jobseeker'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "0.2.5"
4
+ VERSION = "0.2.7"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-10 00:00:00.000000000 Z
11
+ date: 2024-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty