Actionwebservice and rails 3 /

I am working on a rails 3 project which is trying to install actionwebservice using:

gem 'rails', '3.0.4'
gem 'actionwebservice', :git => 'https://github.com/ywen/actionwebservice.git'

And I get the error message:

Bundler could not find compatible versions for gem "activerecord":
  In Gemfile:
    actionwebservice depends on
      activerecord (= 2.3.5)

    rails (= 3.0.4) depends on
      activerecord (3.0.4)

Any suggestions?

+3
source share
2 answers

I had the same problem. Try this stone: https://github.com/dnordberg/actionwebservice

gem 'actionwebservice', :git => "git://github.com/dnordberg/actionwebservice.git"
+2
source

Try using

gem install actionwebservice --include-dependencies
+1
source

Source: https://habr.com/ru/post/1795512/


All Articles