ruby-xquery 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/HEADER ADDED
@@ -0,0 +1,26 @@
1
+ #--
2
+ ###############################################################################
3
+ # #
4
+ # A component of ruby-xquery, mimicking XQuery in Ruby. #
5
+ # #
6
+ # Copyright (C) 2007-2008 Jens Wille #
7
+ # #
8
+ # Authors: #
9
+ # Jens Wille <jens.wille@uni-koeln.de> #
10
+ # #
11
+ # ruby-xquery is free software; you can redistribute it and/or modify it #
12
+ # under the terms of the GNU General Public License as published by the Free #
13
+ # Software Foundation; either version 3 of the License, or (at your option) #
14
+ # any later version. #
15
+ # #
16
+ # ruby-xquery is distributed in the hope that it will be useful, but WITHOUT #
17
+ # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
18
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
19
+ # more details. #
20
+ # #
21
+ # You should have received a copy of the GNU General Public License along #
22
+ # with ruby-xquery. If not, see <http://www.gnu.org/licenses/>. #
23
+ # #
24
+ ###############################################################################
25
+ #++
26
+
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: 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,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-13 00:00:00 +01:00
12
+ date: 2009-04-06 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -33,34 +33,35 @@ extra_rdoc_files:
33
33
  - ChangeLog
34
34
  - README
35
35
  files:
36
- - lib/libxml/xquery.rb
36
+ - lib/xml/xquery.rb
37
37
  - lib/libxml/xquery/uniqueness.rb
38
- - lib/libxml/xquery/string_representation.rb
39
- - lib/libxml/xquery/version.rb
40
38
  - lib/libxml/xquery/namespaces.rb
39
+ - lib/libxml/xquery/version.rb
40
+ - lib/libxml/xquery/string_representation.rb
41
41
  - lib/libxml/xquery/enhanced_find.rb
42
- - lib/xml/xquery.rb
43
- - COPYING
42
+ - lib/libxml/xquery.rb
44
43
  - Rakefile
45
- - README
44
+ - HEADER
45
+ - COPYING
46
46
  - ChangeLog
47
+ - README
47
48
  - spec/spec_helper.rb
48
49
  - spec/xquery_spec.rb
49
- - test_data/play.dtd
50
50
  - test_data/hamlet.xml
51
+ - test_data/play.dtd
51
52
  has_rdoc: true
52
- homepage: http://prometheus.rubyforge.org/doc
53
+ homepage: http://prometheus.rubyforge.org/ruby-xquery
53
54
  post_install_message:
54
55
  rdoc_options:
56
+ - --main
57
+ - README
58
+ - --line-numbers
55
59
  - --inline-source
56
- - --all
57
60
  - --title
58
61
  - ruby-xquery Application documentation
59
- - --main
60
- - README
62
+ - --all
61
63
  - --charset
62
64
  - UTF-8
63
- - --line-numbers
64
65
  require_paths:
65
66
  - lib
66
67
  required_ruby_version: !ruby/object:Gem::Requirement