matchi-fix 0.1.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
 - checksums.yaml.gz.sig +0 -0
 - data/.gitignore +11 -0
 - data/.travis.yml +15 -0
 - data/.yardopts +1 -0
 - data/CODE_OF_CONDUCT.md +13 -0
 - data/Gemfile +3 -0
 - data/LICENSE.md +21 -0
 - data/README.md +72 -0
 - data/Rakefile +20 -0
 - data/VERSION.semver +1 -0
 - data/bin/console +7 -0
 - data/bin/setup +5 -0
 - data/certs/gem-fixrb-public_cert.pem +21 -0
 - data/lib/matchi/fix.rb +37 -0
 - data/matchi-fix.gemspec +30 -0
 - data/pkg_checksum +11 -0
 - data.tar.gz.sig +0 -0
 - metadata +194 -0
 - metadata.gz.sig +0 -0
 
    
        checksums.yaml
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            SHA1:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 198e0688691b92f0b8b247a3aec1ba3d6f5672af
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 1837b139c2ec6e289d625d06d8d007c8d56b6cc4
         
     | 
| 
      
 5 
     | 
    
         
            +
            SHA512:
         
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: b3f9aa411204fc9ecda75c45362bfab5df677aa7086cc97e4732b08ce613ba01a233c06829d1ca8505f227d70804df545d722b427f9672c7da4bc26b5c086f9d
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: bbbf2b9a57b51d8ce9b11b64738a62cdf7eb2355a33e6ce58a43d10555386ef78136ac81bdef4f32533447d087f2e8d92148af2f245b422c1c5cc0909c3989c9
         
     | 
    
        checksums.yaml.gz.sig
    ADDED
    
    | 
         Binary file 
     | 
    
        data/.gitignore
    ADDED
    
    
    
        data/.travis.yml
    ADDED
    
    
    
        data/.yardopts
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            - README.md
         
     | 
    
        data/CODE_OF_CONDUCT.md
    ADDED
    
    | 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Contributor Code of Conduct
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
         
     | 
    
        data/Gemfile
    ADDED
    
    
    
        data/LICENSE.md
    ADDED
    
    | 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            The MIT License (MIT)
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Copyright (c) 2015 Cyril Wack
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
      
 6 
     | 
    
         
            +
            of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
      
 7 
     | 
    
         
            +
            in the Software without restriction, including without limitation the rights
         
     | 
| 
      
 8 
     | 
    
         
            +
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
      
 9 
     | 
    
         
            +
            copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
      
 10 
     | 
    
         
            +
            furnished to do so, subject to the following conditions:
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be included in
         
     | 
| 
      
 13 
     | 
    
         
            +
            all copies or substantial portions of the Software.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
      
 16 
     | 
    
         
            +
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
      
 17 
     | 
    
         
            +
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
      
 18 
     | 
    
         
            +
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
      
 19 
     | 
    
         
            +
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
      
 20 
     | 
    
         
            +
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         
     | 
| 
      
 21 
     | 
    
         
            +
            THE SOFTWARE.
         
     | 
    
        data/README.md
    ADDED
    
    | 
         @@ -0,0 +1,72 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Expect
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            [][travis]
         
     | 
| 
      
 4 
     | 
    
         
            +
            [][gem]
         
     | 
| 
      
 5 
     | 
    
         
            +
            [][inchpages]
         
     | 
| 
      
 6 
     | 
    
         
            +
            [][rubydoc]
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            > A [Fix](https://github.com/fixrb/fix) expectation matcher for [Matchi](https://github.com/fixrb/matchi).
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            ## Contact
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            * Home page: https://github.com/fixrb/matchi-fix
         
     | 
| 
      
 13 
     | 
    
         
            +
            * Bugs/issues: https://github.com/fixrb/matchi-fix/issues
         
     | 
| 
      
 14 
     | 
    
         
            +
            * Support: https://stackoverflow.com/questions/tagged/fixrb
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            ## Rubies
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            * [MRI](https://www.ruby-lang.org/)
         
     | 
| 
      
 19 
     | 
    
         
            +
            * [Rubinius](http://rubini.us/)
         
     | 
| 
      
 20 
     | 
    
         
            +
            * [JRuby](http://jruby.org/)
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            ## Installation
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            __Matchi::Fix__ is cryptographically signed.
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            To be sure the gem you install hasn't been tampered with, add my public key (if you haven't already) as a trusted certificate:
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                $ gem cert --add <(curl -Ls https://raw.github.com/fixrb/matchi-fix/master/certs/gem-fixrb-public_cert.pem)
         
     | 
| 
      
 29 
     | 
    
         
            +
                $ gem install matchi-fix -P HighSecurity
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            The `HighSecurity` trust profile will verify all gems.  All of __Matchi::Fix__'s dependencies are signed.
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            ## Usage
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            ```ruby
         
     | 
| 
      
 36 
     | 
    
         
            +
            fix = Matchi.fetch(:Fix, proc { it { MUST Equal: 42 } })
         
     | 
| 
      
 37 
     | 
    
         
            +
            fix.matches? { 6 * 7 } # => true
         
     | 
| 
      
 38 
     | 
    
         
            +
            ```
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            ## Security
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            As a basic form of security __Matchi::Fix__ provides a set of SHA512 checksums for
         
     | 
| 
      
 43 
     | 
    
         
            +
            every Gem release.  These checksums can be found in the `checksum/` directory.
         
     | 
| 
      
 44 
     | 
    
         
            +
            Although these checksums do not prevent malicious users from tampering with a
         
     | 
| 
      
 45 
     | 
    
         
            +
            built Gem they can be used for basic integrity verification purposes.
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            The checksum of a file can be checked using the `sha512sum` command.  For
         
     | 
| 
      
 48 
     | 
    
         
            +
            example:
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
                $ sha512sum pkg/matchi-fix-0.0.1.gem
         
     | 
| 
      
 51 
     | 
    
         
            +
                8c72ec1d93577cf57eaaea04d66287f18673f39cb886452cf7044195c03a77d03a5226a6b033cc6a0992721c7aefcb64c6daca463e7e0b5059901886dfc3cfb2  pkg/matchi-fix-0.0.1.gem
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            ## Versioning
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            __Matchi::Fix__ follows [Semantic Versioning 2.0](http://semver.org/).
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            ## Contributing
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            1. [Fork it](https://github.com/fixrb/matchi-fix/fork)
         
     | 
| 
      
 60 
     | 
    
         
            +
            2. Create your feature branch (`git checkout -b my-new-feature`)
         
     | 
| 
      
 61 
     | 
    
         
            +
            3. Commit your changes (`git commit -am 'Add some feature'`)
         
     | 
| 
      
 62 
     | 
    
         
            +
            4. Push to the branch (`git push origin my-new-feature`)
         
     | 
| 
      
 63 
     | 
    
         
            +
            5. Create a new Pull Request
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
            ## License
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
            See `LICENSE.md` file.
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            [gem]: https://rubygems.org/gems/matchi-fix
         
     | 
| 
      
 70 
     | 
    
         
            +
            [travis]: https://travis-ci.org/fixrb/matchi-fix
         
     | 
| 
      
 71 
     | 
    
         
            +
            [inchpages]: http://inch-ci.org/github/fixrb/matchi-fix/
         
     | 
| 
      
 72 
     | 
    
         
            +
            [rubydoc]: http://rubydoc.info/gems/matchi-fix/frames
         
     | 
    
        data/Rakefile
    ADDED
    
    | 
         @@ -0,0 +1,20 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'bundler/gem_tasks'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'rake/testtask'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'rubocop/rake_task'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            RuboCop::RakeTask.new
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            Rake::TestTask.new do |t|
         
     | 
| 
      
 8 
     | 
    
         
            +
              t.verbose = true
         
     | 
| 
      
 9 
     | 
    
         
            +
              t.warning = true
         
     | 
| 
      
 10 
     | 
    
         
            +
            end
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            namespace :test do
         
     | 
| 
      
 13 
     | 
    
         
            +
              task :coverage do
         
     | 
| 
      
 14 
     | 
    
         
            +
                ENV['COVERAGE'] = 'true'
         
     | 
| 
      
 15 
     | 
    
         
            +
                Rake::Task['test'].invoke
         
     | 
| 
      
 16 
     | 
    
         
            +
              end
         
     | 
| 
      
 17 
     | 
    
         
            +
            end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            task(:doc_stats) { ruby '-S yard stats' }
         
     | 
| 
      
 20 
     | 
    
         
            +
            task default: [:test, :doc_stats, :rubocop]
         
     | 
    
        data/VERSION.semver
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            0.1.0
         
     | 
    
        data/bin/console
    ADDED
    
    
    
        data/bin/setup
    ADDED
    
    
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            -----BEGIN CERTIFICATE-----
         
     | 
| 
      
 2 
     | 
    
         
            +
            MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
         
     | 
| 
      
 3 
     | 
    
         
            +
            YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
         
     | 
| 
      
 4 
     | 
    
         
            +
            bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
         
     | 
| 
      
 5 
     | 
    
         
            +
            bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
         
     | 
| 
      
 6 
     | 
    
         
            +
            YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
         
     | 
| 
      
 7 
     | 
    
         
            +
            NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
         
     | 
| 
      
 8 
     | 
    
         
            +
            O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
         
     | 
| 
      
 9 
     | 
    
         
            +
            4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
         
     | 
| 
      
 10 
     | 
    
         
            +
            nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
         
     | 
| 
      
 11 
     | 
    
         
            +
            weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
         
     | 
| 
      
 12 
     | 
    
         
            +
            7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
         
     | 
| 
      
 13 
     | 
    
         
            +
            LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
         
     | 
| 
      
 14 
     | 
    
         
            +
            bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
         
     | 
| 
      
 15 
     | 
    
         
            +
            BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
         
     | 
| 
      
 16 
     | 
    
         
            +
            caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
         
     | 
| 
      
 17 
     | 
    
         
            +
            P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
         
     | 
| 
      
 18 
     | 
    
         
            +
            JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
         
     | 
| 
      
 19 
     | 
    
         
            +
            dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
         
     | 
| 
      
 20 
     | 
    
         
            +
            0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
         
     | 
| 
      
 21 
     | 
    
         
            +
            -----END CERTIFICATE-----
         
     | 
    
        data/lib/matchi/fix.rb
    ADDED
    
    | 
         @@ -0,0 +1,37 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'matchi'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'fix'
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            # Namespace for the Matchi library.
         
     | 
| 
      
 5 
     | 
    
         
            +
            #
         
     | 
| 
      
 6 
     | 
    
         
            +
            # @api public
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            module Matchi
         
     | 
| 
      
 9 
     | 
    
         
            +
              # Initialize the matcher with a spec compatible with Fix DSL.
         
     | 
| 
      
 10 
     | 
    
         
            +
              #
         
     | 
| 
      
 11 
     | 
    
         
            +
              # @api public
         
     | 
| 
      
 12 
     | 
    
         
            +
              #
         
     | 
| 
      
 13 
     | 
    
         
            +
              class Fix
         
     | 
| 
      
 14 
     | 
    
         
            +
                # Initialize the matcher.
         
     | 
| 
      
 15 
     | 
    
         
            +
                #
         
     | 
| 
      
 16 
     | 
    
         
            +
                # @api private
         
     | 
| 
      
 17 
     | 
    
         
            +
                #
         
     | 
| 
      
 18 
     | 
    
         
            +
                def initialize(expected)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  @expected = expected
         
     | 
| 
      
 20 
     | 
    
         
            +
                end
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
                # @example Is it equal to 42?
         
     | 
| 
      
 23 
     | 
    
         
            +
                #   fix = Matchi::Fix.new(proc { it { MUST Equal: 42 } })
         
     | 
| 
      
 24 
     | 
    
         
            +
                #   fix.matches? { 6 * 7 } # => true
         
     | 
| 
      
 25 
     | 
    
         
            +
                #
         
     | 
| 
      
 26 
     | 
    
         
            +
                # @api public
         
     | 
| 
      
 27 
     | 
    
         
            +
                #
         
     | 
| 
      
 28 
     | 
    
         
            +
                # @yieldreturn [#object_id] The front object to compare against the spec.
         
     | 
| 
      
 29 
     | 
    
         
            +
                #
         
     | 
| 
      
 30 
     | 
    
         
            +
                # @return [Boolean] The result of the test which can be _pass_ or _fail_.
         
     | 
| 
      
 31 
     | 
    
         
            +
                def matches?
         
     | 
| 
      
 32 
     | 
    
         
            +
                  ::Fix.describe(yield, &@expected)
         
     | 
| 
      
 33 
     | 
    
         
            +
                rescue SystemExit => e
         
     | 
| 
      
 34 
     | 
    
         
            +
                  e.success?
         
     | 
| 
      
 35 
     | 
    
         
            +
                end
         
     | 
| 
      
 36 
     | 
    
         
            +
              end
         
     | 
| 
      
 37 
     | 
    
         
            +
            end
         
     | 
    
        data/matchi-fix.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Gem::Specification.new do |spec|
         
     | 
| 
      
 2 
     | 
    
         
            +
              spec.name          = 'matchi-fix'
         
     | 
| 
      
 3 
     | 
    
         
            +
              spec.version       = File.read('VERSION.semver').chomp
         
     | 
| 
      
 4 
     | 
    
         
            +
              spec.authors       = ['Cyril Wack']
         
     | 
| 
      
 5 
     | 
    
         
            +
              spec.email         = ['contact@cyril.email']
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              spec.summary       = 'Fix expectation matcher.'
         
     | 
| 
      
 8 
     | 
    
         
            +
              spec.description   = 'A Fix expectation matcher for Matchi.'
         
     | 
| 
      
 9 
     | 
    
         
            +
              spec.homepage      = 'https://github.com/fixrb/matchi-fix'
         
     | 
| 
      
 10 
     | 
    
         
            +
              spec.license       = 'MIT'
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
              spec.files         =
         
     | 
| 
      
 13 
     | 
    
         
            +
                `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
         
     | 
| 
      
 14 
     | 
    
         
            +
              spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
         
     | 
| 
      
 15 
     | 
    
         
            +
              spec.require_paths = ['lib']
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
              spec.add_dependency 'matchi',                 '~> 0.0.9'
         
     | 
| 
      
 18 
     | 
    
         
            +
              spec.add_dependency 'fix',                    '~> 0.7.0'
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
              spec.add_development_dependency 'rubygems-tasks', '~> 0.2.4'
         
     | 
| 
      
 21 
     | 
    
         
            +
              spec.add_development_dependency 'bundler',    '~> 1.10'
         
     | 
| 
      
 22 
     | 
    
         
            +
              spec.add_development_dependency 'rake',       '~> 10.4'
         
     | 
| 
      
 23 
     | 
    
         
            +
              spec.add_development_dependency 'yard',       '~> 0.8'
         
     | 
| 
      
 24 
     | 
    
         
            +
              spec.add_development_dependency 'simplecov',  '~> 0.10'
         
     | 
| 
      
 25 
     | 
    
         
            +
              spec.add_development_dependency 'rubocop',    '~> 0.32'
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
              spec.cert_chain   = ['certs/gem-fixrb-public_cert.pem']
         
     | 
| 
      
 28 
     | 
    
         
            +
              private_key       = File.expand_path('~/.ssh/gem-fixrb-private_key.pem')
         
     | 
| 
      
 29 
     | 
    
         
            +
              spec.signing_key  = private_key if File.exist?(private_key)
         
     | 
| 
      
 30 
     | 
    
         
            +
            end
         
     | 
    
        data/pkg_checksum
    ADDED
    
    | 
         @@ -0,0 +1,11 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #!/usr/bin/env ruby
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            require 'digest/sha2'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            gemname         = 'matchi-fix'.to_sym
         
     | 
| 
      
 6 
     | 
    
         
            +
            ARGV[0]         = File.read('VERSION.semver').chomp if ARGV[0].nil?
         
     | 
| 
      
 7 
     | 
    
         
            +
            built_gem_path  = "pkg/#{gemname}-#{ARGV[0]}.gem"
         
     | 
| 
      
 8 
     | 
    
         
            +
            checksum        = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
         
     | 
| 
      
 9 
     | 
    
         
            +
            checksum_path   = "checksum/#{gemname}-#{ARGV[0]}.gem.sha512"
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            File.open(checksum_path, 'w') { |f| f.write("#{checksum}\n") }
         
     | 
    
        data.tar.gz.sig
    ADDED
    
    | 
         Binary file 
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,194 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: matchi-fix
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Cyril Wack
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain:
         
     | 
| 
      
 11 
     | 
    
         
            +
            - |
         
     | 
| 
      
 12 
     | 
    
         
            +
              -----BEGIN CERTIFICATE-----
         
     | 
| 
      
 13 
     | 
    
         
            +
              MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
         
     | 
| 
      
 14 
     | 
    
         
            +
              YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
         
     | 
| 
      
 15 
     | 
    
         
            +
              bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
         
     | 
| 
      
 16 
     | 
    
         
            +
              bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
         
     | 
| 
      
 17 
     | 
    
         
            +
              YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
         
     | 
| 
      
 18 
     | 
    
         
            +
              NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
         
     | 
| 
      
 19 
     | 
    
         
            +
              O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
         
     | 
| 
      
 20 
     | 
    
         
            +
              4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
         
     | 
| 
      
 21 
     | 
    
         
            +
              nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
         
     | 
| 
      
 22 
     | 
    
         
            +
              weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
         
     | 
| 
      
 23 
     | 
    
         
            +
              7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
         
     | 
| 
      
 24 
     | 
    
         
            +
              LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
         
     | 
| 
      
 25 
     | 
    
         
            +
              bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
         
     | 
| 
      
 26 
     | 
    
         
            +
              BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
         
     | 
| 
      
 27 
     | 
    
         
            +
              caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
         
     | 
| 
      
 28 
     | 
    
         
            +
              P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
         
     | 
| 
      
 29 
     | 
    
         
            +
              JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
         
     | 
| 
      
 30 
     | 
    
         
            +
              dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
         
     | 
| 
      
 31 
     | 
    
         
            +
              0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
         
     | 
| 
      
 32 
     | 
    
         
            +
              -----END CERTIFICATE-----
         
     | 
| 
      
 33 
     | 
    
         
            +
            date: 2015-09-07 00:00:00.000000000 Z
         
     | 
| 
      
 34 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 35 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 36 
     | 
    
         
            +
              name: matchi
         
     | 
| 
      
 37 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 38 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 39 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 41 
     | 
    
         
            +
                    version: 0.0.9
         
     | 
| 
      
 42 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 43 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 44 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 45 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 46 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 47 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 48 
     | 
    
         
            +
                    version: 0.0.9
         
     | 
| 
      
 49 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 50 
     | 
    
         
            +
              name: fix
         
     | 
| 
      
 51 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 52 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 53 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 54 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 55 
     | 
    
         
            +
                    version: 0.7.0
         
     | 
| 
      
 56 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 57 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 58 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 59 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 60 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 62 
     | 
    
         
            +
                    version: 0.7.0
         
     | 
| 
      
 63 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 64 
     | 
    
         
            +
              name: rubygems-tasks
         
     | 
| 
      
 65 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 66 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 67 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 68 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 69 
     | 
    
         
            +
                    version: 0.2.4
         
     | 
| 
      
 70 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 71 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 72 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 73 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 74 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 75 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 76 
     | 
    
         
            +
                    version: 0.2.4
         
     | 
| 
      
 77 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 78 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 79 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 80 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 81 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 82 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 83 
     | 
    
         
            +
                    version: '1.10'
         
     | 
| 
      
 84 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 85 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 86 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 87 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 88 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 89 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 90 
     | 
    
         
            +
                    version: '1.10'
         
     | 
| 
      
 91 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 92 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 93 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 94 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 95 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 96 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 97 
     | 
    
         
            +
                    version: '10.4'
         
     | 
| 
      
 98 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 99 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 100 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 101 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 102 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 103 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 104 
     | 
    
         
            +
                    version: '10.4'
         
     | 
| 
      
 105 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 106 
     | 
    
         
            +
              name: yard
         
     | 
| 
      
 107 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 108 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 109 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 110 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 111 
     | 
    
         
            +
                    version: '0.8'
         
     | 
| 
      
 112 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 113 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 114 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 115 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 116 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 117 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 118 
     | 
    
         
            +
                    version: '0.8'
         
     | 
| 
      
 119 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 120 
     | 
    
         
            +
              name: simplecov
         
     | 
| 
      
 121 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 122 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 123 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 124 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 125 
     | 
    
         
            +
                    version: '0.10'
         
     | 
| 
      
 126 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 127 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 128 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 129 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 130 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 131 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 132 
     | 
    
         
            +
                    version: '0.10'
         
     | 
| 
      
 133 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 134 
     | 
    
         
            +
              name: rubocop
         
     | 
| 
      
 135 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 136 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 137 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 138 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 139 
     | 
    
         
            +
                    version: '0.32'
         
     | 
| 
      
 140 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 141 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 142 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 143 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 144 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 145 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 146 
     | 
    
         
            +
                    version: '0.32'
         
     | 
| 
      
 147 
     | 
    
         
            +
            description: A Fix expectation matcher for Matchi.
         
     | 
| 
      
 148 
     | 
    
         
            +
            email:
         
     | 
| 
      
 149 
     | 
    
         
            +
            - contact@cyril.email
         
     | 
| 
      
 150 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 151 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 152 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 153 
     | 
    
         
            +
            files:
         
     | 
| 
      
 154 
     | 
    
         
            +
            - ".gitignore"
         
     | 
| 
      
 155 
     | 
    
         
            +
            - ".travis.yml"
         
     | 
| 
      
 156 
     | 
    
         
            +
            - ".yardopts"
         
     | 
| 
      
 157 
     | 
    
         
            +
            - CODE_OF_CONDUCT.md
         
     | 
| 
      
 158 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 159 
     | 
    
         
            +
            - LICENSE.md
         
     | 
| 
      
 160 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 161 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 162 
     | 
    
         
            +
            - VERSION.semver
         
     | 
| 
      
 163 
     | 
    
         
            +
            - bin/console
         
     | 
| 
      
 164 
     | 
    
         
            +
            - bin/setup
         
     | 
| 
      
 165 
     | 
    
         
            +
            - certs/gem-fixrb-public_cert.pem
         
     | 
| 
      
 166 
     | 
    
         
            +
            - lib/matchi/fix.rb
         
     | 
| 
      
 167 
     | 
    
         
            +
            - matchi-fix.gemspec
         
     | 
| 
      
 168 
     | 
    
         
            +
            - pkg_checksum
         
     | 
| 
      
 169 
     | 
    
         
            +
            homepage: https://github.com/fixrb/matchi-fix
         
     | 
| 
      
 170 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 171 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 172 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 173 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 174 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 175 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 176 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 177 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 178 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 179 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 180 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 181 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 182 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 183 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 184 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 185 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 186 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 187 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 188 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 189 
     | 
    
         
            +
            rubygems_version: 2.4.5.1
         
     | 
| 
      
 190 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 191 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 192 
     | 
    
         
            +
            summary: Fix expectation matcher.
         
     | 
| 
      
 193 
     | 
    
         
            +
            test_files: []
         
     | 
| 
      
 194 
     | 
    
         
            +
            has_rdoc: 
         
     | 
    
        metadata.gz.sig
    ADDED
    
    | 
         Binary file 
     |