hbl_tags 0.0.4
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 +7 -0
- data/.DS_Store +0 -0
- data/.gitattributes +2 -0
- data/.gitignore +62 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +8 -0
- data/LICENSE +339 -0
- data/README.md +2 -0
- data/Rakefile +4 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/hbl_tags-0.0.1.gem +0 -0
- data/hbl_tags-0.0.2.gem +0 -0
- data/hbl_tags-0.0.3.gem +0 -0
- data/hbl_tags.gemspec +45 -0
- data/lib/.DS_Store +0 -0
- data/lib/hbl_tags/tags_helper.rb +685 -0
- data/lib/hbl_tags/version.rb +25 -0
- data/lib/hbl_tags.rb +24 -0
- metadata +80 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# hbl_tags provides methods to create complex html tags
|
|
5
|
+
#
|
|
6
|
+
# Copyright © 2021 Stephan Wenzel <stephan.wenzel@drwpatent.de>
|
|
7
|
+
#
|
|
8
|
+
# This program is free software; you can redistribute it and/or
|
|
9
|
+
# modify it under the terms of the GNU General Public License
|
|
10
|
+
# as published by the Free Software Foundation; either version 2
|
|
11
|
+
# of the License, or (at your option) any later version.
|
|
12
|
+
#
|
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
# GNU General Public License for more details.
|
|
17
|
+
#
|
|
18
|
+
# You should have received a copy of the GNU General Public License
|
|
19
|
+
# along with this program; if not, write to the Free Software
|
|
20
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
21
|
+
#
|
|
22
|
+
|
|
23
|
+
module HBLTags
|
|
24
|
+
VERSION = "0.0.4"
|
|
25
|
+
end
|
data/lib/hbl_tags.rb
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# hbl_tags provides methods to create complex html tags
|
|
5
|
+
#
|
|
6
|
+
# Copyright © 2021 Stephan Wenzel <stephan.wenzel@drwpatent.de>
|
|
7
|
+
#
|
|
8
|
+
# This program is free software; you can redistribute it and/or
|
|
9
|
+
# modify it under the terms of the GNU General Public License
|
|
10
|
+
# as published by the Free Software Foundation; either version 2
|
|
11
|
+
# of the License, or (at your option) any later version.
|
|
12
|
+
#
|
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
# GNU General Public License for more details.
|
|
17
|
+
#
|
|
18
|
+
# You should have received a copy of the GNU General Public License
|
|
19
|
+
# along with this program; if not, write to the Free Software
|
|
20
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
21
|
+
#
|
|
22
|
+
|
|
23
|
+
require "hbl_tags/version"
|
|
24
|
+
require "hbl_tags/tags_helper"
|
metadata
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hbl_tags
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.4
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Stephan Wenzel
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2021-11-21 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: countries
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
description: 'Create complex html tags for form : '
|
|
28
|
+
email:
|
|
29
|
+
- stephan.wenzel@drwpatent.de
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- ".DS_Store"
|
|
35
|
+
- ".gitattributes"
|
|
36
|
+
- ".gitignore"
|
|
37
|
+
- CODE_OF_CONDUCT.md
|
|
38
|
+
- Gemfile
|
|
39
|
+
- LICENSE
|
|
40
|
+
- README.md
|
|
41
|
+
- Rakefile
|
|
42
|
+
- bin/console
|
|
43
|
+
- bin/setup
|
|
44
|
+
- hbl_tags-0.0.1.gem
|
|
45
|
+
- hbl_tags-0.0.2.gem
|
|
46
|
+
- hbl_tags-0.0.3.gem
|
|
47
|
+
- hbl_tags.gemspec
|
|
48
|
+
- lib/.DS_Store
|
|
49
|
+
- lib/hbl_tags.rb
|
|
50
|
+
- lib/hbl_tags/tags_helper.rb
|
|
51
|
+
- lib/hbl_tags/version.rb
|
|
52
|
+
homepage: https://github.com/HugoHasenbein/hbl_tags
|
|
53
|
+
licenses:
|
|
54
|
+
- GPL-2.0
|
|
55
|
+
metadata:
|
|
56
|
+
allowed_push_host: https://rubygems.org
|
|
57
|
+
homepage_uri: https://github.com/HugoHasenbein/hbl_tags
|
|
58
|
+
source_code_uri: https://github.com/HugoHasenbein/hbl_tags
|
|
59
|
+
changelog_uri: https://github.com/HugoHasenbein/hbl_tags/Changelog.md
|
|
60
|
+
post_install_message:
|
|
61
|
+
rdoc_options: []
|
|
62
|
+
require_paths:
|
|
63
|
+
- lib
|
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 2.3.0
|
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '0'
|
|
74
|
+
requirements: []
|
|
75
|
+
rubyforge_project:
|
|
76
|
+
rubygems_version: 2.6.14
|
|
77
|
+
signing_key:
|
|
78
|
+
specification_version: 4
|
|
79
|
+
summary: HTML form tag utilities
|
|
80
|
+
test_files: []
|