Skip to content

Commit d163606

Browse files
author
Sean Cribbs
committed
Release 1.3.0
1 parent 38a77ca commit d163606

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ Gemfile.lock
2828
.rvmrc
2929
.SyncID
3030
.SyncIgnore
31+
vendor
32+

Rakefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ task :clean_whitespace do
5151
end
5252
end
5353

54-
require 'rspec/core'
5554
require 'rspec/core/rake_task'
5655

5756
desc "Run specs"

lib/webmachine/streaming/io_encoder.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def copy_stream(outstream)
2929
each {|chunk| outstream << chunk }
3030
end
3131
end
32-
32+
3333
# Allows the response body to be converted to a IO object.
3434
# @return [IO,nil] the body as a IO object, or nil.
3535
def to_io

lib/webmachine/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Webmachine
22
# Library version
3-
VERSION = "1.2.2".freeze
3+
VERSION = "1.3.0".freeze
44

55
# String for use in "Server" HTTP response header, which includes
66
# the {VERSION}.

spec/webmachine/decision/conneg_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"bah;")
4848
}.to raise_error(Webmachine::MalformedRequest)
4949
end
50-
50+
5151
it "should choose a type when more than one accept header is present" do
5252
expect(subject.choose_media_type(["text/html"],
5353
["text/html", "text/plain"])).to eq("text/html")

spec/webmachine/decision/helpers_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def accept_doc; result; end
128128
subject.encode_body
129129
expect(response.body).to be_instance_of(Webmachine::Streaming::CallableEncoder)
130130
end
131-
131+
132132
it_should_behave_like "a non-String body"
133133
end
134134

0 commit comments

Comments
 (0)