chipmunk 5.3.4.4 → 5.3.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README +12 -8
  2. data/Rakefile +3 -1
  3. data/ext/chipmunk/rb_cpConstraint.c +1 -1
  4. metadata +3 -5
data/README CHANGED
@@ -55,20 +55,26 @@ INSTALLATION
55
55
  upstream tools.
56
56
 
57
57
  These bindings vendor Chipmunk 5.3.4 with a few extra patches, so you don't
58
- need to have it installed. Optionally, the C chipmunk library may be installed
59
- separately. To compile without vendoring, go to the ext/chipmunk directory and
60
- compile with:
61
- ruby extconf.rb --disable-vendor ; make ; make install
62
-
58
+ need to have it installed.
63
59
 
64
60
  DOCUMENTATION:
65
61
  Full handcrafted documentation based on the C documentation is available at:
66
62
  http://beoran.github.com/chipmunk/
67
63
 
68
64
  CHANGES:
65
+ * Since 5.3.4.4: Vendored chipmunk again, uncleanly. should compile well now.
66
+ * Version 5.3.4.2 and 5.3.4.3 are broken, don't use them.
69
67
  * Since 5.3.4.1: Vendored chipmunk again, cleanly. Several bugfixes.
70
68
  * Since 5.1.0 : Much more of Chipmunk's functionality is wrapped. Unvendored
71
69
  chipmunk. More specs and documentation.
70
+
71
+ VERSIONING POLICY:
72
+ Since 5.3.4.0 these bindings follow the version of chipmunk, followed by an
73
+ extra number for the version of the bindings. All major releases will be
74
+ backwards compatible in their API. The API may be enhanced in minor releases.
75
+ The next planned release that is expected to partialy break backwards
76
+ compatibility with the 5.3.4 API will be 6.x.x.0, which will be based on
77
+ the upstream C Chipmunk library version 6.x.x after that leaves beta.
72
78
 
73
79
  KNOWN BUGS:
74
80
  * There are no bindings to SpaceHash since I think they are not so useful
@@ -101,6 +107,4 @@ INFO FOR MAINTAINERS:
101
107
  * Install 1.9.1 and 1.8.6 mingw ruby versions (instructions above)
102
108
  * Type: rake cross native gem RUBY_CC_VERSION=1.8.6:1.9.1
103
109
  * Upload new gems to rubyforge and gemcutter.
104
-
105
-
106
-
110
+
data/Rakefile CHANGED
@@ -17,7 +17,7 @@ rescue LoadError
17
17
  # puts "...done!"
18
18
  end
19
19
 
20
- CHIPMUNK_VERSION = "5.3.4.4"
20
+ CHIPMUNK_VERSION = "5.3.4.5"
21
21
  VENDORED_CHIPMUNK = 'chipmunk-5.3.4'
22
22
  VENDORED_SRC_DIR = File.join('vendor', VENDORED_CHIPMUNK, 'src')
23
23
  VENDORED_SRC_DIR2 = File.join('vendor', VENDORED_CHIPMUNK, 'src', 'constraints')
@@ -43,6 +43,8 @@ def apply_spec_defaults(s)
43
43
  s.homepage = "https://github.com/beoran/chipmunk"
44
44
  end
45
45
 
46
+ FILES = ["Rakefile", "README", "LICENSE", "lib/chipmunk.rb"] +
47
+ FileList["spec/*.rb", "ext/**/extconf.rb", "ext/**/*.h", "ext/**/*.c"].to_a
46
48
 
47
49
  # common tasks
48
50
  task :compile => :clean
@@ -243,7 +243,7 @@ rb_cpConstraintGetImpulse(VALUE self) {
243
243
  #define STRINGIFY(v) # v
244
244
  #define ACCESSOR_METHODS(s, m, name) \
245
245
  rb_define_method(c_ ## s, STRINGIFY(name), rb_ ## s ## Get ## m, 0); \
246
- rb_define_method(c_ ## s, STRINGIFY(name = ), rb_ ## s ## Set ## m, 1);
246
+ rb_define_method(c_ ## s, STRINGIFY(name=), rb_ ## s ## Set ## m, 1);
247
247
 
248
248
  static VALUE
249
249
  make_class(const char *name, void *alloc_func, void *init_func, int init_params) {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chipmunk
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.4.4
4
+ version: 5.3.4.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-05-24 00:00:00.000000000 +02:00
13
- default_executable:
12
+ date: 2011-08-06 00:00:00.000000000Z
14
13
  dependencies: []
15
14
  description: ! 'Enhanced ruby bindings for the chipmunk 5.3.4 game physics engine. '
16
15
  email: beoran@rubyforge.org
@@ -88,7 +87,6 @@ files:
88
87
  - ext/chipmunk/cpSpaceQuery.c
89
88
  - ext/chipmunk/cpPolyShape.c
90
89
  - ext/chipmunk/cpGearJoint.c
91
- has_rdoc: true
92
90
  homepage: https://github.com/beoran/chipmunk
93
91
  licenses: []
94
92
  post_install_message:
@@ -109,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
107
  version: '0'
110
108
  requirements: []
111
109
  rubyforge_project:
112
- rubygems_version: 1.6.1
110
+ rubygems_version: 1.8.5
113
111
  signing_key:
114
112
  specification_version: 3
115
113
  summary: Enhanced ruby bindings for the chipmunk 5.3.4 game physics engine.