No commit activity in last 3 years
No release in over 3 years
HTTP persistent connection support for ActiveResource
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

ActiveResource::Persistent

Build Status

HTTP persistent connection support for ActiveResource.

Tested with ActiveResource:

  • v2.3.10
  • v3.0.10
  • v3.1.4
  • v3.2.3
  • v3.2.9
  • v4.1.0

Installation

Add this line to your application's Gemfile:

gem 'activeresource-persistent', :require => 'active_resource/persistent'

And then execute:

$ bundle

Or install it yourself as:

$ gem install activeresource-persistent

Usage

Works out of box after adding:

require 'active_resource/persistent'

SSL Support

Supported ActiveResource ssl options:

  • ca_file
  • cert
  • cert_store
  • key
  • verify_mode
  • verify_callback

Unsupported ActiveResource ssl options:

  • ca_path
  • ssl_timeout
  • verify_depth

Testing

Currently we use passenger server because it provides REMOTE_PORT enviroment variable. Thus we can ensure that connections are persistent.

Before start suite ensure that passenger gem are installed correctly.

$ BUNDLE_GEMFILE=Gemfile_4.1.0 bundle
$ BUNDLE_GEMFILE=Gemfile_4.1.0 bundle exec passenger start

Run tests with:

$ BUNDLE_GEMFILE=Gemfile_3.2.9 bundle
$ BUNDLE_GEMFILE=Gemfile_3.2.9 bundle exec rspec -fs -c spec

$ rake test:gemfile_2.3.10  # Testing with Gemfile_2.3.10
$ rake test:gemfile_3.0.10  # Testing with Gemfile_3.0.10
$ rake test:gemfile_3.1.4   # Testing with Gemfile_3.1.4
$ rake test:gemfile_3.2.3   # Testing with Gemfile_3.2.3
$ rake test:gemfile_3.2.9   # Testing with Gemfile_3.2.9
$ rake test:gemfile_4.1.0   # Testing with Gemfile_4.1.0

Authors

License

References