cv-parser 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6b7590ababb813164420d1ef2b1d648c3cc215f6470c8d4c8d3ba00e62e51ee
4
- data.tar.gz: 77f236b9d6c7fd62f7a1979b747f944cdcbd59a0329c6917fb079fd3842fc238
3
+ metadata.gz: e81f88aa6b7a332110ce00a4280c55ba844b270022c875eeb0369c45564ef31b
4
+ data.tar.gz: ca28c678b098c51a8c223d7f8ce5d1e6eef779ddf5e14d0f10adee32b85066e3
5
5
  SHA512:
6
- metadata.gz: 565ea71844fe6be24392a19904c7690a91f017b1e5dbd6354587620b10f529a2cff4459d9cc995b737aa982d3b7987d2a686d3cc67f43600e49372e82865f375
7
- data.tar.gz: 5703710f848b986b895b98561396d550ff94def445345dc5f2e9eb5fd8bac6b15943eabf16ba426d2cffaf22a446e0aa526fbb78caa98ad2b6d068300d7ce19e
6
+ metadata.gz: da3933d924d9bbb7aae50a0e773c9e651b37f249d265a28e0ae78516dad83052e8abc4952bd94dd2536d7826f74ec41eebbe53f479d523d1db70565ddb8a86f7
7
+ data.tar.gz: 17e4706faeb54916bfe85305fd170572a62231203489c7d394830c90b260ea0a8a8502a40c7c3f1a7e7de07446ee317f1a2ddba8faf1738d1548056d9e1e13aa
data/CHANGELOG.md CHANGED
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [Unreleased]
8
+ ## [Released]
9
+
10
+ ## [0.1.1] - 2025-07-17
11
+
12
+ ### Changed
13
+ - Updated dependencies to allow for older versions of Faraday and Faraday-multipart
14
+
9
15
 
10
16
  ## [0.1.0] - 2025-06-01
11
17
 
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 Your Name
3
+ Copyright (c) 2024 Gys Muller
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CvParser
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/lib/cv_parser.rb CHANGED
@@ -10,6 +10,7 @@ require_relative "cv_parser/providers/faker"
10
10
  require_relative "cv_parser/extractor"
11
11
  require_relative "cv_parser/cli"
12
12
 
13
+ # A Ruby gem for parsing CVs and resumes using AI providers
13
14
  module CvParser
14
15
  class << self
15
16
  def configuration
@@ -17,12 +18,7 @@ module CvParser
17
18
  end
18
19
 
19
20
  def configure
20
- if block_given?
21
- yield(configuration)
22
- # The block is expected to create a new Configuration and assign it
23
- # to @configuration via instance_variable_set, but if not, we can
24
- # still use the default configuration initialized above
25
- end
21
+ yield(configuration) if block_given?
26
22
  configuration
27
23
  end
28
24
 
@@ -32,6 +28,4 @@ module CvParser
32
28
  end
33
29
 
34
30
  class Error < StandardError; end
35
-
36
- # Your code goes here...
37
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cv-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gys Muller
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-06-08 00:00:00.000000000 Z
11
+ date: 2025-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -28,28 +28,28 @@ dependencies:
28
28
  name: faraday
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '2.0'
33
+ version: '1.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '2.0'
40
+ version: '1.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: faraday-multipart
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.0'
55
55
  - !ruby/object:Gem::Dependency