m0x_qr 0.5.5 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/assets/config/m0x_qr_manifest.js +1 -0
- data/app/assets/stylesheets/m0x_qr/application.css +15 -0
- data/app/controllers/m0x_qr/application_controller.rb +4 -0
- data/app/controllers/m0x_qr/example_controller.rb +7 -0
- data/app/helpers/m0x_qr/application_helper.rb +4 -0
- data/app/jobs/m0x_qr/application_job.rb +4 -0
- data/app/mailers/m0x_qr/application_mailer.rb +6 -0
- data/app/models/m0x_qr/application_record.rb +5 -0
- data/app/views/example/index.html.erb +1 -0
- data/app/views/layouts/m0x_qr/application.html.erb +15 -0
- data/config/routes.rb +3 -0
- data/lib/m0x_qr/engine.rb +5 -0
- data/lib/m0x_qr.rb +3 -3
- data/lib/tasks/m0x_qr_tasks.rake +4 -0
- metadata +25 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 773cb84418cc83228618cc88a87fa5c403d2dc8447870ecf8adb480bd1749c8f
|
4
|
+
data.tar.gz: acd60c068785d281bda73bf54f0127ed674f6d429d799acaf97e6413790c953f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9f10f3ba0e157d698d8bf6433319d6258c79371f793faa70e906ee3c83cb994e3778b846a5a3717677817e4070123a15d4bfd60571ce19b909bb9c9b81658c6
|
7
|
+
data.tar.gz: d7aadcf5df673e5054efb0948e9a6e7bbc7c4d91e3fe7326107190bdd452abf52c8cbfc3e9846ae1875d672a33aa5a19210fc9ae8bb113bff9796c6646de2920
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2024 igor.kir
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# M0xQr
|
2
|
+
Short description and motivation.
|
3
|
+
|
4
|
+
## Usage
|
5
|
+
How to use my plugin.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem "m0x_qr"
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install m0x_qr
|
22
|
+
```
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
Contribution directions go here.
|
26
|
+
|
27
|
+
## License
|
28
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
//= link_directory ../stylesheets/m0x_qr .css
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= @text %>
|
data/config/routes.rb
ADDED
data/lib/m0x_qr.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: m0x_qr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- m0x
|
@@ -11,44 +11,61 @@ cert_chain: []
|
|
11
11
|
date: 2024-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 7.0.8
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 7.0.8
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: rqrcode
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: '2.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:
|
40
|
+
version: '2.0'
|
41
41
|
description: Gem to generate QR code from text
|
42
42
|
email: m0x_digital@gmail.com
|
43
43
|
executables: []
|
44
44
|
extensions: []
|
45
45
|
extra_rdoc_files: []
|
46
46
|
files:
|
47
|
+
- MIT-LICENSE
|
48
|
+
- README.md
|
49
|
+
- Rakefile
|
50
|
+
- app/assets/config/m0x_qr_manifest.js
|
51
|
+
- app/assets/stylesheets/m0x_qr/application.css
|
52
|
+
- app/controllers/m0x_qr/application_controller.rb
|
53
|
+
- app/controllers/m0x_qr/example_controller.rb
|
54
|
+
- app/helpers/m0x_qr/application_helper.rb
|
55
|
+
- app/jobs/m0x_qr/application_job.rb
|
56
|
+
- app/mailers/m0x_qr/application_mailer.rb
|
57
|
+
- app/models/m0x_qr/application_record.rb
|
58
|
+
- app/views/example/index.html.erb
|
59
|
+
- app/views/layouts/m0x_qr/application.html.erb
|
60
|
+
- config/routes.rb
|
47
61
|
- lib/m0x_qr.rb
|
62
|
+
- lib/m0x_qr/engine.rb
|
63
|
+
- lib/tasks/m0x_qr_tasks.rake
|
48
64
|
homepage: https://rubygems.org/gems/m0x_qr
|
49
65
|
licenses:
|
50
66
|
- MIT
|
51
|
-
metadata:
|
67
|
+
metadata:
|
68
|
+
homepage_uri: https://rubygems.org/gems/m0x_qr
|
52
69
|
post_install_message:
|
53
70
|
rdoc_options: []
|
54
71
|
require_paths:
|