chipmunk 5.3.4.0-x86-mingw32
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.
- data/LICENSE +22 -0
 - data/README +70 -0
 - data/Rakefile +86 -0
 - data/ext/chipmunk/extconf.rb +42 -0
 - data/ext/chipmunk/rb_chipmunk.c +250 -0
 - data/ext/chipmunk/rb_chipmunk.h +105 -0
 - data/ext/chipmunk/rb_cpArbiter.c +253 -0
 - data/ext/chipmunk/rb_cpBB.c +210 -0
 - data/ext/chipmunk/rb_cpBody.c +504 -0
 - data/ext/chipmunk/rb_cpConstraint.c +336 -0
 - data/ext/chipmunk/rb_cpShape.c +450 -0
 - data/ext/chipmunk/rb_cpSpace.c +711 -0
 - data/ext/chipmunk/rb_cpVect.c +346 -0
 - data/lib/1.8/chipmunk.so +0 -0
 - data/lib/1.9/chipmunk.so +0 -0
 - data/lib/chipmunk.rb +183 -0
 - metadata +83 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,83 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification 
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: chipmunk
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version 
         
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 23
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
      
 6 
     | 
    
         
            +
              segments: 
         
     | 
| 
      
 7 
     | 
    
         
            +
              - 5
         
     | 
| 
      
 8 
     | 
    
         
            +
              - 3
         
     | 
| 
      
 9 
     | 
    
         
            +
              - 4
         
     | 
| 
      
 10 
     | 
    
         
            +
              - 0
         
     | 
| 
      
 11 
     | 
    
         
            +
              version: 5.3.4.0
         
     | 
| 
      
 12 
     | 
    
         
            +
            platform: x86-mingw32
         
     | 
| 
      
 13 
     | 
    
         
            +
            authors: 
         
     | 
| 
      
 14 
     | 
    
         
            +
            - Scott Lembcke, Beoran, John Mair (banisterfiend)
         
     | 
| 
      
 15 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 16 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 17 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            date: 2011-05-02 00:00:00 +02:00
         
     | 
| 
      
 20 
     | 
    
         
            +
            default_executable: 
         
     | 
| 
      
 21 
     | 
    
         
            +
            dependencies: []
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            description: "Enhanced ruby bindings for the chipmunk 5.3.4 game physics engine. "
         
     | 
| 
      
 24 
     | 
    
         
            +
            email: beoran@rubyforge.org
         
     | 
| 
      
 25 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 32 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 33 
     | 
    
         
            +
            - README
         
     | 
| 
      
 34 
     | 
    
         
            +
            - LICENSE
         
     | 
| 
      
 35 
     | 
    
         
            +
            - lib/chipmunk.rb
         
     | 
| 
      
 36 
     | 
    
         
            +
            - ext/chipmunk/extconf.rb
         
     | 
| 
      
 37 
     | 
    
         
            +
            - ext/chipmunk/rb_chipmunk.h
         
     | 
| 
      
 38 
     | 
    
         
            +
            - ext/chipmunk/rb_chipmunk.c
         
     | 
| 
      
 39 
     | 
    
         
            +
            - ext/chipmunk/rb_cpBody.c
         
     | 
| 
      
 40 
     | 
    
         
            +
            - ext/chipmunk/rb_cpBB.c
         
     | 
| 
      
 41 
     | 
    
         
            +
            - ext/chipmunk/rb_cpShape.c
         
     | 
| 
      
 42 
     | 
    
         
            +
            - ext/chipmunk/rb_cpConstraint.c
         
     | 
| 
      
 43 
     | 
    
         
            +
            - ext/chipmunk/rb_cpVect.c
         
     | 
| 
      
 44 
     | 
    
         
            +
            - ext/chipmunk/rb_cpArbiter.c
         
     | 
| 
      
 45 
     | 
    
         
            +
            - ext/chipmunk/rb_cpSpace.c
         
     | 
| 
      
 46 
     | 
    
         
            +
            - lib/1.8/chipmunk.so
         
     | 
| 
      
 47 
     | 
    
         
            +
            - lib/1.9/chipmunk.so
         
     | 
| 
      
 48 
     | 
    
         
            +
            has_rdoc: true
         
     | 
| 
      
 49 
     | 
    
         
            +
            homepage: https://github.com/beoran/chipmunk
         
     | 
| 
      
 50 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 53 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 56 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 57 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 58 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 59 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 60 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 61 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 62 
     | 
    
         
            +
                  hash: 3
         
     | 
| 
      
 63 
     | 
    
         
            +
                  segments: 
         
     | 
| 
      
 64 
     | 
    
         
            +
                  - 0
         
     | 
| 
      
 65 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 66 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 67 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 68 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 69 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 70 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 71 
     | 
    
         
            +
                  hash: 3
         
     | 
| 
      
 72 
     | 
    
         
            +
                  segments: 
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - 0
         
     | 
| 
      
 74 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 75 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 78 
     | 
    
         
            +
            rubygems_version: 1.6.2
         
     | 
| 
      
 79 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 80 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 81 
     | 
    
         
            +
            summary: Enhanced ruby bindings for the chipmunk 5.3.4 game physics engine.
         
     | 
| 
      
 82 
     | 
    
         
            +
            test_files: []
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     |