heel 1.0.2 → 1.0.3

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/HISTORY CHANGED
@@ -1,4 +1,8 @@
1
1
  = Changelog
2
+ == Version 1.0.3 - 2009-03-02
3
+
4
+ * Update for MIME::Types 1.16
5
+
2
6
  == Version 1.0.2 - 2008-12-03
3
7
 
4
8
  * Fix FileType namespace issue (thanks defunkt) and new version of coderay
data/bin/heel CHANGED
File without changes
data/gemspec.rb CHANGED
@@ -19,7 +19,7 @@ Heel::GEM_SPEC = Gem::Specification.new do |spec|
19
19
  spec.files = pkg.files.all
20
20
  spec.executables = pkg.files.bin.collect { |b| File.basename(b) }
21
21
  spec.add_dependency("thin", "~> 1.0.0")
22
- spec.add_dependency("mime-types", "~> 1.15")
22
+ spec.add_dependency("mime-types", "~> 1.16")
23
23
  spec.add_dependency("launchy", "~> 0.3.2")
24
24
  spec.add_dependency("coderay", "~> 0.8.260")
25
25
 
@@ -7,7 +7,7 @@ module Heel
7
7
  module Version
8
8
  MAJOR = 1
9
9
  MINOR = 0
10
- BUILD = 2
10
+ BUILD = 3
11
11
 
12
12
  def to_a
13
13
  [MAJOR, MINOR, BUILD]
@@ -26,7 +26,7 @@ describe Heel::RackApp do
26
26
  res = @request.get("/gemspec.rb?highlighting=off")
27
27
  res.should be_ok
28
28
  res.body.size.should == File.size("gemspec.rb")
29
- res['Content-Type'].should == "text/plain"
29
+ res['Content-Type'].should == "application/x-ruby"
30
30
  end
31
31
 
32
32
  it "should return a 405 if given a non-GET request" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Hinegardner
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-03 00:00:00 -07:00
12
+ date: 2009-03-02 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: "1.15"
33
+ version: "1.16"
34
34
  version:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: launchy