regis 0.0.5 → 0.0.6
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 +8 -8
- data/lib/regis/responses/models/instructor.rb +19 -0
- data/lib/regis/version.rb +1 -1
- metadata +2 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,15 +1,15 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            !binary "U0hBMQ==":
         | 
| 3 3 | 
             
              metadata.gz: !binary |-
         | 
| 4 | 
            -
                 | 
| 4 | 
            +
                ZDE1ZDFmYzA4YmRkN2I0NmY0Mzg3YTg2ZGI5NTI0OThhYmYxMjI4ZA==
         | 
| 5 5 | 
             
              data.tar.gz: !binary |-
         | 
| 6 | 
            -
                 | 
| 6 | 
            +
                YmU5OWYyZmQ5Mjk4ZGRhNzVkNDgwZTNlMDczNzdjMTA3ZmExY2I5Nw==
         | 
| 7 7 | 
             
            SHA512:
         | 
| 8 8 | 
             
              metadata.gz: !binary |-
         | 
| 9 | 
            -
                 | 
| 10 | 
            -
                 | 
| 11 | 
            -
                 | 
| 9 | 
            +
                Y2Y2YmZmNGM1ZjdlYTFmNDAwN2I2YWVlZmVjMDE5Y2Y1Zjg5NWZlZTcwN2Yx
         | 
| 10 | 
            +
                ZDE3YjJiYjYxMTM2NjE2ODg4ZGI4ZTdmM2MyMDlmMjQzNmJiODc1NWM5N2M0
         | 
| 11 | 
            +
                OWE1YWQ4Y2I0YWUxMTkyYTgzZTVkNWJiNGIwMzdhMTRiYTA5ODk=
         | 
| 12 12 | 
             
              data.tar.gz: !binary |-
         | 
| 13 | 
            -
                 | 
| 14 | 
            -
                 | 
| 15 | 
            -
                 | 
| 13 | 
            +
                NzlkNDA2ZTg4YWY0NmVlZjhmYmZhMzA3NTQxM2IwNmM5MzYyYzQ0MmViN2Yx
         | 
| 14 | 
            +
                M2YwZWY0NWMzNDg3NjAxMTg4YzNlODMyZWRhZGQ5MjI2Y2ZmMjhhY2U2MDM2
         | 
| 15 | 
            +
                MmQwNzZiZTM3Yjk5MDJiMzk5ZWRjMmMwOGJiMmU0ZThmMDgyYmY=
         | 
| @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            require 'regis/responses/base'
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Regis
         | 
| 4 | 
            +
                module Response
         | 
| 5 | 
            +
                    module Model
         | 
| 6 | 
            +
                        class Instructor < Response::Base
         | 
| 7 | 
            +
                            attr_reader :regent_id
         | 
| 8 | 
            +
                            attr_reader :first_name
         | 
| 9 | 
            +
                            attr_reader :last_name
         | 
| 10 | 
            +
                            attr_reader :full_name
         | 
| 11 | 
            +
                            attr_reader :image_base64          
         | 
| 12 | 
            +
                                            
         | 
| 13 | 
            +
                            def initialize(json)
         | 
| 14 | 
            +
                                super(json)
         | 
| 15 | 
            +
                            end
         | 
| 16 | 
            +
                        end
         | 
| 17 | 
            +
                    end
         | 
| 18 | 
            +
                end
         | 
| 19 | 
            +
            end
         | 
    
        data/lib/regis/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: regis
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.0. | 
| 4 | 
            +
              version: 0.0.6
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Cameron Tucker
         | 
| @@ -154,6 +154,7 @@ files: | |
| 154 154 | 
             
            - lib/regis/endpoint/section.rb
         | 
| 155 155 | 
             
            - lib/regis/endpoint/sections.rb
         | 
| 156 156 | 
             
            - lib/regis/responses/base.rb
         | 
| 157 | 
            +
            - lib/regis/responses/models/instructor.rb
         | 
| 157 158 | 
             
            - lib/regis/responses/models/section.rb
         | 
| 158 159 | 
             
            - lib/regis/responses/section.rb
         | 
| 159 160 | 
             
            - lib/regis/responses/sections.rb
         |