rcee_packaged_source 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
- data/.gitignore +13 -0
- data/Gemfile +12 -0
- data/README.md +2 -0
- data/Rakefile +26 -0
- data/ext/packaged_source/extconf.rb +10 -0
- data/ext/packaged_source/packaged_source.c +25 -0
- data/ext/packaged_source/packaged_source.h +8 -0
- data/ext/packaged_source/yaml/LICENSE +19 -0
- data/ext/packaged_source/yaml/api.c +1393 -0
- data/ext/packaged_source/yaml/config.h +80 -0
- data/ext/packaged_source/yaml/dumper.c +394 -0
- data/ext/packaged_source/yaml/emitter.c +2358 -0
- data/ext/packaged_source/yaml/loader.c +544 -0
- data/ext/packaged_source/yaml/parser.c +1375 -0
- data/ext/packaged_source/yaml/reader.c +469 -0
- data/ext/packaged_source/yaml/scanner.c +3598 -0
- data/ext/packaged_source/yaml/writer.c +141 -0
- data/ext/packaged_source/yaml/yaml.h +1985 -0
- data/ext/packaged_source/yaml/yaml_private.h +688 -0
- data/lib/rcee/packaged_source/version.rb +7 -0
- data/lib/rcee/packaged_source.rb +11 -0
- data/rcee_packaged_source.gemspec +29 -0
- metadata +66 -0
| @@ -0,0 +1,29 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative "lib/rcee/packaged_source/version"
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Gem::Specification.new do |spec|
         | 
| 6 | 
            +
              spec.name          = "rcee_packaged_source"
         | 
| 7 | 
            +
              spec.version       = RCEE::PackagedSource::VERSION
         | 
| 8 | 
            +
              spec.authors       = ["Mike Dalessio"]
         | 
| 9 | 
            +
              spec.email         = ["mike.dalessio@gmail.com"]
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              spec.summary       = "Example gem demonstrating a basic C extension."
         | 
| 12 | 
            +
              spec.description   = "Part of a project to explain how Ruby C extensions work."
         | 
| 13 | 
            +
              spec.homepage      = "https://github.com/flavorjones/ruby-c-extensions-explained"
         | 
| 14 | 
            +
              spec.required_ruby_version = ">= 2.4.0"
         | 
| 15 | 
            +
              spec.license = "MIT"
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              # Specify which files should be added to the gem when it is released.
         | 
| 18 | 
            +
              # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
         | 
| 19 | 
            +
              spec.files = Dir.chdir(File.expand_path(__dir__)) do
         | 
| 20 | 
            +
                `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
              spec.bindir        = "exe"
         | 
| 23 | 
            +
              spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
         | 
| 24 | 
            +
              spec.require_paths = ["lib"]
         | 
| 25 | 
            +
              spec.extensions    = ["ext/packaged_source/extconf.rb"]
         | 
| 26 | 
            +
             | 
| 27 | 
            +
              # For more information and examples about making a new gem, checkout our
         | 
| 28 | 
            +
              # guide at: https://bundler.io/guides/creating_gem.html
         | 
| 29 | 
            +
            end
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,66 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: rcee_packaged_source
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.1.0
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - Mike Dalessio
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: exe
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2021-09-02 00:00:00.000000000 Z
         | 
| 12 | 
            +
            dependencies: []
         | 
| 13 | 
            +
            description: Part of a project to explain how Ruby C extensions work.
         | 
| 14 | 
            +
            email:
         | 
| 15 | 
            +
            - mike.dalessio@gmail.com
         | 
| 16 | 
            +
            executables: []
         | 
| 17 | 
            +
            extensions:
         | 
| 18 | 
            +
            - ext/packaged_source/extconf.rb
         | 
| 19 | 
            +
            extra_rdoc_files: []
         | 
| 20 | 
            +
            files:
         | 
| 21 | 
            +
            - ".gitignore"
         | 
| 22 | 
            +
            - Gemfile
         | 
| 23 | 
            +
            - README.md
         | 
| 24 | 
            +
            - Rakefile
         | 
| 25 | 
            +
            - ext/packaged_source/extconf.rb
         | 
| 26 | 
            +
            - ext/packaged_source/packaged_source.c
         | 
| 27 | 
            +
            - ext/packaged_source/packaged_source.h
         | 
| 28 | 
            +
            - ext/packaged_source/yaml/LICENSE
         | 
| 29 | 
            +
            - ext/packaged_source/yaml/api.c
         | 
| 30 | 
            +
            - ext/packaged_source/yaml/config.h
         | 
| 31 | 
            +
            - ext/packaged_source/yaml/dumper.c
         | 
| 32 | 
            +
            - ext/packaged_source/yaml/emitter.c
         | 
| 33 | 
            +
            - ext/packaged_source/yaml/loader.c
         | 
| 34 | 
            +
            - ext/packaged_source/yaml/parser.c
         | 
| 35 | 
            +
            - ext/packaged_source/yaml/reader.c
         | 
| 36 | 
            +
            - ext/packaged_source/yaml/scanner.c
         | 
| 37 | 
            +
            - ext/packaged_source/yaml/writer.c
         | 
| 38 | 
            +
            - ext/packaged_source/yaml/yaml.h
         | 
| 39 | 
            +
            - ext/packaged_source/yaml/yaml_private.h
         | 
| 40 | 
            +
            - lib/rcee/packaged_source.rb
         | 
| 41 | 
            +
            - lib/rcee/packaged_source/version.rb
         | 
| 42 | 
            +
            - rcee_packaged_source.gemspec
         | 
| 43 | 
            +
            homepage: https://github.com/flavorjones/ruby-c-extensions-explained
         | 
| 44 | 
            +
            licenses:
         | 
| 45 | 
            +
            - MIT
         | 
| 46 | 
            +
            metadata: {}
         | 
| 47 | 
            +
            post_install_message: 
         | 
| 48 | 
            +
            rdoc_options: []
         | 
| 49 | 
            +
            require_paths:
         | 
| 50 | 
            +
            - lib
         | 
| 51 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 52 | 
            +
              requirements:
         | 
| 53 | 
            +
              - - ">="
         | 
| 54 | 
            +
                - !ruby/object:Gem::Version
         | 
| 55 | 
            +
                  version: 2.4.0
         | 
| 56 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 57 | 
            +
              requirements:
         | 
| 58 | 
            +
              - - ">="
         | 
| 59 | 
            +
                - !ruby/object:Gem::Version
         | 
| 60 | 
            +
                  version: '0'
         | 
| 61 | 
            +
            requirements: []
         | 
| 62 | 
            +
            rubygems_version: 3.2.15
         | 
| 63 | 
            +
            signing_key: 
         | 
| 64 | 
            +
            specification_version: 4
         | 
| 65 | 
            +
            summary: Example gem demonstrating a basic C extension.
         | 
| 66 | 
            +
            test_files: []
         |