panda_canvas 0.6.1 → 0.6.2

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 (3) hide show
  1. data/README.rdoc +13 -2
  2. data/lib/panda_canvas/version.rb +1 -1
  3. metadata +40 -39
data/README.rdoc CHANGED
@@ -1,8 +1,11 @@
1
1
  = Panda Canvas
2
2
 
3
- Panda Canvas is an educational 2D drawing canvas on top of {Gosu}[http://www.libgosu.org/] and {TexPlay}[http://github.com/banister/texplay].
3
+ Panda Canvas is an educational 2D drawing canvas on top of
4
+ {Gosu}[http://www.libgosu.org/] and
5
+ {TexPlay}[http://github.com/banister/texplay].
4
6
 
5
- It is created as a teaching tool for the {Computer Club n.a. 8-bit Panda}[http://panda.tsi.lv].
7
+ It is created as a teaching tool for the
8
+ {Computer Club n.a. 8-bit Panda}[http://panda.tsi.lv].
6
9
 
7
10
  == Installation
8
11
 
@@ -10,6 +13,14 @@ Panda Canvas is available as a gem:
10
13
 
11
14
  $ gem install panda_canvas
12
15
 
16
+ == Known Problems
17
+
18
+ Running an endless draw block is not possible on Windows. In a unix environment
19
+ Panda Canvas uses fibers to pause the draw block in the Gosu game loop on
20
+ flush. With tested Gosu and Ruby versions on Windows this results in a
21
+ segfault. So, instead of fibers, the block must be run once and complete to
22
+ capture all of the canvas calls before drawing on screen.
23
+
13
24
  == More
14
25
 
15
26
  Take a look at the {wiki}[http://github.com/dimituri/panda_canvas/wiki].
@@ -4,7 +4,7 @@ module PandaCanvas
4
4
 
5
5
  MAJOR = 0
6
6
  MINOR = 6
7
- TINY = 1
7
+ TINY = 2
8
8
 
9
9
  def self.to_s
10
10
  [MAJOR, MINOR, TINY].join '.'
metadata CHANGED
@@ -1,49 +1,54 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: panda_canvas
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.6.2
4
5
  prerelease:
5
- version: 0.6.1
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Dimitry Solovyov
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-05-06 00:00:00 +03:00
14
- default_executable:
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
12
+ date: 2013-04-03 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
17
15
  name: gosu
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
20
17
  none: false
21
- requirements:
18
+ requirements:
22
19
  - - ~>
23
- - !ruby/object:Gem::Version
20
+ - !ruby/object:Gem::Version
24
21
  version: 0.7.24
25
22
  type: :runtime
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
28
- name: texplay
29
23
  prerelease: false
30
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
31
25
  none: false
32
- requirements:
26
+ requirements:
33
27
  - - ~>
34
- - !ruby/object:Gem::Version
35
- version: 0.3.5
28
+ - !ruby/object:Gem::Version
29
+ version: 0.7.24
30
+ - !ruby/object:Gem::Dependency
31
+ name: texplay
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.4.3
36
38
  type: :runtime
37
- version_requirements: *id002
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.4.3
38
46
  description: Educational 2D drawing canvas on top of Gosu and TexPlay.
39
47
  email: dimituri@gmail.com
40
48
  executables: []
41
-
42
49
  extensions: []
43
-
44
50
  extra_rdoc_files: []
45
-
46
- files:
51
+ files:
47
52
  - lib/panda_canvas/animation_canvas.rb
48
53
  - lib/panda_canvas/drawing_agent.rb
49
54
  - lib/panda_canvas/drawing_canvas.rb
@@ -55,33 +60,29 @@ files:
55
60
  - lib/panda_canvas.rb
56
61
  - LICENSE
57
62
  - README.rdoc
58
- has_rdoc: true
59
63
  homepage: http://github.com/dimituri/panda_canvas
60
64
  licenses: []
61
-
62
65
  post_install_message:
63
66
  rdoc_options: []
64
-
65
- require_paths:
67
+ require_paths:
66
68
  - lib
67
- required_ruby_version: !ruby/object:Gem::Requirement
69
+ required_ruby_version: !ruby/object:Gem::Requirement
68
70
  none: false
69
- requirements:
71
+ requirements:
70
72
  - - ~>
71
- - !ruby/object:Gem::Version
73
+ - !ruby/object:Gem::Version
72
74
  version: 1.9.2
73
- required_rubygems_version: !ruby/object:Gem::Requirement
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
76
  none: false
75
- requirements:
76
- - - ">="
77
- - !ruby/object:Gem::Version
77
+ requirements:
78
+ - - ! '>='
79
+ - !ruby/object:Gem::Version
78
80
  version: 1.3.6
79
81
  requirements: []
80
-
81
82
  rubyforge_project:
82
- rubygems_version: 1.5.2
83
+ rubygems_version: 1.8.24
83
84
  signing_key:
84
85
  specification_version: 3
85
86
  summary: Educational 2D drawing canvas on top of Gosu and TexPlay.
86
87
  test_files: []
87
-
88
+ has_rdoc: