nwn-lib 0.3.0 → 0.3.1

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 (4) hide show
  1. data/CHANGELOG +5 -0
  2. data/Rakefile +1 -1
  3. data/lib/nwn/gff.rb +2 -2
  4. metadata +2 -2
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.3.1
2
+
3
+ * Bugfix release only
4
+ * Gff: fix struct delegator bug not passing on blocks (yuk!)
5
+
1
6
  === 0.3.0
2
7
 
3
8
  * Binary: nwn-gff-import
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ include FileUtils
9
9
  # Configuration
10
10
  ##############################################################################
11
11
  NAME = "nwn-lib"
12
- VERS = "0.3.0"
12
+ VERS = "0.3.1"
13
13
  CLEAN.include ["**/.*.sw?", "pkg", ".config", "rdoc", "coverage"]
14
14
  RDOC_OPTS = ["--quiet", "--line-numbers", "--inline-source", '--title', \
15
15
  'nwn-lib: a ruby library for accessing NWN resource files', \
data/lib/nwn/gff.rb CHANGED
@@ -382,8 +382,8 @@ class NWN::Gff::Struct
382
382
  super
383
383
  end
384
384
 
385
- def method_missing meth, *a
386
- @hash.method(meth).call(*a)
385
+ def method_missing meth, *a, &block
386
+ @hash.method(meth).call(*a, &block)
387
387
  end
388
388
  end
389
389
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: nwn-lib
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.0
7
- date: 2008-07-08 00:00:00 +02:00
6
+ version: 0.3.1
7
+ date: 2008-07-09 00:00:00 +02:00
8
8
  summary: a ruby library for accessing Neverwinter Nights resource files
9
9
  require_paths:
10
10
  - lib