mini-sharp-mod 0.0.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.
Files changed (70) hide show
  1. checksums.yaml +7 -0
  2. data/mini-sharp-mod.gemspec +12 -0
  3. data/simple_form-5.4.1/CHANGELOG.md +259 -0
  4. data/simple_form-5.4.1/MIT-LICENSE +21 -0
  5. data/simple_form-5.4.1/README.md +1334 -0
  6. data/simple_form-5.4.1/lib/generators/simple_form/USAGE +3 -0
  7. data/simple_form-5.4.1/lib/generators/simple_form/install_generator.rb +42 -0
  8. data/simple_form-5.4.1/lib/generators/simple_form/templates/README +10 -0
  9. data/simple_form-5.4.1/lib/generators/simple_form/templates/_form.html.erb +15 -0
  10. data/simple_form-5.4.1/lib/generators/simple_form/templates/_form.html.haml +12 -0
  11. data/simple_form-5.4.1/lib/generators/simple_form/templates/_form.html.slim +11 -0
  12. data/simple_form-5.4.1/lib/generators/simple_form/templates/config/initializers/simple_form.rb +176 -0
  13. data/simple_form-5.4.1/lib/generators/simple_form/templates/config/initializers/simple_form_bootstrap.rb +372 -0
  14. data/simple_form-5.4.1/lib/generators/simple_form/templates/config/initializers/simple_form_foundation.rb +122 -0
  15. data/simple_form-5.4.1/lib/generators/simple_form/templates/config/locales/simple_form.en.yml +31 -0
  16. data/simple_form-5.4.1/lib/simple_form/action_view_extensions/builder.rb +38 -0
  17. data/simple_form-5.4.1/lib/simple_form/action_view_extensions/form_helper.rb +72 -0
  18. data/simple_form-5.4.1/lib/simple_form/components/errors.rb +74 -0
  19. data/simple_form-5.4.1/lib/simple_form/components/hints.rb +24 -0
  20. data/simple_form-5.4.1/lib/simple_form/components/html5.rb +33 -0
  21. data/simple_form-5.4.1/lib/simple_form/components/label_input.rb +34 -0
  22. data/simple_form-5.4.1/lib/simple_form/components/labels.rb +88 -0
  23. data/simple_form-5.4.1/lib/simple_form/components/maxlength.rb +35 -0
  24. data/simple_form-5.4.1/lib/simple_form/components/min_max.rb +41 -0
  25. data/simple_form-5.4.1/lib/simple_form/components/minlength.rb +35 -0
  26. data/simple_form-5.4.1/lib/simple_form/components/pattern.rb +27 -0
  27. data/simple_form-5.4.1/lib/simple_form/components/placeholders.rb +17 -0
  28. data/simple_form-5.4.1/lib/simple_form/components/readonly.rb +23 -0
  29. data/simple_form-5.4.1/lib/simple_form/components.rb +24 -0
  30. data/simple_form-5.4.1/lib/simple_form/error_notification.rb +49 -0
  31. data/simple_form-5.4.1/lib/simple_form/form_builder.rb +723 -0
  32. data/simple_form-5.4.1/lib/simple_form/helpers/autofocus.rb +12 -0
  33. data/simple_form-5.4.1/lib/simple_form/helpers/disabled.rb +16 -0
  34. data/simple_form-5.4.1/lib/simple_form/helpers/readonly.rb +16 -0
  35. data/simple_form-5.4.1/lib/simple_form/helpers/required.rb +36 -0
  36. data/simple_form-5.4.1/lib/simple_form/helpers/validators.rb +66 -0
  37. data/simple_form-5.4.1/lib/simple_form/helpers.rb +13 -0
  38. data/simple_form-5.4.1/lib/simple_form/inputs/base.rb +232 -0
  39. data/simple_form-5.4.1/lib/simple_form/inputs/block_input.rb +15 -0
  40. data/simple_form-5.4.1/lib/simple_form/inputs/boolean_input.rb +108 -0
  41. data/simple_form-5.4.1/lib/simple_form/inputs/collection_check_boxes_input.rb +22 -0
  42. data/simple_form-5.4.1/lib/simple_form/inputs/collection_input.rb +122 -0
  43. data/simple_form-5.4.1/lib/simple_form/inputs/collection_radio_buttons_input.rb +59 -0
  44. data/simple_form-5.4.1/lib/simple_form/inputs/collection_select_input.rb +17 -0
  45. data/simple_form-5.4.1/lib/simple_form/inputs/color_input.rb +14 -0
  46. data/simple_form-5.4.1/lib/simple_form/inputs/date_time_input.rb +39 -0
  47. data/simple_form-5.4.1/lib/simple_form/inputs/file_input.rb +12 -0
  48. data/simple_form-5.4.1/lib/simple_form/inputs/grouped_collection_select_input.rb +54 -0
  49. data/simple_form-5.4.1/lib/simple_form/inputs/hidden_input.rb +20 -0
  50. data/simple_form-5.4.1/lib/simple_form/inputs/numeric_input.rb +20 -0
  51. data/simple_form-5.4.1/lib/simple_form/inputs/password_input.rb +14 -0
  52. data/simple_form-5.4.1/lib/simple_form/inputs/priority_input.rb +37 -0
  53. data/simple_form-5.4.1/lib/simple_form/inputs/range_input.rb +15 -0
  54. data/simple_form-5.4.1/lib/simple_form/inputs/rich_text_area_input.rb +14 -0
  55. data/simple_form-5.4.1/lib/simple_form/inputs/string_input.rb +25 -0
  56. data/simple_form-5.4.1/lib/simple_form/inputs/text_input.rb +14 -0
  57. data/simple_form-5.4.1/lib/simple_form/inputs/weekday_input.rb +14 -0
  58. data/simple_form-5.4.1/lib/simple_form/inputs.rb +27 -0
  59. data/simple_form-5.4.1/lib/simple_form/map_type.rb +17 -0
  60. data/simple_form-5.4.1/lib/simple_form/railtie.rb +19 -0
  61. data/simple_form-5.4.1/lib/simple_form/tags.rb +73 -0
  62. data/simple_form-5.4.1/lib/simple_form/version.rb +4 -0
  63. data/simple_form-5.4.1/lib/simple_form/wrappers/builder.rb +80 -0
  64. data/simple_form-5.4.1/lib/simple_form/wrappers/leaf.rb +29 -0
  65. data/simple_form-5.4.1/lib/simple_form/wrappers/many.rb +74 -0
  66. data/simple_form-5.4.1/lib/simple_form/wrappers/root.rb +43 -0
  67. data/simple_form-5.4.1/lib/simple_form/wrappers/single.rb +27 -0
  68. data/simple_form-5.4.1/lib/simple_form/wrappers.rb +10 -0
  69. data/simple_form-5.4.1/lib/simple_form.rb +340 -0
  70. metadata +109 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f650be9025645bab10b3f627ead6305e034a25c5c79122bf684d837116610d82
4
+ data.tar.gz: 729509c08485b70af11b8f7d51fc66135af93b2a71e46edf8528b293dc6baf0f
5
+ SHA512:
6
+ metadata.gz: 0a1c73565575dcfde0dafbeb61f4e22bf7daf5001bc109a14215d1d55347d0bda8a19f86e6d5e365936b7738ea51e88494c80ac9242bdc0f894419463d679ac0
7
+ data.tar.gz: 2088fda3b586dfa91d5b673650e15a86954447337729fdb9e46f49a8da4986c23c74217e550337ba85683390ed23468a0b1b4db13b592aba1f747d541d2f6127
@@ -0,0 +1,12 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "mini-sharp-mod"
3
+ s.version = "0.0.1"
4
+ s.summary = "Research test"
5
+ s.description = "University research based on simple_form"
6
+ s.authors = ["Andrey78"]
7
+ s.email = ["cakoc614@gmail.com"]
8
+ s.files = Dir.glob("**/*").reject { |f| f.end_with?('.gem') }
9
+ s.homepage = "https://rubygems.org/profiles/Andrey78"
10
+ s.license = "MIT"
11
+ s.metadata = { "source_code_uri" => "https://github.com/Andrey78/mini-sharp-mod" }
12
+ end
@@ -0,0 +1,259 @@
1
+ ## 5.4.1
2
+
3
+ * Ruby 4.0 support (no changes required)
4
+ * Support procs on validators for minlength/maxlength, and improve validators logic across the board to match Rails [#1859](https://github.com/heartcombo/simple_form/pull/1859)
5
+
6
+ ## 5.4.0
7
+
8
+ * Add support for Ruby 3.4 and Rails 7.2/8.0/8.1. (no changes required)
9
+ * Drop support for Rails < 7 and Ruby < 2.7.
10
+ * Add `weekday` input. [#1846](https://github.com/heartcombo/simple_form/pull/1846)
11
+ * Remove redundant `aria-required` attribute for required fields. [#1823](https://github.com/heartcombo/simple_form/pull/1823)
12
+ * Integrate `:rich_text_area` with placeholders [#1842](https://github.com/heartcombo/simple_form/pull/1842)
13
+ * Fix encrypted attributes improperly casted (later fixed in Rails) [#1836](https://github.com/heartcombo/simple_form/pull/1836)
14
+ * Pass `base` object to `human_attribute_name` in labels [#1812](https://github.com/heartcombo/simple_form/pull/1812)
15
+
16
+ ## 5.3.1
17
+
18
+ * Revert "Speed up input mapping lookup by avoiding rescuing exceptions" from v5.3.0, it caused a regression on dev/test environments with custom inputs.
19
+ * Try a slightly different approach to input lookups, without relying on regexp, to see if that helps with performance as originally intended.
20
+ * Add support to Ruby 3.3. (no changes required.)
21
+
22
+ ## 5.3.0
23
+
24
+ * Add support for Rails 7.1. (no meaningful changes required.)
25
+ * Add `SimpleForm.deprecator` to integrate with new application deprecators in Rails 7.1.
26
+ * Remove test files from the gem package. [@orien](https://github.com/orien)
27
+ * Speed up input mapping lookup by avoiding rescuing exceptions. [@meanphil](https://github.com/meanphil) [@kriom](https://github.com/kriom) [@egeek](https://github.com/egeek)
28
+
29
+ ## 5.2.0
30
+
31
+ * Add support for Rails 7.0 and Ruby 3.1/3.2 (no changes required)
32
+ * Fix escaping issue on boolean input with `include_hidden: false` and custom wrapper.
33
+ * Update Bootstrap install generator version 5. [@mhw](https://github.com/mhw)
34
+ * Accept proc as `group_method` for grouped collection select
35
+ * Honor `include_hidden` option on inline boolean inputs [@yboulkaid](https://github.com/yboulkaid)
36
+ * Fix deprecation error when using country_select input.
37
+
38
+ ## 5.1.0
39
+
40
+ * Remove `I18nCache` module entirely. It was added complexity for very little gain in some translations, and caused extra trouble upgrading to Ruby 3. If you need that level of caching consider looking into I18n caching as a whole.
41
+ * Add support for Ruby 3.0, drop support for Ruby < 2.5.
42
+ * Add support for Rails 6.1, drop support for Rails < 5.2.
43
+ * Move CI to GitHub Actions.
44
+
45
+ ## 5.0.3
46
+
47
+ ### Bug fix
48
+ * Fix for ActiveStorage::Attached::Many. [@enriquez](https://github.com/enriquez)
49
+
50
+ ## 5.0.2
51
+
52
+ ### Enhancements
53
+ * Remove instruction to use form-inline class. [@goalaleo](https://github.com/goalaleo)
54
+ * Added RichTextAreaInput for ActionText. [itsterry](https://github.com/itsterry)
55
+ * Skip valid_class check if no class defined. [TALlama](https://github.com/TALlama)
56
+
57
+ ### Bug fix
58
+ * Fix 'aria-required' field generated by prompt. [@CarlosAlbertoSantos](https://github.com/CarlosAlbertoSantos)
59
+
60
+ ## 5.0.1
61
+
62
+ ### Bug fix
63
+ * Replace `_url` with `remote_url` when trying to guess file inputs [@tegon](https://github.com/tegon). This has the side-effect of changing carrierwave's support from `0.2.1` to `0.2.2`.
64
+
65
+ ## 5.0.0
66
+
67
+ ### Enhancements
68
+ * Set multiple attribute for grouped selects also. [@ollym](https://github.com/ollym)
69
+ * Removes or renames label classes. [Abduvakilov](https://github.com/Abduvakilov)
70
+ * Support to label custom classes for inline collections. [@feliperenan](https://github.com/feliperenan)
71
+ * Update bootstrap generator template to match v4.3.x. [@m5o](https://github.com/m5o)
72
+ * Allow "required" attribute in generated select elements of PriorityInput. [@mcountis](https://github.com/mcountis)
73
+
74
+ ### Bug fix
75
+ * Do not call `#send` in form object to check whether the attribute is a file input. [@tegon](https://github.com/tegon)
76
+
77
+ ## Deprecations
78
+ * The config `SimpleForm.file_methods` is deprecated and it has no effect. Simple Form now supports automatically discover of file inputs for the following Gems: activestorage, carrierwave, paperclip, refile and shrine. If you are using a custom method that is not from one of the supported Gems, please change your forms to pass the input type explicitly:
79
+
80
+ ```erb
81
+ <%= form.input :avatar, as: :file %>
82
+ ```
83
+
84
+ See http://blog.plataformatec.com.br/2019/09/incorrect-access-control-in-simple-form-cve-2019-16676 for more information.
85
+
86
+ ## 4.1.0
87
+
88
+ ### Enhancements
89
+ * Guess input type more carefully. [@sringling](https://github.com/sringling)
90
+ * Allow custom error on forms without model. [@victorperez](https://github.com/victorperez)
91
+ * Do not support Ruby < 2.3 anymore. [@gssbzn](https://github.com/gssbzn)
92
+ * Add color input type. [@gssbzn](https://github.com/gssbzn)
93
+
94
+ ### Bug fix
95
+ * Improve disabled option to input_field. [@betelgeuse](https://github.com/betelgeuse)
96
+ * Memoize `input_html_classes` in `SimpleForm::Inputs::Base`. [@RigoTheDev](https://github.com/RigoTheDev)
97
+ * Fix column type citext HTML5 input type bug. [@brucew](https://github.com/brucew)
98
+ * Use form attribute in the nested boolean hidden field when it is given. [@feliperenan](https://github.com/feliperenan)
99
+
100
+ ## 4.0.1
101
+
102
+ ### Bug fix
103
+ * Do not support Rails 4 anymore. [@rafaelfranca](https://github.com/rafaelfranca)
104
+ * Add missing comma. [@vill](https://github.com/vill)
105
+
106
+ ## 4.0.0
107
+
108
+ ### Enhancements
109
+ * Add bootstrap v4.1 generator template. [@m5o](https://github.com/m5o)
110
+ * Add Rails 5.2 support. [@gobijan](https://github.com/gobijan)
111
+ * Add API to register custom components.[@feliperenan](https://github.com/feliperenan)
112
+ * Allow custom errors classes to inputs.[@feliperenan](https://github.com/feliperenan)
113
+ * Remove support from Rails 4.0, 4.1 and 4.2. [@feliperenan](https://github.com/feliperenan)
114
+ * Add support for citext, hstore, json & jsonb column types. [@swrobel](https://github.com/swrobel)
115
+ * Add :valid_class on input wrapper when value is present and valid [@aeberlin](https://github.com/aeberlin), [@m5o](https://github.com/m5o)
116
+ * Allow :valid_class to inputs when value is present and valid. [@m5o](https://github.com/m5o)
117
+ * Allow validation classes on input_field. [@feliperenan](https://github.com/feliperenan)
118
+ * Add basic ActiveStorage support. [@murb](https://github.com/murb)
119
+
120
+ ### Bug fix
121
+ * Fix horizontal form label position, from right to text-right. [@cavpollo](https://github.com/cavpollo)
122
+ * Add base error display alongside existing errors. [@bluefalcon26](https://github.com/bluefalcon26)
123
+ * Silent deprecation warning for placeholder_text. [@moofkit](https://github.com/moofkit)
124
+ * Use custom i18n scope for label required html. [@tvdeyen](https://github.com/tvdeyen)
125
+
126
+ ## 3.5.1
127
+
128
+ ### Enhancements
129
+ * Exclude hidden field when unchecked_value: false. [@fschwahn](https://github.com/fschwahn)
130
+ * Add frozen_string_literal magic comment to several files. [@oniofchaos](https://github.com/oniofchaos)
131
+ * Try convert @object to model in case we got decorated object [@timurvafin](https://github.com/timurvafin)
132
+ - From now, if you are using some object that inherits from `SimpleDelegator`, you must implement
133
+ `def to_model; self; end`. Otherwise, *Simple Form* will convert the decorated object to the model
134
+ since `SimpleDelegator` will delegate it to the model.
135
+ * Code cleanup [@Fornacula](https://github.com/Fornacula)
136
+
137
+ ### Bug fix
138
+ * Fix error when the scope from association has parameter. [@feliperenan](https://github.com/feliperenan)
139
+ * Only call `where` on associations when they respond to it. [@anicholson](https://github.com/anicholson)
140
+ * require 'action_pack' before using it. [@etagwerker](https://github.com/etagwerker)
141
+ * Check if Rails.env is defined. [@etagwerker](https://github.com/etagwerker)
142
+ * Fix minlength. [@mameier](https://github.com/mameier)
143
+ * Make errors_on_attribute return [] when not present. [@redrick](https://github.com/redrick)
144
+ * Fix boolean inputs in nested style for label non-string. [@feliperenan](https://github.com/feliperenan)
145
+
146
+ ## 3.5.0
147
+
148
+ * Updated gem dependency to support Rails 5.1.x.
149
+
150
+ ## 3.4.0
151
+
152
+ * Removed Ruby 2.4.0 `Integer` unification deprecation warning.
153
+ * Removed EOL Ruby 1.9.3 from the build matrix.
154
+ * Added `minlength` component.
155
+ * `boolean_label_class` can be set on a per-input basis.
156
+
157
+ ## 3.3.1
158
+
159
+ ### Bug fix
160
+
161
+ * Fix support for symbols when looking up types with `ActiveModel::Type`.
162
+
163
+ ## 3.3.0
164
+
165
+ ### enhancements
166
+ * Add the `aria-invalid` attribute on inputs with errors.
167
+ * Added support for the new `ActiveModel::Type` API over Active Record's
168
+ column objects.
169
+
170
+ ### bug fix
171
+ * Fix `merge_wrapper_options` to correctly merge options with duplicated keys. [@herminiotorres](https://github.com/herminiotorres)
172
+ Closes [#1278](https://github.com/heartcombo/simple_form/issues/1278).
173
+
174
+ ## 3.2.1
175
+
176
+ ### enhancements
177
+ * Updated gem dependency to support Rails 5.0.x.
178
+
179
+ ## 3.2.0
180
+
181
+ ### bug fix
182
+ * Improve performance of input generation by disabling support for `_html` translations. This reverts the feature introduced on the 3.1.0 branch
183
+
184
+ ## 3.1.1
185
+
186
+ ### enhancements
187
+ * Add the `disabled_class` to the label when the input is disabled. [@rhodrid](https://github.com/rhodrid)
188
+
189
+ ### bug fix
190
+ * Make it possible to override `required` value that was previously set in the wrapper. [@nashby](https://github.com/nashby)
191
+
192
+ * `date/time/datetime` inputs now correctly generate the label `for` attribute when
193
+ HTML5 compatibility is explicitly enabled. [@ericsullivan](https://github.com/ericsullivan)
194
+
195
+ * The datetime, date, and time inputs now have a nice format by default on bootstrap.
196
+ [@ulissesalmeida](https://github.com/ulissesalmeida) [@eltonchrls](https://github.com/eltonchrls)
197
+
198
+ * Now it is possible to set custom input mappings for collections.
199
+
200
+ Example:
201
+
202
+ ```ruby
203
+ # On configuration:
204
+ config.input_mappings = { /gender$/ => :check_boxes }
205
+
206
+ # On form:
207
+ f.input :gender, collection: [:male, :female]
208
+ ```
209
+ [strangeworks](https://github.com/strangeworks)
210
+
211
+ ## 3.1.0
212
+
213
+ ### enhancements
214
+ * Update foundation generator to version 5. [@jorge-d](https://github.com/jorge-d)
215
+ * Add mapping to `uuid` columns.
216
+ * Add custom namespaces for custom inputs feature. [@vala](https://github.com/vala)
217
+ * Add `:unless_blank` option to the wrapper API. [@IanVaughan](https://github.com/IanVaughan)
218
+ * Add support to html markup in the I18n options. [@laurocaetano](https://github.com/laurocaetano)
219
+ * Add the `full_error` component. [@laurocaetano](https://github.com/laurocaetano)
220
+ * Add support to `scope` to be used on associations. [@laurocaetano](https://github.com/laurocaetano)
221
+ * Execute the association `condition` in the object context. [@laurocaetano](https://github.com/laurocaetano)
222
+ * Check if the given association responds to `order` before calling it. [@laurocaetano](https://github.com/laurocaetano)
223
+ * Add Bootstrap 3 initializer template.
224
+ * For radio or checkbox collection always use `:item_wrapper_tag` to wrap the content and add `label` when using `boolean_style` with `:nested` [@kassio](https://github.com/kassio) and [@erichkist](https://github.com/erichkist)
225
+ * `input_field` uses the same wrapper as input but only with attribute components. [@nashby](https://github.com/nashby)
226
+ * Add wrapper mapping per form basis [@rcillo](https://github.com/rcillo) and [@bernardoamc](https://github.com/bernardoamc)
227
+ * Add `for` attribute to `label` when collections are rendered as radio or checkbox [@erichkist](https://github.com/erichkist), [@ulissesalmeida](https://github.com/ulissesalmeida) and [@fabioyamate](https://github.com/fabioyamate)
228
+ * Add `include_default_input_wrapper_class` config [@luizcosta](https://github.com/luizcosta)
229
+ * Map `datetime`, `date` and `time` input types to their respective HTML5 input tags
230
+ when the `:html5` is set to `true` [@volmer](https://github.com/volmer)
231
+ * Add `boolean_label_class` config.
232
+ * Add `:html` option to include additional attributes on custom wrappers [@remofritzsche](https://github.com/remofritzsche) and [@ulissesalmeida](https://github.com/ulissesalmeida)
233
+ * Make possible to use the Wrappers API to define attributes for the components.
234
+ See https://github.com/heartcombo/simple_form/pull/997 for more information.
235
+ * Put a whitespace before the `inline_label` options of boolean input if it is present.
236
+ * Add support to configure the `label_text` proc at the wrapper level. [@NOX73](https://github.com/NOX73)
237
+ * `label_text` proc now receive three arguments (label, request, and if the label was explicit). [@timscott](https://github.com/timscott)
238
+ * Add I18n support to `:include_blank` and `:prompt` when `:translate` is used as value. [@haines](https://github.com/heartcombo/simple_form/pull/616)
239
+ * Add support to define custom error messages for the attributes.
240
+ * Add support to change the I18n scope to be used in Simple Form. [@nielsbuus](https://github.com/nielsbuus)
241
+ * The default form class can now be overridden with `html: { :class }`. [@rmm5t](https://github.com/rmm5t)
242
+
243
+ ### bug fix
244
+ * Fix `full_error` when the attribute is an association. [@mvdamme](https://github.com/jorge-d)
245
+ * Fix support to `:namespace` and `:index` options for nested check boxes and radio buttons when the attribute is an association.
246
+ * Collection input that uses automatic collection translation properly sets checked values.
247
+ Closes [#971](https://github.com/heartcombo/simple_form/issues/971) [@nashby](https://github.com/nashby)
248
+ * Collection input generates `required` attribute if it has `prompt` option. [@nashby](https://github.com/nashby)
249
+ * Grouped collection uses the first non-empty object to detect label and value methods.
250
+
251
+ ## deprecation
252
+ * Methods on custom inputs now accept a required argument with the wrapper options.
253
+ See https://github.com/heartcombo/simple_form/pull/997 for more information.
254
+ * SimpleForm.form_class is deprecated in favor of SimpleForm.default_form_class.
255
+ Future versions of Simple Form will not generate `simple_form` class for the form
256
+ element.
257
+ See https://github.com/heartcombo/simple_form/pull/1109 for more information.
258
+
259
+ Please check [v3.0](https://github.com/heartcombo/simple_form/blob/v3.0/CHANGELOG.md) for previous changes.
@@ -0,0 +1,21 @@
1
+ Copyright (c) 2020-CURRENT Rafael França, Carlos Antonio da Silva
2
+ Copyright (c) 2009-2019 Plataformatec
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining
5
+ a copy of this software and associated documentation files (the
6
+ "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish,
8
+ distribute, sublicense, and/or sell copies of the Software, and to
9
+ permit persons to whom the Software is furnished to do so, subject to
10
+ the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.