rails-xmlrpc 0.3.5 → 0.3.6

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.
@@ -64,7 +64,7 @@ module ActionController
64
64
  self.class.instance_methods(false).each do |method|
65
65
  unless ['xe_index', 'xe_method_prefix', 'xe_method_list'].member?(method)
66
66
  puts "Adding XMLRPC method for #{method.to_s}"
67
- @xmlrpc_server.add_handler(xe_method_prefix + method) do |*args|
67
+ @xmlrpc_server.add_handler(xe_method_prefix + method.to_s) do |*args|
68
68
  self.send(method.to_sym, *args)
69
69
  end
70
70
  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.5"
5
+ s.version = "0.3.6"
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-11-31}
9
+ s.date = %q{2011-11-06}
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: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 5
10
- version: 0.3.5
9
+ - 6
10
+ version: 0.3.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Aleksei Kvitinskii
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-12-01 00:00:00 Z
19
+ date: 2011-11-06 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: thoughtbot-shoulda