mega-safe-tool 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.
- checksums.yaml +7 -0
- data/formtastic-6.0.0/Appraisals +23 -0
- data/formtastic-6.0.0/CONTRIBUTING.md +27 -0
- data/formtastic-6.0.0/Gemfile +8 -0
- data/formtastic-6.0.0/MIT-LICENSE +20 -0
- data/formtastic-6.0.0/README.md +600 -0
- data/formtastic-6.0.0/RELEASE_PROCESS +7 -0
- data/formtastic-6.0.0/Rakefile +54 -0
- data/formtastic-6.0.0/bin/appraisal +8 -0
- data/formtastic-6.0.0/formtastic.gemspec +45 -0
- data/formtastic-6.0.0/gemfiles/rails_72.gemfile +9 -0
- data/formtastic-6.0.0/gemfiles/rails_80.gemfile +9 -0
- data/formtastic-6.0.0/gemfiles/rails_81.gemfile +9 -0
- data/formtastic-6.0.0/gemfiles/rails_edge.gemfile +9 -0
- data/formtastic-6.0.0/lib/formtastic/action_class_finder.rb +19 -0
- data/formtastic-6.0.0/lib/formtastic/actions/base.rb +157 -0
- data/formtastic-6.0.0/lib/formtastic/actions/button_action.rb +68 -0
- data/formtastic-6.0.0/lib/formtastic/actions/buttonish.rb +18 -0
- data/formtastic-6.0.0/lib/formtastic/actions/input_action.rb +71 -0
- data/formtastic-6.0.0/lib/formtastic/actions/link_action.rb +89 -0
- data/formtastic-6.0.0/lib/formtastic/actions.rb +15 -0
- data/formtastic-6.0.0/lib/formtastic/deprecation.rb +6 -0
- data/formtastic-6.0.0/lib/formtastic/form_builder.rb +109 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/action_helper.rb +115 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/actions_helper.rb +169 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/enum.rb +14 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/errors_helper.rb +139 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/fieldset_wrapper.rb +85 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/file_column_detection.rb +17 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/form_helper.rb +204 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/input_helper.rb +349 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/inputs_helper.rb +421 -0
- data/formtastic-6.0.0/lib/formtastic/helpers/reflection.rb +38 -0
- data/formtastic-6.0.0/lib/formtastic/helpers.rb +16 -0
- data/formtastic-6.0.0/lib/formtastic/html_attributes.rb +33 -0
- data/formtastic-6.0.0/lib/formtastic/i18n.rb +33 -0
- data/formtastic-6.0.0/lib/formtastic/input_class_finder.rb +19 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/aria.rb +26 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/associations.rb +32 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/choices.rb +109 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/collections.rb +158 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/database.rb +20 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/datetime_pickerish.rb +86 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/errors.rb +59 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/fileish.rb +24 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/hints.rb +32 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/html.rb +54 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/labelling.rb +53 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/naming.rb +43 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/numeric.rb +51 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/options.rb +18 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/placeholder.rb +18 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/stringish.rb +39 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/timeish.rb +246 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/validations.rb +250 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base/wrapping.rb +51 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/base.rb +79 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/boolean_input.rb +119 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/check_boxes_input.rb +198 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/color_input.rb +42 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/country_input.rb +90 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/datalist_input.rb +42 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/date_picker_input.rb +94 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/date_select_input.rb +35 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/datetime_picker_input.rb +104 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/datetime_select_input.rb +13 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/email_input.rb +42 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/file_input.rb +43 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/hidden_input.rb +63 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/number_input.rb +89 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/password_input.rb +42 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/phone_input.rb +43 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/radio_input.rb +164 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/range_input.rb +96 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/search_input.rb +42 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/select_input.rb +236 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/string_input.rb +37 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/text_input.rb +49 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/time_picker_input.rb +100 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/time_select_input.rb +39 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/time_zone_input.rb +59 -0
- data/formtastic-6.0.0/lib/formtastic/inputs/url_input.rb +42 -0
- data/formtastic-6.0.0/lib/formtastic/inputs.rb +43 -0
- data/formtastic-6.0.0/lib/formtastic/localized_string.rb +18 -0
- data/formtastic-6.0.0/lib/formtastic/localizer.rb +151 -0
- data/formtastic-6.0.0/lib/formtastic/namespaced_class_finder.rb +98 -0
- data/formtastic-6.0.0/lib/formtastic/version.rb +4 -0
- data/formtastic-6.0.0/lib/formtastic.rb +48 -0
- data/formtastic-6.0.0/lib/generators/formtastic/form/form_generator.rb +111 -0
- data/formtastic-6.0.0/lib/generators/formtastic/input/input_generator.rb +47 -0
- data/formtastic-6.0.0/lib/generators/formtastic/install/install_generator.rb +23 -0
- data/formtastic-6.0.0/lib/generators/formtastic/stylesheets/stylesheets_generator.rb +15 -0
- data/formtastic-6.0.0/lib/generators/templates/_form.html.erb +11 -0
- data/formtastic-6.0.0/lib/generators/templates/_form.html.haml +8 -0
- data/formtastic-6.0.0/lib/generators/templates/_form.html.slim +8 -0
- data/formtastic-6.0.0/lib/generators/templates/formtastic.css +289 -0
- data/formtastic-6.0.0/lib/generators/templates/formtastic.rb +118 -0
- data/formtastic-6.0.0/lib/generators/templates/input.rb +19 -0
- data/formtastic-6.0.0/lib/locale/en.yml +10 -0
- data/formtastic-6.0.0/sample/basic_inputs.html +224 -0
- data/formtastic-6.0.0/sample/config.ru +69 -0
- data/formtastic-6.0.0/sample/index.html +14 -0
- data/formtastic-6.0.0/script/integration-template.rb +76 -0
- data/formtastic-6.0.0/script/integration.sh +32 -0
- data/formtastic-6.0.0/spec/action_class_finder_spec.rb +12 -0
- data/formtastic-6.0.0/spec/actions/button_action_spec.rb +63 -0
- data/formtastic-6.0.0/spec/actions/generic_action_spec.rb +521 -0
- data/formtastic-6.0.0/spec/actions/input_action_spec.rb +59 -0
- data/formtastic-6.0.0/spec/actions/link_action_spec.rb +92 -0
- data/formtastic-6.0.0/spec/builder/custom_builder_spec.rb +132 -0
- data/formtastic-6.0.0/spec/builder/error_proc_spec.rb +27 -0
- data/formtastic-6.0.0/spec/builder/semantic_fields_for_spec.rb +213 -0
- data/formtastic-6.0.0/spec/fast_spec_helper.rb +12 -0
- data/formtastic-6.0.0/spec/generators/formtastic/form/form_generator_spec.rb +132 -0
- data/formtastic-6.0.0/spec/generators/formtastic/input/input_generator_spec.rb +125 -0
- data/formtastic-6.0.0/spec/generators/formtastic/install/install_generator_spec.rb +48 -0
- data/formtastic-6.0.0/spec/generators/formtastic/stylesheets/stylesheets_generator_spec.rb +22 -0
- data/formtastic-6.0.0/spec/helpers/action_helper_spec.rb +338 -0
- data/formtastic-6.0.0/spec/helpers/actions_helper_spec.rb +143 -0
- data/formtastic-6.0.0/spec/helpers/form_helper_spec.rb +224 -0
- data/formtastic-6.0.0/spec/helpers/input_helper_spec.rb +991 -0
- data/formtastic-6.0.0/spec/helpers/inputs_helper_spec.rb +669 -0
- data/formtastic-6.0.0/spec/helpers/reflection_helper_spec.rb +32 -0
- data/formtastic-6.0.0/spec/helpers/semantic_errors_helper_spec.rb +220 -0
- data/formtastic-6.0.0/spec/i18n_spec.rb +210 -0
- data/formtastic-6.0.0/spec/input_class_finder_spec.rb +10 -0
- data/formtastic-6.0.0/spec/inputs/base/collections_spec.rb +119 -0
- data/formtastic-6.0.0/spec/inputs/base/validations_spec.rb +481 -0
- data/formtastic-6.0.0/spec/inputs/boolean_input_spec.rb +254 -0
- data/formtastic-6.0.0/spec/inputs/check_boxes_input_spec.rb +547 -0
- data/formtastic-6.0.0/spec/inputs/color_input_spec.rb +85 -0
- data/formtastic-6.0.0/spec/inputs/country_input_spec.rb +133 -0
- data/formtastic-6.0.0/spec/inputs/custom_input_spec.rb +51 -0
- data/formtastic-6.0.0/spec/inputs/datalist_input_spec.rb +61 -0
- data/formtastic-6.0.0/spec/inputs/date_picker_input_spec.rb +449 -0
- data/formtastic-6.0.0/spec/inputs/date_select_input_spec.rb +249 -0
- data/formtastic-6.0.0/spec/inputs/datetime_picker_input_spec.rb +490 -0
- data/formtastic-6.0.0/spec/inputs/datetime_select_input_spec.rb +209 -0
- data/formtastic-6.0.0/spec/inputs/email_input_spec.rb +85 -0
- data/formtastic-6.0.0/spec/inputs/file_input_spec.rb +89 -0
- data/formtastic-6.0.0/spec/inputs/hidden_input_spec.rb +135 -0
- data/formtastic-6.0.0/spec/inputs/include_blank_spec.rb +78 -0
- data/formtastic-6.0.0/spec/inputs/label_spec.rb +181 -0
- data/formtastic-6.0.0/spec/inputs/number_input_spec.rb +815 -0
- data/formtastic-6.0.0/spec/inputs/password_input_spec.rb +99 -0
- data/formtastic-6.0.0/spec/inputs/phone_input_spec.rb +85 -0
- data/formtastic-6.0.0/spec/inputs/placeholder_spec.rb +71 -0
- data/formtastic-6.0.0/spec/inputs/radio_input_spec.rb +326 -0
- data/formtastic-6.0.0/spec/inputs/range_input_spec.rb +505 -0
- data/formtastic-6.0.0/spec/inputs/readonly_spec.rb +50 -0
- data/formtastic-6.0.0/spec/inputs/search_input_spec.rb +84 -0
- data/formtastic-6.0.0/spec/inputs/select_input_spec.rb +661 -0
- data/formtastic-6.0.0/spec/inputs/string_input_spec.rb +326 -0
- data/formtastic-6.0.0/spec/inputs/text_input_spec.rb +187 -0
- data/formtastic-6.0.0/spec/inputs/time_picker_input_spec.rb +455 -0
- data/formtastic-6.0.0/spec/inputs/time_select_input_spec.rb +261 -0
- data/formtastic-6.0.0/spec/inputs/time_zone_input_spec.rb +143 -0
- data/formtastic-6.0.0/spec/inputs/url_input_spec.rb +85 -0
- data/formtastic-6.0.0/spec/inputs/with_options_spec.rb +43 -0
- data/formtastic-6.0.0/spec/localizer_spec.rb +130 -0
- data/formtastic-6.0.0/spec/namespaced_class_finder_spec.rb +90 -0
- data/formtastic-6.0.0/spec/schema.rb +22 -0
- data/formtastic-6.0.0/spec/spec.opts +2 -0
- data/formtastic-6.0.0/spec/spec_helper.rb +466 -0
- data/formtastic-6.0.0/spec/support/custom_macros.rb +570 -0
- data/formtastic-6.0.0/spec/support/deprecation.rb +7 -0
- data/formtastic-6.0.0/spec/support/shared_examples.rb +13 -0
- data/formtastic-6.0.0/spec/support/specialized_class_finder_shared_example.rb +27 -0
- data/formtastic-6.0.0/spec/support/test_environment.rb +46 -0
- data/mega-safe-tool.gemspec +11 -0
- metadata +209 -0
metadata
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: mega-safe-tool
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andrey78
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-07-06 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: University research based on formtastic
|
|
13
|
+
email:
|
|
14
|
+
- cakoc614@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- formtastic-6.0.0/Appraisals
|
|
20
|
+
- formtastic-6.0.0/CONTRIBUTING.md
|
|
21
|
+
- formtastic-6.0.0/Gemfile
|
|
22
|
+
- formtastic-6.0.0/MIT-LICENSE
|
|
23
|
+
- formtastic-6.0.0/README.md
|
|
24
|
+
- formtastic-6.0.0/RELEASE_PROCESS
|
|
25
|
+
- formtastic-6.0.0/Rakefile
|
|
26
|
+
- formtastic-6.0.0/bin/appraisal
|
|
27
|
+
- formtastic-6.0.0/formtastic.gemspec
|
|
28
|
+
- formtastic-6.0.0/gemfiles/rails_72.gemfile
|
|
29
|
+
- formtastic-6.0.0/gemfiles/rails_80.gemfile
|
|
30
|
+
- formtastic-6.0.0/gemfiles/rails_81.gemfile
|
|
31
|
+
- formtastic-6.0.0/gemfiles/rails_edge.gemfile
|
|
32
|
+
- formtastic-6.0.0/lib/formtastic.rb
|
|
33
|
+
- formtastic-6.0.0/lib/formtastic/action_class_finder.rb
|
|
34
|
+
- formtastic-6.0.0/lib/formtastic/actions.rb
|
|
35
|
+
- formtastic-6.0.0/lib/formtastic/actions/base.rb
|
|
36
|
+
- formtastic-6.0.0/lib/formtastic/actions/button_action.rb
|
|
37
|
+
- formtastic-6.0.0/lib/formtastic/actions/buttonish.rb
|
|
38
|
+
- formtastic-6.0.0/lib/formtastic/actions/input_action.rb
|
|
39
|
+
- formtastic-6.0.0/lib/formtastic/actions/link_action.rb
|
|
40
|
+
- formtastic-6.0.0/lib/formtastic/deprecation.rb
|
|
41
|
+
- formtastic-6.0.0/lib/formtastic/form_builder.rb
|
|
42
|
+
- formtastic-6.0.0/lib/formtastic/helpers.rb
|
|
43
|
+
- formtastic-6.0.0/lib/formtastic/helpers/action_helper.rb
|
|
44
|
+
- formtastic-6.0.0/lib/formtastic/helpers/actions_helper.rb
|
|
45
|
+
- formtastic-6.0.0/lib/formtastic/helpers/enum.rb
|
|
46
|
+
- formtastic-6.0.0/lib/formtastic/helpers/errors_helper.rb
|
|
47
|
+
- formtastic-6.0.0/lib/formtastic/helpers/fieldset_wrapper.rb
|
|
48
|
+
- formtastic-6.0.0/lib/formtastic/helpers/file_column_detection.rb
|
|
49
|
+
- formtastic-6.0.0/lib/formtastic/helpers/form_helper.rb
|
|
50
|
+
- formtastic-6.0.0/lib/formtastic/helpers/input_helper.rb
|
|
51
|
+
- formtastic-6.0.0/lib/formtastic/helpers/inputs_helper.rb
|
|
52
|
+
- formtastic-6.0.0/lib/formtastic/helpers/reflection.rb
|
|
53
|
+
- formtastic-6.0.0/lib/formtastic/html_attributes.rb
|
|
54
|
+
- formtastic-6.0.0/lib/formtastic/i18n.rb
|
|
55
|
+
- formtastic-6.0.0/lib/formtastic/input_class_finder.rb
|
|
56
|
+
- formtastic-6.0.0/lib/formtastic/inputs.rb
|
|
57
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base.rb
|
|
58
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/aria.rb
|
|
59
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/associations.rb
|
|
60
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/choices.rb
|
|
61
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/collections.rb
|
|
62
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/database.rb
|
|
63
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/datetime_pickerish.rb
|
|
64
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/errors.rb
|
|
65
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/fileish.rb
|
|
66
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/hints.rb
|
|
67
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/html.rb
|
|
68
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/labelling.rb
|
|
69
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/naming.rb
|
|
70
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/numeric.rb
|
|
71
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/options.rb
|
|
72
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/placeholder.rb
|
|
73
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/stringish.rb
|
|
74
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/timeish.rb
|
|
75
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/validations.rb
|
|
76
|
+
- formtastic-6.0.0/lib/formtastic/inputs/base/wrapping.rb
|
|
77
|
+
- formtastic-6.0.0/lib/formtastic/inputs/boolean_input.rb
|
|
78
|
+
- formtastic-6.0.0/lib/formtastic/inputs/check_boxes_input.rb
|
|
79
|
+
- formtastic-6.0.0/lib/formtastic/inputs/color_input.rb
|
|
80
|
+
- formtastic-6.0.0/lib/formtastic/inputs/country_input.rb
|
|
81
|
+
- formtastic-6.0.0/lib/formtastic/inputs/datalist_input.rb
|
|
82
|
+
- formtastic-6.0.0/lib/formtastic/inputs/date_picker_input.rb
|
|
83
|
+
- formtastic-6.0.0/lib/formtastic/inputs/date_select_input.rb
|
|
84
|
+
- formtastic-6.0.0/lib/formtastic/inputs/datetime_picker_input.rb
|
|
85
|
+
- formtastic-6.0.0/lib/formtastic/inputs/datetime_select_input.rb
|
|
86
|
+
- formtastic-6.0.0/lib/formtastic/inputs/email_input.rb
|
|
87
|
+
- formtastic-6.0.0/lib/formtastic/inputs/file_input.rb
|
|
88
|
+
- formtastic-6.0.0/lib/formtastic/inputs/hidden_input.rb
|
|
89
|
+
- formtastic-6.0.0/lib/formtastic/inputs/number_input.rb
|
|
90
|
+
- formtastic-6.0.0/lib/formtastic/inputs/password_input.rb
|
|
91
|
+
- formtastic-6.0.0/lib/formtastic/inputs/phone_input.rb
|
|
92
|
+
- formtastic-6.0.0/lib/formtastic/inputs/radio_input.rb
|
|
93
|
+
- formtastic-6.0.0/lib/formtastic/inputs/range_input.rb
|
|
94
|
+
- formtastic-6.0.0/lib/formtastic/inputs/search_input.rb
|
|
95
|
+
- formtastic-6.0.0/lib/formtastic/inputs/select_input.rb
|
|
96
|
+
- formtastic-6.0.0/lib/formtastic/inputs/string_input.rb
|
|
97
|
+
- formtastic-6.0.0/lib/formtastic/inputs/text_input.rb
|
|
98
|
+
- formtastic-6.0.0/lib/formtastic/inputs/time_picker_input.rb
|
|
99
|
+
- formtastic-6.0.0/lib/formtastic/inputs/time_select_input.rb
|
|
100
|
+
- formtastic-6.0.0/lib/formtastic/inputs/time_zone_input.rb
|
|
101
|
+
- formtastic-6.0.0/lib/formtastic/inputs/url_input.rb
|
|
102
|
+
- formtastic-6.0.0/lib/formtastic/localized_string.rb
|
|
103
|
+
- formtastic-6.0.0/lib/formtastic/localizer.rb
|
|
104
|
+
- formtastic-6.0.0/lib/formtastic/namespaced_class_finder.rb
|
|
105
|
+
- formtastic-6.0.0/lib/formtastic/version.rb
|
|
106
|
+
- formtastic-6.0.0/lib/generators/formtastic/form/form_generator.rb
|
|
107
|
+
- formtastic-6.0.0/lib/generators/formtastic/input/input_generator.rb
|
|
108
|
+
- formtastic-6.0.0/lib/generators/formtastic/install/install_generator.rb
|
|
109
|
+
- formtastic-6.0.0/lib/generators/formtastic/stylesheets/stylesheets_generator.rb
|
|
110
|
+
- formtastic-6.0.0/lib/generators/templates/_form.html.erb
|
|
111
|
+
- formtastic-6.0.0/lib/generators/templates/_form.html.haml
|
|
112
|
+
- formtastic-6.0.0/lib/generators/templates/_form.html.slim
|
|
113
|
+
- formtastic-6.0.0/lib/generators/templates/formtastic.css
|
|
114
|
+
- formtastic-6.0.0/lib/generators/templates/formtastic.rb
|
|
115
|
+
- formtastic-6.0.0/lib/generators/templates/input.rb
|
|
116
|
+
- formtastic-6.0.0/lib/locale/en.yml
|
|
117
|
+
- formtastic-6.0.0/sample/basic_inputs.html
|
|
118
|
+
- formtastic-6.0.0/sample/config.ru
|
|
119
|
+
- formtastic-6.0.0/sample/index.html
|
|
120
|
+
- formtastic-6.0.0/script/integration-template.rb
|
|
121
|
+
- formtastic-6.0.0/script/integration.sh
|
|
122
|
+
- formtastic-6.0.0/spec/action_class_finder_spec.rb
|
|
123
|
+
- formtastic-6.0.0/spec/actions/button_action_spec.rb
|
|
124
|
+
- formtastic-6.0.0/spec/actions/generic_action_spec.rb
|
|
125
|
+
- formtastic-6.0.0/spec/actions/input_action_spec.rb
|
|
126
|
+
- formtastic-6.0.0/spec/actions/link_action_spec.rb
|
|
127
|
+
- formtastic-6.0.0/spec/builder/custom_builder_spec.rb
|
|
128
|
+
- formtastic-6.0.0/spec/builder/error_proc_spec.rb
|
|
129
|
+
- formtastic-6.0.0/spec/builder/semantic_fields_for_spec.rb
|
|
130
|
+
- formtastic-6.0.0/spec/fast_spec_helper.rb
|
|
131
|
+
- formtastic-6.0.0/spec/generators/formtastic/form/form_generator_spec.rb
|
|
132
|
+
- formtastic-6.0.0/spec/generators/formtastic/input/input_generator_spec.rb
|
|
133
|
+
- formtastic-6.0.0/spec/generators/formtastic/install/install_generator_spec.rb
|
|
134
|
+
- formtastic-6.0.0/spec/generators/formtastic/stylesheets/stylesheets_generator_spec.rb
|
|
135
|
+
- formtastic-6.0.0/spec/helpers/action_helper_spec.rb
|
|
136
|
+
- formtastic-6.0.0/spec/helpers/actions_helper_spec.rb
|
|
137
|
+
- formtastic-6.0.0/spec/helpers/form_helper_spec.rb
|
|
138
|
+
- formtastic-6.0.0/spec/helpers/input_helper_spec.rb
|
|
139
|
+
- formtastic-6.0.0/spec/helpers/inputs_helper_spec.rb
|
|
140
|
+
- formtastic-6.0.0/spec/helpers/reflection_helper_spec.rb
|
|
141
|
+
- formtastic-6.0.0/spec/helpers/semantic_errors_helper_spec.rb
|
|
142
|
+
- formtastic-6.0.0/spec/i18n_spec.rb
|
|
143
|
+
- formtastic-6.0.0/spec/input_class_finder_spec.rb
|
|
144
|
+
- formtastic-6.0.0/spec/inputs/base/collections_spec.rb
|
|
145
|
+
- formtastic-6.0.0/spec/inputs/base/validations_spec.rb
|
|
146
|
+
- formtastic-6.0.0/spec/inputs/boolean_input_spec.rb
|
|
147
|
+
- formtastic-6.0.0/spec/inputs/check_boxes_input_spec.rb
|
|
148
|
+
- formtastic-6.0.0/spec/inputs/color_input_spec.rb
|
|
149
|
+
- formtastic-6.0.0/spec/inputs/country_input_spec.rb
|
|
150
|
+
- formtastic-6.0.0/spec/inputs/custom_input_spec.rb
|
|
151
|
+
- formtastic-6.0.0/spec/inputs/datalist_input_spec.rb
|
|
152
|
+
- formtastic-6.0.0/spec/inputs/date_picker_input_spec.rb
|
|
153
|
+
- formtastic-6.0.0/spec/inputs/date_select_input_spec.rb
|
|
154
|
+
- formtastic-6.0.0/spec/inputs/datetime_picker_input_spec.rb
|
|
155
|
+
- formtastic-6.0.0/spec/inputs/datetime_select_input_spec.rb
|
|
156
|
+
- formtastic-6.0.0/spec/inputs/email_input_spec.rb
|
|
157
|
+
- formtastic-6.0.0/spec/inputs/file_input_spec.rb
|
|
158
|
+
- formtastic-6.0.0/spec/inputs/hidden_input_spec.rb
|
|
159
|
+
- formtastic-6.0.0/spec/inputs/include_blank_spec.rb
|
|
160
|
+
- formtastic-6.0.0/spec/inputs/label_spec.rb
|
|
161
|
+
- formtastic-6.0.0/spec/inputs/number_input_spec.rb
|
|
162
|
+
- formtastic-6.0.0/spec/inputs/password_input_spec.rb
|
|
163
|
+
- formtastic-6.0.0/spec/inputs/phone_input_spec.rb
|
|
164
|
+
- formtastic-6.0.0/spec/inputs/placeholder_spec.rb
|
|
165
|
+
- formtastic-6.0.0/spec/inputs/radio_input_spec.rb
|
|
166
|
+
- formtastic-6.0.0/spec/inputs/range_input_spec.rb
|
|
167
|
+
- formtastic-6.0.0/spec/inputs/readonly_spec.rb
|
|
168
|
+
- formtastic-6.0.0/spec/inputs/search_input_spec.rb
|
|
169
|
+
- formtastic-6.0.0/spec/inputs/select_input_spec.rb
|
|
170
|
+
- formtastic-6.0.0/spec/inputs/string_input_spec.rb
|
|
171
|
+
- formtastic-6.0.0/spec/inputs/text_input_spec.rb
|
|
172
|
+
- formtastic-6.0.0/spec/inputs/time_picker_input_spec.rb
|
|
173
|
+
- formtastic-6.0.0/spec/inputs/time_select_input_spec.rb
|
|
174
|
+
- formtastic-6.0.0/spec/inputs/time_zone_input_spec.rb
|
|
175
|
+
- formtastic-6.0.0/spec/inputs/url_input_spec.rb
|
|
176
|
+
- formtastic-6.0.0/spec/inputs/with_options_spec.rb
|
|
177
|
+
- formtastic-6.0.0/spec/localizer_spec.rb
|
|
178
|
+
- formtastic-6.0.0/spec/namespaced_class_finder_spec.rb
|
|
179
|
+
- formtastic-6.0.0/spec/schema.rb
|
|
180
|
+
- formtastic-6.0.0/spec/spec.opts
|
|
181
|
+
- formtastic-6.0.0/spec/spec_helper.rb
|
|
182
|
+
- formtastic-6.0.0/spec/support/custom_macros.rb
|
|
183
|
+
- formtastic-6.0.0/spec/support/deprecation.rb
|
|
184
|
+
- formtastic-6.0.0/spec/support/shared_examples.rb
|
|
185
|
+
- formtastic-6.0.0/spec/support/specialized_class_finder_shared_example.rb
|
|
186
|
+
- formtastic-6.0.0/spec/support/test_environment.rb
|
|
187
|
+
- mega-safe-tool.gemspec
|
|
188
|
+
homepage: https://rubygems.org/profiles/Andrey78
|
|
189
|
+
licenses:
|
|
190
|
+
- MIT
|
|
191
|
+
metadata: {}
|
|
192
|
+
rdoc_options: []
|
|
193
|
+
require_paths:
|
|
194
|
+
- lib
|
|
195
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
196
|
+
requirements:
|
|
197
|
+
- - ">="
|
|
198
|
+
- !ruby/object:Gem::Version
|
|
199
|
+
version: '0'
|
|
200
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
201
|
+
requirements:
|
|
202
|
+
- - ">="
|
|
203
|
+
- !ruby/object:Gem::Version
|
|
204
|
+
version: '0'
|
|
205
|
+
requirements: []
|
|
206
|
+
rubygems_version: 3.6.2
|
|
207
|
+
specification_version: 4
|
|
208
|
+
summary: Research test
|
|
209
|
+
test_files: []
|