texplay 0.2.900-i386-mswin32 → 0.2.910-i386-mswin32

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.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 7/6/10
2
+ version 0.2.910
3
+ * 1.8.7 incompatibility fixed
4
+
1
5
  7/6/10
2
6
  version 0.2.900
3
7
  * added source_select, source_ignore, dest_select, dest_ignore
data/README.markdown CHANGED
@@ -5,7 +5,7 @@
5
5
  INSTRUCTIONS
6
6
  ============
7
7
 
8
- **TexPlay version 0.2.900**
8
+ **TexPlay version 0.2.910**
9
9
 
10
10
  [Read The Documentation](http://banisterfiend.wordpress.com/2008/08/23/texplay-an-image-manipulation-tool-for-ruby-and-gosu/)
11
11
 
data/lib/texplay.rb CHANGED
@@ -112,7 +112,7 @@ module Gosu
112
112
  # invoke old behaviour
113
113
  obj = original_new(*args, &block)
114
114
 
115
- prepare_image(*args, obj)
115
+ prepare_image(obj, *args)
116
116
  end
117
117
 
118
118
  alias_method :original_from_text, :from_text
@@ -122,10 +122,10 @@ module Gosu
122
122
  # invoke old behaviour
123
123
  obj = original_from_text(*args, &block)
124
124
 
125
- prepare_image(*args, obj)
125
+ prepare_image(obj, *args)
126
126
  end
127
127
 
128
- def prepare_image(*args, obj)
128
+ def prepare_image(obj, *args)
129
129
 
130
130
  # refresh the TexPlay image cache
131
131
  if obj.width <= (TexPlay::TP_MAX_QUAD_SIZE) &&
@@ -1,3 +1,3 @@
1
1
  module TexPlay
2
- VERSION = "0.2.900"
2
+ VERSION = "0.2.910"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 900
9
- version: 0.2.900
8
+ - 910
9
+ version: 0.2.910
10
10
  platform: i386-mswin32
11
11
  authors:
12
12
  - John Mair (banisterfiend)