Giter Site home page Giter Site logo

activerecord-attribute_override's Introduction

ActiveRecord - Attribute Override

A gem that adds two methods to ActiveRecord::Base that let you override attributes of an ActiveRecord model instance much more easily. It also allows you to specify the Rails environments in which the attributes should be overriden.

The attributes are overriden only in the specified model instance.

Setup

In your Rails 3+ project, add this to your Gemfile:

gem 'activerecord-attribute_override'

For the development version:

gem 'activerecord-attribute_override', :git => 'git://github.com/garysweaver/activerecord-attribute_override.git'

Then run:

bundle install

Usage

Override my_attribute_name method in my_model instance to return 'some value':

my_model.override_attribute(:my_attribute_name, 'some value')

Override my_attribute_name method in my_model instance to return 'some value' only when Rails.env is 'development':

my_model.override_attribute(:my_attribute_name, 'some value', :development)

Override my_attribute_name method in my_model instance to return 'some value' only when Rails.env is 'test' or 'production':

my_model.override_attribute(:my_attribute_name, 'some value', [:test, :production])

Override my_attribute_name and my_other_attribute_name:

my_model.override_attributes({my_attribute_name: 'some value', my_other_attribute_name: 'some other value'})

Override my_attribute_name and my_other_attribute_name only when Rails.env is 'development':

my_model.override_attributes({my_attribute_name: 'some value', my_other_attribute_name: 'some other value'}, :development)

Override my_attribute_name and my_other_attribute_name only when Rails.env is 'test' or 'production':

my_model.override_attributes({my_attribute_name: 'some value', my_other_attribute_name: 'some other value'}, [:test, :production])

Using Without Rails

To use without Rails, either don't specify the environment(s), or define your own Rails.env outside of Rails to return the environment of your choice like:

class Rails
  def self.env=(e); @@e = e; end
  def self.env; @@e; end
end

Rails.env = :foobar

License

Copyright (c) 2012 Gary S. Weaver, released under the MIT license.

activerecord-attribute_override's People

Contributors

garysweaver avatar

Stargazers

 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.