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 +4 -0
- data/bin/heel +0 -0
- data/gemspec.rb +1 -1
- data/lib/heel/version.rb +1 -1
- data/spec/rackapp_spec.rb +1 -1
- metadata +3 -3
data/HISTORY
CHANGED
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.
|
|
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
|
|
data/lib/heel/version.rb
CHANGED
data/spec/rackapp_spec.rb
CHANGED
|
@@ -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 == "
|
|
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.
|
|
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:
|
|
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.
|
|
33
|
+
version: "1.16"
|
|
34
34
|
version:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: launchy
|