qrscan 0.1.0

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.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Qrscan
4
+ VERSION = "0.1.0"
5
+ end
data/lib/qrscan.rb ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "qrscan/version"
4
+ require_relative "../ext/qrscan/qrscan"
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: qrscan
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - pioz
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2025-02-27 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A Ruby gem for decoding QR code from images.
13
+ email:
14
+ - epilotto@gmx.com
15
+ executables: []
16
+ extensions:
17
+ - ext/qrscan/extconf.rb
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rubocop.yml"
21
+ - LICENSE.txt
22
+ - README.md
23
+ - Rakefile
24
+ - ext/qrscan/extconf.rb
25
+ - ext/qrscan/qr_scanner.o
26
+ - ext/qrscan/qrscan.c
27
+ - ext/qrscan/stb_image.h
28
+ - lib/qrscan.rb
29
+ - lib/qrscan/version.rb
30
+ homepage: https://github.com/pioz/qrscan
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ homepage_uri: https://github.com/pioz/qrscan
35
+ source_code_uri: https://github.com/pioz/qrscan
36
+ rubygems_mfa_required: 'true'
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 3.1.0
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubygems_version: 3.6.4
52
+ specification_version: 4
53
+ summary: A Ruby gem for decoding QR code from images.
54
+ test_files: []