sax-machine-patched 0.2.0.rc2

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.
@@ -0,0 +1,15 @@
1
+ begin
2
+ require 'simplecov'
3
+ SimpleCov.start do
4
+ add_filter "/spec/"
5
+ end
6
+ rescue LoadError
7
+ end
8
+
9
+ require File.expand_path(File.dirname(__FILE__) + '/../lib/sax-machine')
10
+
11
+ RSpec.configure do |config|
12
+ config.treat_symbols_as_metadata_keys_with_true_values = true
13
+ config.run_all_when_everything_filtered = true
14
+ config.filter_run :focus
15
+ end
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sax-machine-patched
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0.rc2
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - Paul Dix
9
+ - Julien Kirch
10
+ - Ezekiel Templin
11
+ autorequire:
12
+ bindir: bin
13
+ cert_chain: []
14
+ date: 2013-07-23 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: nokogiri
18
+ requirement: !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - '='
22
+ - !ruby/object:Gem::Version
23
+ version: 1.6.0
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - '='
30
+ - !ruby/object:Gem::Version
31
+ version: 1.6.0
32
+ - !ruby/object:Gem::Dependency
33
+ name: rspec
34
+ requirement: !ruby/object:Gem::Requirement
35
+ none: false
36
+ requirements:
37
+ - - ~>
38
+ - !ruby/object:Gem::Version
39
+ version: 2.13.0
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 2.13.0
48
+ description:
49
+ email: paul@pauldix.net
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - .gitignore
55
+ - .rspec
56
+ - .travis.yml
57
+ - Gemfile
58
+ - Guardfile
59
+ - HISTORY.md
60
+ - README.md
61
+ - Rakefile
62
+ - lib/sax-machine.rb
63
+ - lib/sax-machine/sax_ancestor_config.rb
64
+ - lib/sax-machine/sax_attribute_config.rb
65
+ - lib/sax-machine/sax_collection_config.rb
66
+ - lib/sax-machine/sax_config.rb
67
+ - lib/sax-machine/sax_configure.rb
68
+ - lib/sax-machine/sax_document.rb
69
+ - lib/sax-machine/sax_element_config.rb
70
+ - lib/sax-machine/sax_element_value_config.rb
71
+ - lib/sax-machine/sax_handler.rb
72
+ - lib/sax-machine/version.rb
73
+ - sax-machine.gemspec
74
+ - spec/benchmarks/amazon.xml
75
+ - spec/benchmarks/benchmark.rb
76
+ - spec/benchmarks/public_timeline.xml
77
+ - spec/sax-machine/atom.xml
78
+ - spec/sax-machine/configure_sax_machine_spec.rb
79
+ - spec/sax-machine/include_sax_machine_spec.rb
80
+ - spec/sax-machine/sax_document_spec.rb
81
+ - spec/spec_helper.rb
82
+ homepage: http://github.com/pauldix/sax-machine
83
+ licenses:
84
+ - MIT
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ! '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ! '>'
99
+ - !ruby/object:Gem::Version
100
+ version: 1.3.1
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 1.8.23
104
+ signing_key:
105
+ specification_version: 3
106
+ summary: Declarative SAX Parsing with Nokogiri Patch release
107
+ test_files:
108
+ - spec/benchmarks/amazon.xml
109
+ - spec/benchmarks/benchmark.rb
110
+ - spec/benchmarks/public_timeline.xml
111
+ - spec/sax-machine/atom.xml
112
+ - spec/sax-machine/configure_sax_machine_spec.rb
113
+ - spec/sax-machine/include_sax_machine_spec.rb
114
+ - spec/sax-machine/sax_document_spec.rb
115
+ - spec/spec_helper.rb