xml-sax-machines 0.4.0 → 0.4.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.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 4
4
- :patch: 0
4
+ :patch: 1
5
5
  :build:
@@ -46,10 +46,6 @@ module XML
46
46
  @filter.end_element(name) if @filter
47
47
  end
48
48
 
49
- def end_element_namespace(name, prefix = nil, uri = nil) #:nodoc:
50
- @filter.end_element_namespace(name, attributes, prefix, uri, ns) if @filter
51
- end
52
-
53
49
  def error(string) #:nodoc:
54
50
  @filter.error(string) if @filter
55
51
  end
@@ -59,21 +55,13 @@ module XML
59
55
  end
60
56
 
61
57
  def start_element(name, attributes = []) #:nodoc:
62
- @filter.start_element(name, attributes) if @filter
63
- end
64
-
65
- def start_element_namespace(name, attributes = [], prefix = nil, uri = nil, ns = []) #:nodoc:
66
- @filter.start_element_namespace(name, attributes, prefix, uri, ns) if @filter
58
+ @filter.start_element(name, attributes = []) if @filter
67
59
  end
68
60
 
69
61
  def warning(string) #:nodoc:
70
62
  @filter.warning(string) if @filter
71
63
  end
72
64
 
73
- def xmldecl(version, encoding, standalone)
74
- @filter.xmldecl(version, encoding, standalone) if @filter
75
- end
76
-
77
65
  end # Filter
78
66
  end # SAX
79
67
  end # XML
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{xml-sax-machines}
8
- s.version = "0.4.0"
8
+ s.version = "0.4.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Shane Hanna"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 0
9
- version: 0.4.0
8
+ - 1
9
+ version: 0.4.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Shane Hanna