├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── actionpack-xml_parser.gemspec ├── gemfiles └── Gemfile-edge ├── lib ├── action_pack │ ├── xml_parser.rb │ └── xml_parser │ │ ├── railtie.rb │ │ └── version.rb └── actionpack-xml_parser.rb └── test ├── fixtures └── 500.html ├── helper.rb ├── webservice_test.rb └── xml_params_parsing_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/Rakefile -------------------------------------------------------------------------------- /actionpack-xml_parser.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/actionpack-xml_parser.gemspec -------------------------------------------------------------------------------- /gemfiles/Gemfile-edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/gemfiles/Gemfile-edge -------------------------------------------------------------------------------- /lib/action_pack/xml_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/lib/action_pack/xml_parser.rb -------------------------------------------------------------------------------- /lib/action_pack/xml_parser/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/lib/action_pack/xml_parser/railtie.rb -------------------------------------------------------------------------------- /lib/action_pack/xml_parser/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/lib/action_pack/xml_parser/version.rb -------------------------------------------------------------------------------- /lib/actionpack-xml_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/lib/actionpack-xml_parser.rb -------------------------------------------------------------------------------- /test/fixtures/500.html: -------------------------------------------------------------------------------- 1 | 500 error fixture 2 | -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/webservice_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/test/webservice_test.rb -------------------------------------------------------------------------------- /test/xml_params_parsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/actionpack-xml_parser/HEAD/test/xml_params_parsing_test.rb --------------------------------------------------------------------------------