extlib 0.9.2
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.
Potentially problematic release.
This version of extlib might be problematic. Click here for more details.
- data/README +0 -0
- data/lib/extlib.rb +19 -0
- data/lib/extlib/assertions.rb +8 -0
- data/lib/extlib/blank.rb +42 -0
- data/lib/extlib/hook.rb +313 -0
- data/lib/extlib/inflection.rb +141 -0
- data/lib/extlib/lazy_array.rb +104 -0
- data/lib/extlib/module.rb +19 -0
- data/lib/extlib/object.rb +7 -0
- data/lib/extlib/pathname.rb +5 -0
- data/lib/extlib/pooling.rb +227 -0
- data/lib/extlib/string.rb +45 -0
- data/lib/extlib/struct.rb +8 -0
- data/spec/blank_spec.rb +85 -0
- data/spec/hook_spec.rb +897 -0
- data/spec/inflection_spec.rb +50 -0
- data/spec/lazy_array_spec.rb +882 -0
- data/spec/module_spec.rb +36 -0
- data/spec/object_spec.rb +4 -0
- data/spec/pooling_spec.rb +490 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/string_spec.rb +4 -0
- data/spec/struct_spec.rb +12 -0
- metadata +92 -0
    
        data/spec/spec_helper.rb
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            require File.join(File.dirname(__FILE__), '..', 'lib', 'extlib')
         | 
    
        data/spec/string_spec.rb
    ADDED
    
    
    
        data/spec/struct_spec.rb
    ADDED
    
    
    
        metadata
    ADDED
    
    | @@ -0,0 +1,92 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification 
         | 
| 2 | 
            +
            name: extlib
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            +
              version: 0.9.2
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors: 
         | 
| 7 | 
            +
            - Sam Smoot
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            date: 2008-06-25 00:00:00 -05:00
         | 
| 13 | 
            +
            default_executable: 
         | 
| 14 | 
            +
            dependencies: 
         | 
| 15 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 16 | 
            +
              name: english
         | 
| 17 | 
            +
              version_requirement: 
         | 
| 18 | 
            +
              version_requirements: !ruby/object:Gem::Requirement 
         | 
| 19 | 
            +
                requirements: 
         | 
| 20 | 
            +
                - - ">="
         | 
| 21 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 22 | 
            +
                    version: 0.2.0
         | 
| 23 | 
            +
                version: 
         | 
| 24 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 25 | 
            +
              name: rspec
         | 
| 26 | 
            +
              version_requirement: 
         | 
| 27 | 
            +
              version_requirements: !ruby/object:Gem::Requirement 
         | 
| 28 | 
            +
                requirements: 
         | 
| 29 | 
            +
                - - ">="
         | 
| 30 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 31 | 
            +
                    version: 1.1.3
         | 
| 32 | 
            +
                version: 
         | 
| 33 | 
            +
            description: Conveniences
         | 
| 34 | 
            +
            email: ssmoot@gmail.com
         | 
| 35 | 
            +
            executables: []
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            extensions: []
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            extra_rdoc_files: []
         | 
| 40 | 
            +
             | 
| 41 | 
            +
            files: 
         | 
| 42 | 
            +
            - README
         | 
| 43 | 
            +
            - lib/extlib/assertions.rb
         | 
| 44 | 
            +
            - lib/extlib/blank.rb
         | 
| 45 | 
            +
            - lib/extlib/hook.rb
         | 
| 46 | 
            +
            - lib/extlib/inflection.rb
         | 
| 47 | 
            +
            - lib/extlib/lazy_array.rb
         | 
| 48 | 
            +
            - lib/extlib/module.rb
         | 
| 49 | 
            +
            - lib/extlib/object.rb
         | 
| 50 | 
            +
            - lib/extlib/pathname.rb
         | 
| 51 | 
            +
            - lib/extlib/pooling.rb
         | 
| 52 | 
            +
            - lib/extlib/string.rb
         | 
| 53 | 
            +
            - lib/extlib/struct.rb
         | 
| 54 | 
            +
            - lib/extlib.rb
         | 
| 55 | 
            +
            - spec/blank_spec.rb
         | 
| 56 | 
            +
            - spec/hook_spec.rb
         | 
| 57 | 
            +
            - spec/inflection_spec.rb
         | 
| 58 | 
            +
            - spec/lazy_array_spec.rb
         | 
| 59 | 
            +
            - spec/module_spec.rb
         | 
| 60 | 
            +
            - spec/object_spec.rb
         | 
| 61 | 
            +
            - spec/pooling_spec.rb
         | 
| 62 | 
            +
            - spec/spec_helper.rb
         | 
| 63 | 
            +
            - spec/string_spec.rb
         | 
| 64 | 
            +
            - spec/struct_spec.rb
         | 
| 65 | 
            +
            has_rdoc: false
         | 
| 66 | 
            +
            homepage: http://extlib.rubyforge.org
         | 
| 67 | 
            +
            post_install_message: 
         | 
| 68 | 
            +
            rdoc_options: []
         | 
| 69 | 
            +
             | 
| 70 | 
            +
            require_paths: 
         | 
| 71 | 
            +
            - lib
         | 
| 72 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         | 
| 73 | 
            +
              requirements: 
         | 
| 74 | 
            +
              - - ">="
         | 
| 75 | 
            +
                - !ruby/object:Gem::Version 
         | 
| 76 | 
            +
                  version: "0"
         | 
| 77 | 
            +
              version: 
         | 
| 78 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         | 
| 79 | 
            +
              requirements: 
         | 
| 80 | 
            +
              - - ">="
         | 
| 81 | 
            +
                - !ruby/object:Gem::Version 
         | 
| 82 | 
            +
                  version: "0"
         | 
| 83 | 
            +
              version: 
         | 
| 84 | 
            +
            requirements: 
         | 
| 85 | 
            +
            - none
         | 
| 86 | 
            +
            rubyforge_project: extlib
         | 
| 87 | 
            +
            rubygems_version: 1.0.1
         | 
| 88 | 
            +
            signing_key: 
         | 
| 89 | 
            +
            specification_version: 2
         | 
| 90 | 
            +
            summary: Support Library
         | 
| 91 | 
            +
            test_files: []
         | 
| 92 | 
            +
             |