Project

tenacity

0.06
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Tenacity provides a database client independent way of specifying simple relationships between models backed by different databases.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6.2
>= 1.0.0
~> 1.1.3
~> 1.0.2
~> 0.9.10
~> 1.6.2
~> 3.0
~> 0.12.0
>= 0.8.7
~> 0.9.9
~> 3.19.0
~> 2.11.3
~> 1.3
~> 0.6.4

Runtime

 Project Readme

Tenacity¶ ↑

Tenacity inactive¶ ↑

Please be aware that tenacity is an inactive project. I am not actively working on it, nor am I accepting pull requests at the moment. If you are interested in taking over the project, please let me know.

Description¶ ↑

A database client independent way of managing relationships between models backed by different databases.

It is sometimes necessary, or advantageous, to use more than one database in a given application (polyglot persistence). However, most database clients do not support inter-database relationships. So, writing code that manages relationships between objects backed by different databases hasn’t been nearly as easy as writing code to manage relationships between objects in the same database.

Tenacity aims to address this by providing a database client independent way of managing relationships between models backed by different databases.

Tenacity is heavily based on ActiveRecord’s associations, and aims to behave in much the same way, supporting many of the same options.

Example¶ ↑

class Car
  include MongoMapper::Document
  include Tenacity

  t_has_many :wheels
  t_has_one  :dashboard
end

class Wheel < ActiveRecord::Base
  include Tenacity

  t_belongs_to :car
end

class Dashboard < CouchRest::Model::Base
  include Tenacity
  use_database MY_COUCHDB_DATABASE

  t_belongs_to :car
end

car = Car.create

# Set the related object
dashboard = Dashboard.create({})
car.dashboard = dashboard
car.save

# Fetch related object from the respective database
car.dashboard

# Fetch related object id
car.dashboard.car_id

# Set related objects
wheel_1 = Wheel.create
wheel_2 = Wheel.create
wheel_3 = Wheel.create
wheels = [wheel_1, wheel_2, wheel_3]
car.wheels = wheels
car.save

wheel_1.car_id    # car.id

# Fetch array of related objects from the respective database
car.wheels        # [wheel_1, wheel_2, wheel_3]

# Fetch ids of related objects from the database
car.wheel_ids     # [wheel_1.id, wheel_2.id, wheel_3.id]

# Add a related object to the collection
new_wheel = Wheel.create
car.wheels << new_wheel
car.save
car.wheels        # [wheel_1, wheel_2, wheel_3, new_wheel]

Additional Usage Details¶ ↑

  • The directories that contain your model classes must be in your load path in order for Tenacity to find them.

Supported Database Clients¶ ↑

  • ActiveRecord

  • CouchRest (CouchRest::Model and ExtendedDocument)

  • DataMapper

  • MongoMapper

  • Mongoid

  • Ripple

  • Sequel

  • Toystore

See EXTEND.rdoc for information on extending Tenacity to work with other database clients.

Documentation¶ ↑

Contributing to Tenacity¶ ↑

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it

  • Fork the project

  • Start a feature/bugfix branch

  • Commit and push until you are happy with your contribution

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Run the tests in ruby 1.8.7 and 1.9.2 on the master and active_support_2_x branches

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Development¶ ↑

  • Ruby 1.9.3 is required.

  • SQLite, MongoDB, Riak, and CouchDB must be installed, configured, and running.

  • Install the dependencies

    bundle install

  • Run the tests

    rake test

  • Code away!

Copyright © 2012 John Wood. See LICENSE.txt for further details.