miso 0.1.0 → 0.1.1

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.
Files changed (5) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION +1 -1
  3. data/miso.gemspec +86 -0
  4. data/pkg/miso-0.1.0.gem +0 -0
  5. metadata +18 -4
data/Rakefile CHANGED
@@ -41,6 +41,7 @@ begin
41
41
  s.authors = ["Eloy Duran", "Manfred Stienstra"]
42
42
  s.summary = s.description = "Miso is a unified API for simple image operations commonly used on the web."
43
43
  s.files = FileList['**/**'] # tmp until we've patched Jeweler to be able to easily add files to defaults
44
+ s.add_dependency('executioner', '>= 0.2.0')
44
45
  end
45
46
  rescue LoadError
46
47
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/miso.gemspec ADDED
@@ -0,0 +1,86 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{miso}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Eloy Duran", "Manfred Stienstra"]
12
+ s.date = %q{2009-10-20}
13
+ s.description = %q{Miso is a unified API for simple image operations commonly used on the web.}
14
+ s.email = ["eloy@fngtps.com", "manfred@fngtps.com"]
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README"
18
+ ]
19
+ s.files = [
20
+ "LICENSE",
21
+ "README",
22
+ "Rakefile",
23
+ "TODO",
24
+ "VERSION",
25
+ "html/classes/Miso.html",
26
+ "html/classes/Miso/Factory.html",
27
+ "html/classes/Miso/Image.html",
28
+ "html/classes/Miso/Processor.html",
29
+ "html/classes/Miso/Processor/CoreImage.html",
30
+ "html/classes/Miso/Processor/ImageMagick.html",
31
+ "html/classes/Miso/Processor/NotImplementedError.html",
32
+ "html/created.rid",
33
+ "html/files/LICENSE.html",
34
+ "html/files/README.html",
35
+ "html/files/lib/miso/factory_rb.html",
36
+ "html/files/lib/miso/image_rb.html",
37
+ "html/files/lib/miso/processor/core_image_rb.html",
38
+ "html/files/lib/miso/processor/image_magick_rb.html",
39
+ "html/files/lib/miso/processor_rb.html",
40
+ "html/files/lib/miso_rb.html",
41
+ "html/fr_class_index.html",
42
+ "html/fr_file_index.html",
43
+ "html/fr_method_index.html",
44
+ "html/index.html",
45
+ "html/rdoc-style.css",
46
+ "lib/miso.rb",
47
+ "lib/miso/factory.rb",
48
+ "lib/miso/image.rb",
49
+ "lib/miso/processor.rb",
50
+ "lib/miso/processor/core_image.rb",
51
+ "lib/miso/processor/image_magick.rb",
52
+ "miso.gemspec",
53
+ "pkg/miso-0.1.0.gem",
54
+ "spec/api/factory_spec.rb",
55
+ "spec/api/image_spec.rb",
56
+ "spec/api/processor/image_magick_spec.rb",
57
+ "spec/api/processor_spec.rb",
58
+ "spec/fixtures/120x100.png",
59
+ "spec/start.rb"
60
+ ]
61
+ s.homepage = %q{http://github.com/Fingertips/miso}
62
+ s.rdoc_options = ["--charset=UTF-8"]
63
+ s.require_paths = ["lib"]
64
+ s.rubygems_version = %q{1.3.5}
65
+ s.summary = %q{Miso is a unified API for simple image operations commonly used on the web.}
66
+ s.test_files = [
67
+ "spec/api/factory_spec.rb",
68
+ "spec/api/image_spec.rb",
69
+ "spec/api/processor/image_magick_spec.rb",
70
+ "spec/api/processor_spec.rb",
71
+ "spec/start.rb"
72
+ ]
73
+
74
+ if s.respond_to? :specification_version then
75
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
76
+ s.specification_version = 3
77
+
78
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
79
+ s.add_runtime_dependency(%q<executioner>, [">= 0.2.0"])
80
+ else
81
+ s.add_dependency(%q<executioner>, [">= 0.2.0"])
82
+ end
83
+ else
84
+ s.add_dependency(%q<executioner>, [">= 0.2.0"])
85
+ end
86
+ end
Binary file
metadata CHANGED
@@ -1,9 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: miso
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
+ - Eloy Duran
7
8
  - Manfred Stienstra
8
9
  autorequire:
9
10
  bindir: bin
@@ -11,10 +12,21 @@ cert_chain: []
11
12
 
12
13
  date: 2009-10-20 00:00:00 +02:00
13
14
  default_executable:
14
- dependencies: []
15
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: executioner
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 0.2.0
25
+ version:
16
26
  description: Miso is a unified API for simple image operations commonly used on the web.
17
- email: manfred@fngtps.com
27
+ email:
28
+ - eloy@fngtps.com
29
+ - manfred@fngtps.com
18
30
  executables: []
19
31
 
20
32
  extensions: []
@@ -55,6 +67,8 @@ files:
55
67
  - lib/miso/processor.rb
56
68
  - lib/miso/processor/core_image.rb
57
69
  - lib/miso/processor/image_magick.rb
70
+ - miso.gemspec
71
+ - pkg/miso-0.1.0.gem
58
72
  - spec/api/factory_spec.rb
59
73
  - spec/api/image_spec.rb
60
74
  - spec/api/processor/image_magick_spec.rb