fleximage 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ == fleximage 1.0.4 02-15-2010
2
+
3
+ * Nuke string_patch.rb which was totally superfluous
4
+ * Better compatibility with bundler
5
+
1
6
  == fleximage 1.0.2 12-14-2009
2
7
 
3
8
  * Don't prepend RAILS_ROOT to absolute image directory path
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.3
1
+ 1.0.4
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{fleximage}
8
- s.version = "1.0.3"
8
+ s.version = "1.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Alex Wayne", "Andrew White", "JJ Buckley", "Jason Lee", "Joshua Abbott", "Koji Ando", "Kouhei Sutou", "Lasse Jansen", "Lo\303\257c Guitaut", "Martin Vielsmaier", "Squeegy", "Vannoy"]
12
- s.date = %q{2009-12-19}
11
+ s.authors = ["Alex Wayne", "Andrew White", "JJ Buckley", "Jason Lee", "Joshua Abbott", "Koji Ando", "Kouhei Sutou", "Lasse Jansen", "Lo\303\257c Guitaut", "Martin Vielsmaier", "Squeegy", "Vannoy", "ralph"]
12
+ s.date = %q{2010-02-15}
13
13
  s.description = %q{Fleximage is a Rails plugin that tries to make image uploading and rendering
14
14
  super easy.
15
15
  }
@@ -46,7 +46,6 @@ super easy.
46
46
  "lib/fleximage/operator/trim.rb",
47
47
  "lib/fleximage/operator/unsharp_mask.rb",
48
48
  "lib/fleximage/rmagick_image_patch.rb",
49
- "lib/fleximage/string_patch.rb",
50
49
  "lib/fleximage/view.rb",
51
50
  "tasks/fleximage_tasks.rake",
52
51
  "test/fixtures/100x1.jpg",
@@ -11,9 +11,6 @@ rescue MissingSourceFile => e
11
11
  raise e
12
12
  end
13
13
 
14
- # Patch String class for ruby < 1.9
15
- require 'fleximage/string_patch'
16
-
17
14
  # Apply a few RMagick patches
18
15
  require 'fleximage/rmagick_image_patch'
19
16
 
@@ -50,6 +47,7 @@ require 'fleximage/helper'
50
47
  ActionView::Base.class_eval { include Fleximage::Helper }
51
48
 
52
49
  # Setup Aviary Controller
50
+ require 'fleximage/aviary_controller'
53
51
  ActionController::Base.class_eval{ include Fleximage::AviaryController }
54
52
 
55
53
  # Register mime types
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fleximage
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Wayne
@@ -16,11 +16,12 @@ authors:
16
16
  - Martin Vielsmaier
17
17
  - Squeegy
18
18
  - Vannoy
19
+ - ralph
19
20
  autorequire:
20
21
  bindir: bin
21
22
  cert_chain: []
22
23
 
23
- date: 2009-12-19 00:00:00 -08:00
24
+ date: 2010-02-15 00:00:00 -08:00
24
25
  default_executable:
25
26
  dependencies:
26
27
  - !ruby/object:Gem::Dependency
@@ -93,7 +94,6 @@ files:
93
94
  - lib/fleximage/operator/trim.rb
94
95
  - lib/fleximage/operator/unsharp_mask.rb
95
96
  - lib/fleximage/rmagick_image_patch.rb
96
- - lib/fleximage/string_patch.rb
97
97
  - lib/fleximage/view.rb
98
98
  - tasks/fleximage_tasks.rake
99
99
  - test/fixtures/100x1.jpg
@@ -1,5 +0,0 @@
1
- unless "string".respond_to?(:present?)
2
- class String
3
- alias_method :present?, :present?
4
- end
5
- end