miso 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -89,7 +89,7 @@ module Miso
89
89
  case File.extname(path).downcase
90
90
  when '.png'
91
91
  OSX::NSPNGFileType
92
- when '.jpg'
92
+ when '.jpg', '.jpeg'
93
93
  OSX::NSJPEGFileType
94
94
  when '.gif'
95
95
  OSX::NSGIFFileType
data/miso.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{miso}
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Eloy Duran", "Manfred Stienstra"]
12
- s.date = %q{2009-11-30}
12
+ s.date = %q{2009-12-01}
13
13
  s.description = %q{Miso is a unified API for simple image operations commonly used on the web.}
14
14
  s.email = ["eloy@fngtps.com", "manfred@fngtps.com"]
15
15
  s.extra_rdoc_files = [
@@ -19,7 +19,7 @@ begin
19
19
 
20
20
  describe "An instance of Miso::Processor::CoreImage" do
21
21
  it "should write the output file with the type inflected from the extension" do
22
- ext_and_type = { 'png' => 'PNG', 'jpg' => 'JPEG', 'gif' => 'GIF' }
22
+ ext_and_type = { 'png' => 'PNG', 'jpg' => 'JPEG', 'jpeg' => 'JPEG', 'gif' => 'GIF' }
23
23
  ext_and_type.each { |k, v| ext_and_type[k.upcase] = v }
24
24
 
25
25
  ext_and_type.each do |ext, type|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: miso
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-11-30 00:00:00 +01:00
13
+ date: 2009-12-01 00:00:00 +01:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency