thin 1.2.10 → 1.2.11

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,7 +1,10 @@
1
- == 1.2.10 I'm dumb
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
@@ -6,11 +6,11 @@ module Thin
6
6
  module VERSION #:nodoc:
7
7
  MAJOR = 1
8
8
  MINOR = 2
9
- TINY = 10
9
+ TINY = 11
10
10
 
11
11
  STRING = [MAJOR, MINOR, TINY].join('.')
12
12
 
13
- CODENAME = "I'm dumb".freeze
13
+ CODENAME = "Bat-Shit Crazy".freeze
14
14
 
15
15
  RACK = [1, 0].freeze # Rack protocol version
16
16
  end
@@ -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
@@ -1,5 +1,6 @@
1
1
  CLEAN.include %w(coverage tmp log)
2
2
 
3
+ gem "rspec", "~> 1.2.9"
3
4
  require 'spec/rake/spectask'
4
5
 
5
6
  PERF_SPECS = FileList['spec/perf/*_spec.rb']
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: 11
4
+ hash: 9
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
- - 10
10
- version: 1.2.10
9
+ - 11
10
+ version: 1.2.11
11
11
  platform: ruby
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-23 00:00:00 -04:00
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
Binary file