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

kabuki-heresy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kabuki-heresy

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= heresy

Heresy is a schema free wrapper around your database, heavily inspired by both CouchDB and FriendFeed[1]. You create Heresy models that work with generic schema-less tables.

class Entry < Heresy::Model fields do |f| f.string :title end end

Entry.schema.create # create the table in the database

This class will use a table that looks like this:

create_table :entries do |t| t.primary_key :id, :int t.column :uuid, :binary t.column :updated_at, :timestamp t.column :body, :blob end

Now you can create and retrieve models:

@entry = Entry.new :title => 'testing' @entry.save

@entry = Entry.find('some_entry_uuid') @entry.body = "updated" @entry.save

UUIDs are automatically generated and used as the main ID for each record.

1: http://bret.appspot.com/entry/how-friendfeed-uses-mysql

== TODO

  • Indexes
  • Associations
  • Timezone conversions

== NOT TODO

  • Validations
  • Callbacks

Use Validateable, ActiveSupport::Callbacks, ActiveModel, etc

== Copyright

Copyright (c) 2009 kabuki. See LICENSE for details.

FAQs

Package last updated on 11 Aug 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