Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

contineo

Package Overview
Dependencies
Maintainers
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contineo

  • 0.1.3
  • Rubygems
  • Socket score

Version published
Maintainers
5
Created
Source

contineo

Build Status Gem Version

Hold together all your databases in a rails application with ease!

Supports

Rails 3+ and Rails 4.0.0

Installation

Add this line to your Rails application's Gemfile:

gem 'contineo'

And then run:

$ bundle install

Supported Databases

We have tested this with sqlite3 (to make sure it works in development mode), MySQL and Oracle. Feel free to fork and add the database you have integrated with Contineo in this list!

Usage

Convention here is, simply you create configuration sections in database.yml, as:

<db_name_you_call_it>_<environment>

and you will get a connection class to this database as:

DbNameYouCallIt

Sample database.yml:

development:
  adapter: sqlite3
  database: db/development.sqlite3
  pool: 5
  timeout: 5000

# Look at the convention <db_name>_<environment>
other_development:
  adapter: oracle_enhanced
  encoding: utf8
  database: other_whatever_server:port/other_whatever_name_of_db
  username: fake_username
  password: encrypted_password

# Look at the convention <db_name>_<environment>
another_development:
  adapter: mysql2
  database: another_db
  username: another_fake_username
  password: another_encrypted_password
  host:  host_name
  pool: 5
  timeout: 5000

Now Access db with ease

# Create your model as:
class Teacher < Other
end

class Doctor < Another
end

That's it!

Contributing

  1. Fork it
  2. Create your feature branch - git checkout -b my-new-feature
  3. Commit your changes - git commit -m 'Add some feature'
  4. Push to the branch - git push origin my-new-feature
  5. Create new Pull Request

FAQs

Package last updated on 05 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc