blackwinter-ruby-xquery 0.2.2 → 0.2.3

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/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to ruby-xquery version 0.2.2
5
+ This documentation refers to ruby-xquery version 0.2.3
6
6
 
7
7
 
8
8
  == DESCRIPTION
@@ -26,7 +26,7 @@ Rubyforge project:: <http://rubyforge.org/projects/prometheus>
26
26
 
27
27
  == LICENSE AND COPYRIGHT
28
28
 
29
- Copyright (C) 2007-2008 Jens Wille
29
+ Copyright (C) 2007-2009 Jens Wille
30
30
 
31
31
  ruby-xquery is free software: you can redistribute it and/or modify it under
32
32
  the terms of the GNU General Public License as published by the Free Software
@@ -3,7 +3,7 @@
3
3
  # #
4
4
  # A component of ruby-xquery, mimicking XQuery in Ruby. #
5
5
  # #
6
- # Copyright (C) 2007-2008 Jens Wille #
6
+ # Copyright (C) 2007-2009 Jens Wille #
7
7
  # #
8
8
  # Authors: #
9
9
  # Jens Wille <jens.wille@uni-koeln.de> #
@@ -55,7 +55,7 @@ module LibXML::XML::XQuery::Uniqueness
55
55
  proxy.instance_variable_set(:@_this, self)
56
56
 
57
57
  class << proxy
58
- (instance_methods - DELEGATORS).each { |method|
58
+ (instance_methods.map { |m| m.to_s } - DELEGATORS).each { |method|
59
59
  undef_method(method) unless method =~ /\A__/
60
60
  }
61
61
 
@@ -8,7 +8,7 @@ module LibXML
8
8
 
9
9
  MAJOR = 0
10
10
  MINOR = 2
11
- TINY = 2
11
+ TINY = 3
12
12
 
13
13
  class << self
14
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blackwinter-ruby-xquery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jens Wille
@@ -9,11 +9,12 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-13 00:00:00 -08:00
12
+ date: 2009-04-06 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: libxml-ruby
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
@@ -32,34 +33,35 @@ extra_rdoc_files:
32
33
  - ChangeLog
33
34
  - README
34
35
  files:
35
- - lib/libxml/xquery.rb
36
+ - lib/xml/xquery.rb
36
37
  - lib/libxml/xquery/uniqueness.rb
37
- - lib/libxml/xquery/string_representation.rb
38
- - lib/libxml/xquery/version.rb
39
38
  - lib/libxml/xquery/namespaces.rb
39
+ - lib/libxml/xquery/version.rb
40
+ - lib/libxml/xquery/string_representation.rb
40
41
  - lib/libxml/xquery/enhanced_find.rb
41
- - lib/xml/xquery.rb
42
- - COPYING
42
+ - lib/libxml/xquery.rb
43
43
  - Rakefile
44
- - README
44
+ - HEADER
45
+ - COPYING
45
46
  - ChangeLog
47
+ - README
46
48
  - spec/spec_helper.rb
47
49
  - spec/xquery_spec.rb
48
- - test_data/play.dtd
49
50
  - test_data/hamlet.xml
51
+ - test_data/play.dtd
50
52
  has_rdoc: true
51
- homepage: http://prometheus.rubyforge.org/doc
53
+ homepage: http://prometheus.rubyforge.org/ruby-xquery
52
54
  post_install_message:
53
55
  rdoc_options:
56
+ - --main
57
+ - README
58
+ - --line-numbers
54
59
  - --inline-source
55
- - --all
56
60
  - --title
57
61
  - ruby-xquery Application documentation
58
- - --main
59
- - README
62
+ - --all
60
63
  - --charset
61
64
  - UTF-8
62
- - --line-numbers
63
65
  require_paths:
64
66
  - lib
65
67
  required_ruby_version: !ruby/object:Gem::Requirement