wfc 2.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 Wfc
4
+ VERSION = "2.1.0"
5
+ end
data/lib/wfc.rb ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "wfc/version"
4
+ require_relative "web_forms"
data/sig/wfc.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Wfc
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wfc
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Elanat
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: WebForms Core (WFC) is a server-driven web interface technology for Ruby.
13
+ email:
14
+ - info@elanat.net
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - CHANGELOG.md
20
+ - README.md
21
+ - Rakefile
22
+ - lib/web_forms.rb
23
+ - lib/wfc.rb
24
+ - lib/wfc/version.rb
25
+ - sig/wfc.rbs
26
+ homepage: https://elanat.net/page_content/web_forms_core
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ homepage_uri: https://elanat.net/page_content/web_forms_core
31
+ source_code_uri: https://github.com/webforms-core/Web_forms_classes
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 3.2.0
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 4.0.16
47
+ specification_version: 4
48
+ summary: WebForms Core technology for Ruby.
49
+ test_files: []