Bump version to 0.1.9

This commit is contained in:
Erik Michaels-Ober 2012-07-20 08:57:19 -07:00
parent 167b696eb5
commit f94f49858c
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
Gem::Specification.new do |gem|
gem.name = 'simple_oauth'
gem.version = '0.1.8'
gem.version = '0.1.9'
gem.authors = ["Steve Richert", "Erik Michaels-Ober"]
gem.email = ['steve.richert@gmail.com', 'sferik@gmail.com']

View file

@ -86,7 +86,7 @@ describe SimpleOAuth::Header do
parsed_options.should have_key(:signature)
parsed_options[:signature].should_not be_nil
end
it 'should handle optional "linear white space"' do
parsed_header_with_spaces = SimpleOAuth::Header.parse 'OAuth oauth_consumer_key="abcd", oauth_nonce="oLKtec51GQy", oauth_signature="efgh%26mnop", oauth_signature_method="PLAINTEXT", oauth_timestamp="1286977095", oauth_token="ijkl", oauth_version="1.0"'
parsed_header_with_spaces.should be_a_kind_of(Hash)