rafmycat 1.0.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.
- checksums.yaml +7 -0
 - data/Documentation.md +33 -0
 - data/LICENSE.txt +21 -0
 - data/lib/raf/version.rb +5 -0
 - data/lib/raf.rb +10 -0
 - data/lib/source/DBUniversity.rb +37 -0
 - data/lib/source/Students_list_DB.rb +70 -0
 - data/lib/source/controller.rb +119 -0
 - data/lib/source/data/data_list.rb +76 -0
 - data/lib/source/data/data_list_student_short.rb +15 -0
 - data/lib/source/data/data_table.rb +38 -0
 - data/lib/source/logger_holder.rb +20 -0
 - data/lib/source/logicFromWindow.rb +182 -0
 - data/lib/source/strategy/student_list_base.rb +73 -0
 - data/lib/source/strategy/student_list_strategy.rb +10 -0
 - data/lib/source/strategy/students_list_json.rb +16 -0
 - data/lib/source/strategy/students_list_txt.rb +44 -0
 - data/lib/source/strategy/students_list_yaml.rb +20 -0
 - data/lib/source/student/student.rb +151 -0
 - data/lib/source/student/student_short.rb +35 -0
 - data/lib/source/studentFileAdapter.rb +36 -0
 - data/lib/source/studentList.rb +29 -0
 - data/lib/source/student_contact_form_controller.rb +40 -0
 - data/lib/source/student_create_form.rb +67 -0
 - data/lib/source/student_create_form_controller.rb +35 -0
 - data/lib/source/student_edit_form_controller.rb +40 -0
 - data/lib/source/student_git_form_controller.rb +38 -0
 - data/rafmycat.gemspec +17 -0
 - data/sig/ribbish_code.rbs +4 -0
 - metadata +85 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,85 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: rafmycat
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Valentina Goncharenko
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire:
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-05-19 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: sqlite3
         
     | 
| 
      
 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: А gem that allows you to get pass for patterns
         
     | 
| 
      
 28 
     | 
    
         
            +
            email:
         
     | 
| 
      
 29 
     | 
    
         
            +
            - valentinagoncarenko975@gmail.com
         
     | 
| 
      
 30 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 31 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 32 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 33 
     | 
    
         
            +
            files:
         
     | 
| 
      
 34 
     | 
    
         
            +
            - Documentation.md
         
     | 
| 
      
 35 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 36 
     | 
    
         
            +
            - lib/raf.rb
         
     | 
| 
      
 37 
     | 
    
         
            +
            - lib/raf/version.rb
         
     | 
| 
      
 38 
     | 
    
         
            +
            - lib/source/DBUniversity.rb
         
     | 
| 
      
 39 
     | 
    
         
            +
            - lib/source/Students_list_DB.rb
         
     | 
| 
      
 40 
     | 
    
         
            +
            - lib/source/controller.rb
         
     | 
| 
      
 41 
     | 
    
         
            +
            - lib/source/data/data_list.rb
         
     | 
| 
      
 42 
     | 
    
         
            +
            - lib/source/data/data_list_student_short.rb
         
     | 
| 
      
 43 
     | 
    
         
            +
            - lib/source/data/data_table.rb
         
     | 
| 
      
 44 
     | 
    
         
            +
            - lib/source/logger_holder.rb
         
     | 
| 
      
 45 
     | 
    
         
            +
            - lib/source/logicFromWindow.rb
         
     | 
| 
      
 46 
     | 
    
         
            +
            - lib/source/strategy/student_list_base.rb
         
     | 
| 
      
 47 
     | 
    
         
            +
            - lib/source/strategy/student_list_strategy.rb
         
     | 
| 
      
 48 
     | 
    
         
            +
            - lib/source/strategy/students_list_json.rb
         
     | 
| 
      
 49 
     | 
    
         
            +
            - lib/source/strategy/students_list_txt.rb
         
     | 
| 
      
 50 
     | 
    
         
            +
            - lib/source/strategy/students_list_yaml.rb
         
     | 
| 
      
 51 
     | 
    
         
            +
            - lib/source/student/student.rb
         
     | 
| 
      
 52 
     | 
    
         
            +
            - lib/source/student/student_short.rb
         
     | 
| 
      
 53 
     | 
    
         
            +
            - lib/source/studentFileAdapter.rb
         
     | 
| 
      
 54 
     | 
    
         
            +
            - lib/source/studentList.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
            - lib/source/student_contact_form_controller.rb
         
     | 
| 
      
 56 
     | 
    
         
            +
            - lib/source/student_create_form.rb
         
     | 
| 
      
 57 
     | 
    
         
            +
            - lib/source/student_create_form_controller.rb
         
     | 
| 
      
 58 
     | 
    
         
            +
            - lib/source/student_edit_form_controller.rb
         
     | 
| 
      
 59 
     | 
    
         
            +
            - lib/source/student_git_form_controller.rb
         
     | 
| 
      
 60 
     | 
    
         
            +
            - rafmycat.gemspec
         
     | 
| 
      
 61 
     | 
    
         
            +
            - sig/ribbish_code.rbs
         
     | 
| 
      
 62 
     | 
    
         
            +
            homepage: https://github.com/yellowcat-dotcom
         
     | 
| 
      
 63 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 64 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 65 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 66 
     | 
    
         
            +
            post_install_message:
         
     | 
| 
      
 67 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 68 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 69 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 70 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 71 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 72 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 73 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 74 
     | 
    
         
            +
                  version: 3.2.0
         
     | 
| 
      
 75 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 76 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 77 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 78 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 79 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 80 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 81 
     | 
    
         
            +
            rubygems_version: 3.4.10
         
     | 
| 
      
 82 
     | 
    
         
            +
            signing_key:
         
     | 
| 
      
 83 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 84 
     | 
    
         
            +
            summary: Student App
         
     | 
| 
      
 85 
     | 
    
         
            +
            test_files: []
         
     |