texplay 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ 2/9/09
2
+ version 0.2.1
3
+ * releasing a gem for TexPlay
4
+ * bumped version number so can add add gosu 0.7.14 dependency to github gem
5
+ * hopefully gem works on both github and rubyforge
1
6
  31/8/09
2
7
  version 0.2.0
3
8
  * added each iterator
data/README CHANGED
@@ -1,6 +1,6 @@
1
1
  INSTRUCTIONS
2
2
 
3
- TexPlay version 0.2.0
3
+ TexPlay version 0.2.1
4
4
 
5
5
  To compile TexPlay, ensure you are in the directory with the Rakefile and type:
6
6
  => rake
data/README1st CHANGED
@@ -1,6 +1,6 @@
1
1
  INSTRUCTIONS
2
2
 
3
- TexPlay version 0.2.0
3
+ TexPlay version 0.2.1
4
4
 
5
5
  *Ensure that ctexplay.so and gosu.so, and texplay.rb and texplay-contrib.rb are in the working directory for your project
6
6
  *require 'texplay' in your ruby program to access the TexPlay module
data/Rakefile CHANGED
@@ -38,7 +38,7 @@ end
38
38
  specification = Gem::Specification.new do |s|
39
39
  s.name = "texplay"
40
40
  s.summary = "TexPlay is a light-weight image manipulation framework for Ruby and Gosu"
41
- s.version = "0.2.0"
41
+ s.version = "0.2.1"
42
42
  s.date = "2009-09-02"
43
43
  s.author = "John Mair (banisterfiend)"
44
44
  s.email = 'jrmair@gmail.com'
data/lib/texplay.rb CHANGED
@@ -10,7 +10,7 @@ require 'rbconfig'
10
10
  require 'gosu'
11
11
 
12
12
  module TexPlay
13
- TEXPLAY_VERSION = "0.2.0"
13
+ TEXPLAY_VERSION = "0.2.1"
14
14
 
15
15
  def self.on_setup(&block)
16
16
  raise "need a block" if !block
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: texplay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mair (banisterfiend)
@@ -38,20 +38,13 @@ files:
38
38
  - lib/texplay.rb
39
39
  - lib/texplay-contrib.rb
40
40
  - src/texplay.c
41
- - src/utils.o
42
41
  - src/object2module.h
43
42
  - src/bindings.h
44
- - src/cache.o
45
- - src/gen_eval.o
46
43
  - src/actions.c
47
44
  - src/object2module.c
48
45
  - src/utils.h
49
46
  - src/actions.h
50
- - src/bindings.o
51
- - src/object2module.o
52
47
  - src/compat.h
53
- - src/ctexplay.so
54
- - src/mkmf.log
55
48
  - src/Makefile
56
49
  - src/TAGS
57
50
  - src/cache.h
@@ -62,8 +55,6 @@ files:
62
55
  - src/gen_eval.h
63
56
  - src/gen_eval.c
64
57
  - src/cache.c
65
- - src/texplay.o
66
- - src/actions.o
67
58
  - examples/example_dup.rb
68
59
  - examples/example_turtle.rb
69
60
  - examples/example_color_control.rb
data/src/actions.o DELETED
Binary file
data/src/bindings.o DELETED
Binary file
data/src/cache.o DELETED
Binary file
data/src/ctexplay.so DELETED
Binary file
data/src/gen_eval.o DELETED
Binary file
data/src/mkmf.log DELETED
@@ -1,22 +0,0 @@
1
- have_library: checking for main() in -lglut... -------------------- yes
2
-
3
- "gcc -o conftest -I/usr/local/include/ruby19-1.9.1/i686-linux -I/usr/local/include/ruby19-1.9.1/ruby/backward -I/usr/local/include/ruby19-1.9.1 -I. -D_FILE_OFFSET_BITS=64 -O2 -g -Wall -Wno-parentheses conftest.c -L. -L/usr/local/lib -Wl,-R/usr/local/lib -L. -rdynamic -Wl,-export-dynamic -Wl,-R -Wl,/usr/local/lib -L/usr/local/lib -lruby19-static -lpthread -lrt -ldl -lcrypt -lm -lc"
4
- checked program was:
5
- /* begin */
6
- 1: #include "ruby.h"
7
- 2:
8
- 3: int main() {return 0;}
9
- /* end */
10
-
11
- "gcc -o conftest -I/usr/local/include/ruby19-1.9.1/i686-linux -I/usr/local/include/ruby19-1.9.1/ruby/backward -I/usr/local/include/ruby19-1.9.1 -I. -D_FILE_OFFSET_BITS=64 -O2 -g -Wall -Wno-parentheses conftest.c -L. -L/usr/local/lib -Wl,-R/usr/local/lib -L. -rdynamic -Wl,-export-dynamic -Wl,-R -Wl,/usr/local/lib -L/usr/local/lib -lruby19-static -lglut -lpthread -lrt -ldl -lcrypt -lm -lc"
12
- checked program was:
13
- /* begin */
14
- 1: #include "ruby.h"
15
- 2:
16
- 3: /*top*/
17
- 4: int main() {return 0;}
18
- 5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
19
- /* end */
20
-
21
- --------------------
22
-
data/src/object2module.o DELETED
Binary file
data/src/texplay.o DELETED
Binary file
data/src/utils.o DELETED
Binary file