GithubHelp home page GithubHelp logo

ihid / belongs_to_enum Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 124 KB

Adds belongs_to_enum to ActiveRecord, which allows you to belong to a .net style enum.

Home Page: http://www.ihid.co.uk/projects/belongs_to_enum

Ruby 100.00%

belongs_to_enum's Introduction

Adds support for transparent enums to ActiveRecord.
Adds a belongs_to_enum to ActiveRecord that takes an array of possible values.

Usage
---------
Use in Rails 3 app. Add to bundler:
gem "belongs_to_enum"

Tests
---------
Uses rspec for testing.
Run tests with rspec spec/*

Todo
---------
* Add scopes

Example
---------

Usage:

    In models:
        scope :admin, where(:role_id => User::Role.admin)
    
    In views:
        =f.select(:role, User::Role.pretty_items)
        -User::Role.each do |role_title, role_id|
            #{role_title} (#{role_id})
        
Classes:
    class User < ActiveRecord::Base
      belongs_to_enum :role, [:normal, :admin, :superadmin, :suspended]
    end

Database Schema:

    create_table :users do |t|
      t.float :role_id
    end

belongs_to_enum's People

Contributors

ihid avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.