cellscan 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +28 -0
  4. data/Rakefile +8 -0
  5. data/app/assets/builds/cellscan/application.css +956 -0
  6. data/app/assets/builds/cellscan/application.js +6976 -0
  7. data/app/assets/builds/cellscan/application.js.map +7 -0
  8. data/app/assets/config/cellscan_manifest.js +1 -0
  9. data/app/assets/stylesheets/cellscan/application.css +12 -0
  10. data/app/assets/stylesheets/cellscan/application.tailwind.css +89 -0
  11. data/app/controllers/cellscan/application_controller.rb +6 -0
  12. data/app/controllers/cellscan/files_controller.rb +36 -0
  13. data/app/controllers/cellscan/welcome_controller.rb +6 -0
  14. data/app/helpers/cellscan/application_helper.rb +5 -0
  15. data/app/javascript/application.js +5 -0
  16. data/app/javascript/controllers/application.js +9 -0
  17. data/app/javascript/controllers/debounce_controller.js +14 -0
  18. data/app/javascript/controllers/dropdown_controller.js +38 -0
  19. data/app/javascript/controllers/filter_checkboxes_controller.js +28 -0
  20. data/app/javascript/controllers/index.js +17 -0
  21. data/app/javascript/controllers/search_select_controller.js +30 -0
  22. data/app/jobs/cellscan/application_job.rb +4 -0
  23. data/app/mailers/cellscan/application_mailer.rb +6 -0
  24. data/app/models/cellscan/application_record.rb +5 -0
  25. data/app/views/cellscan/files/open.html.erb +42 -0
  26. data/app/views/cellscan/welcome/index.html.erb +1 -0
  27. data/app/views/layouts/cellscan/application.html.erb +16 -0
  28. data/config/routes.rb +6 -0
  29. data/config/tailwind.config.js +24 -0
  30. data/lib/cellscan/engine.rb +5 -0
  31. data/lib/cellscan/version.rb +3 -0
  32. data/lib/cellscan.rb +6 -0
  33. data/lib/generators/cellscan/base_generator.rb +13 -0
  34. data/lib/generators/cellscan/install_generator.rb +24 -0
  35. data/lib/generators/cellscan/templates/initializer/cellscan.tt +3 -0
  36. data/lib/tasks/cellscan_tasks.rake +4 -0
  37. metadata +152 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1aca5fce14c0985d8efb0b24e06fd05d22dee235df436de918ca5a72dddf21a0
4
+ data.tar.gz: ffef4d45127689186463547b86533c6e389fb0bd0246c4741f94e427593f492b
5
+ SHA512:
6
+ metadata.gz: 10f83bf294080644fa35dd62734f327425dd64ab98617d4a83736a7d747adc2455582988ec05b769024fd0dd421b596df022fda149dd6bcf7cd3e25b81bbd48d
7
+ data.tar.gz: 210f98b9da89fec11e5c11bec47538ce7930d966c71aa9f3426094cb9487a54c77b0591427486f5363cf21cf309726027be06c6a51d495577aa5b9fd38ccb5a4
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2023 Till Carlos
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
+ # Cellscan
2
+ A rails engine to view CSV files in a table.
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 "cellscan"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install cellscan
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,8 @@
1
+ require "bundler/setup"
2
+
3
+ APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
5
+
6
+ load "rails/tasks/statistics.rake"
7
+
8
+ require "bundler/gem_tasks"