thin 1.2.10-x86-mswin32 → 1.2.11-x86-mswin32
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/CHANGELOG +5 -2
 - data/lib/1.8/thin_parser.so +0 -0
 - data/lib/1.9/thin_parser.so +0 -0
 - data/lib/thin/version.rb +2 -2
 - data/tasks/gem.rake +1 -1
 - data/tasks/spec.rake +1 -0
 - metadata +4 -5
 - data/lib/thin_parser.bundle +0 -0
 
    
        data/CHANGELOG
    CHANGED
    
    | 
         @@ -1,7 +1,10 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            == 1.2. 
     | 
| 
      
 1 
     | 
    
         
            +
            == 1.2.11 Bat-Shit Crazy
         
     | 
| 
      
 2 
     | 
    
         
            +
             * Fix pure Ruby gem to not include binary.
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            == 1.2.10 I'm dumb (BAD RELEASE, DON'T USE)
         
     | 
| 
       2 
5 
     | 
    
         
             
             * I really am (bad release fix)
         
     | 
| 
       3 
6 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            == 1.2.9 Black Keys Extra Plus Wow
         
     | 
| 
      
 7 
     | 
    
         
            +
            == 1.2.9 Black Keys Extra Plus Wow (BAD RELEASE, DON'T USE)
         
     | 
| 
       5 
8 
     | 
    
         
             
             * Improve fat binary loading.
         
     | 
| 
       6 
9 
     | 
    
         | 
| 
       7 
10 
     | 
    
         
             
            == 1.2.8 Black Keys
         
     | 
    
        data/lib/1.8/thin_parser.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/1.9/thin_parser.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/thin/version.rb
    CHANGED
    
    | 
         @@ -6,11 +6,11 @@ module Thin 
     | 
|
| 
       6 
6 
     | 
    
         
             
              module VERSION #:nodoc:
         
     | 
| 
       7 
7 
     | 
    
         
             
                MAJOR    = 1
         
     | 
| 
       8 
8 
     | 
    
         
             
                MINOR    = 2
         
     | 
| 
       9 
     | 
    
         
            -
                TINY     =  
     | 
| 
      
 9 
     | 
    
         
            +
                TINY     = 11
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
                STRING   = [MAJOR, MINOR, TINY].join('.')
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
     | 
    
         
            -
                CODENAME = " 
     | 
| 
      
 13 
     | 
    
         
            +
                CODENAME = "Bat-Shit Crazy".freeze
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
                RACK     = [1, 0].freeze # Rack protocol version
         
     | 
| 
       16 
16 
     | 
    
         
             
              end
         
     | 
    
        data/tasks/gem.rake
    CHANGED
    
    | 
         @@ -25,7 +25,7 @@ Thin::GemSpec = Gem::Specification.new do |s| 
     | 
|
| 
       25 
25 
     | 
    
         
             
              end
         
     | 
| 
       26 
26 
     | 
    
         | 
| 
       27 
27 
     | 
    
         
             
              s.files                 = %w(COPYING CHANGELOG README Rakefile) +
         
     | 
| 
       28 
     | 
    
         
            -
                                        Dir.glob("{benchmark,bin,doc,example,lib,spec,tasks}/**/*") + 
         
     | 
| 
      
 28 
     | 
    
         
            +
                                        Dir.glob("{benchmark,bin,doc,example,lib,spec,tasks}/**/*") - Dir.glob("lib/thin_parser.*") + 
         
     | 
| 
       29 
29 
     | 
    
         
             
                                        Dir.glob("ext/**/*.{h,c,rb,rl}")
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
       31 
31 
     | 
    
         
             
              if WIN
         
     | 
    
        data/tasks/spec.rake
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,13 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: thin
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              hash:  
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 9
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       6 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       7 
7 
     | 
    
         
             
              - 1
         
     | 
| 
       8 
8 
     | 
    
         
             
              - 2
         
     | 
| 
       9 
     | 
    
         
            -
              -  
     | 
| 
       10 
     | 
    
         
            -
              version: 1.2. 
     | 
| 
      
 9 
     | 
    
         
            +
              - 11
         
     | 
| 
      
 10 
     | 
    
         
            +
              version: 1.2.11
         
     | 
| 
       11 
11 
     | 
    
         
             
            platform: x86-mswin32
         
     | 
| 
       12 
12 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
13 
     | 
    
         
             
            - Marc-Andre Cournoyer
         
     | 
| 
         @@ -15,7 +15,7 @@ autorequire: 
     | 
|
| 
       15 
15 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       16 
16 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       17 
17 
     | 
    
         | 
| 
       18 
     | 
    
         
            -
            date: 2011-03- 
     | 
| 
      
 18 
     | 
    
         
            +
            date: 2011-03-28 00:00:00 -04:00
         
     | 
| 
       19 
19 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       20 
20 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       21 
21 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
         @@ -120,7 +120,6 @@ files: 
     | 
|
| 
       120 
120 
     | 
    
         
             
            - lib/thin/statuses.rb
         
     | 
| 
       121 
121 
     | 
    
         
             
            - lib/thin/version.rb
         
     | 
| 
       122 
122 
     | 
    
         
             
            - lib/thin.rb
         
     | 
| 
       123 
     | 
    
         
            -
            - lib/thin_parser.bundle
         
     | 
| 
       124 
123 
     | 
    
         
             
            - spec/backends/swiftiply_client_spec.rb
         
     | 
| 
       125 
124 
     | 
    
         
             
            - spec/backends/tcp_server_spec.rb
         
     | 
| 
       126 
125 
     | 
    
         
             
            - spec/backends/unix_server_spec.rb
         
     | 
    
        data/lib/thin_parser.bundle
    DELETED
    
    | 
         Binary file 
     |