rails-xmlrpc 0.3.2 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -40,7 +40,7 @@ module ActionController
40
40
  module InstanceMethods
41
41
  # TODO: add route automatically for this?
42
42
  def xe_index
43
- result = @xmlrpc_server.process(request.body)
43
+ result = @xmlrpc_server.process(request.body.read) # add .read to guarantee correct source for REXML
44
44
  puts "\n\n----- BEGIN RESULT -----\n#{result}----- END RESULT -----\n\n"
45
45
  render :text => result, :content_type => 'text/xml'
46
46
  end
data/rails-xmlrpc.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rails-xmlrpc}
5
- s.version = "0.3.2"
5
+ s.version = "0.3.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Aleksei Kvitinskii","Will Koffel"]
9
- s.date = %q{2011-04-10}
9
+ s.date = %q{2011-11-31}
10
10
  s.description = %q{Gem allows you to use our RubyOnRails project like XMLRPC server. Support Rails 3.}
11
11
  s.email = %q{aleksei.wm@gmail.com}
12
12
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-xmlrpc
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 2
10
- version: 0.3.2
9
+ - 5
10
+ version: 0.3.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Aleksei Kvitinskii
@@ -16,8 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-04-10 00:00:00 +03:00
20
- default_executable:
19
+ date: 2011-12-01 00:00:00 Z
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency
23
22
  name: thoughtbot-shoulda
@@ -51,7 +50,6 @@ files:
51
50
  - test/helper.rb
52
51
  - test/test_rails-xmlrpc.rb
53
52
  - rails-xmlrpc.gemspec
54
- has_rdoc: true
55
53
  homepage: http://github.com/Axy/rails-xmlrpc
56
54
  licenses: []
57
55
 
@@ -81,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
79
  requirements: []
82
80
 
83
81
  rubyforge_project:
84
- rubygems_version: 1.4.1
82
+ rubygems_version: 1.8.11
85
83
  signing_key:
86
84
  specification_version: 3
87
85
  summary: Gem allows you to use our RubyOnRails project like XMLRPC server. Support Rails 3.