Coder Social home page Coder Social logo

bouncer's Introduction

Bouncer

Finer grained method visibility for Ruby.

Ruby's method visibility is a little bit restrictive. There's public and private, which are pretty blunt tools, either allowing everyone to call a method, or no one but the instance (There's also protected, whose entire purpose seems to be to facilitate comparison operators and... not much else).

This lack of granularity isn't all that much different from other languages, but Ruby gives us the power to change that. Mostly. Bouncer's a module that when includeed on a class, lets you make a method callable visible to a subset of possible callers, depending on their class.

Example

Using Rails as our starting point, perhaps you have some methods on a model that you only want called from the Controllers, and not other models.

class MyModel < ActiveRecord::Base
  include Bouncer

  callable_by ActionController::Base, def some_controller_only_method
    puts "I can't be called by a model!"
  end

  # OR:
  def another_controller_only_method
    puts "I can't be called by a model!"
  end
  callable_by :another_controller_only_method, ActionController::Base 

  # OR 2: Electric Boogaloo
  # All methods defined after this can only be called by Controllers
  callable_by ActionController::Base

  def one_more_controller_only_method
    puts "I can't be called by a model!"
  end

  # reset things like this:
  callable_by_any
end
  

bouncer's People

Contributors

akavi avatar

Watchers

 avatar James Cloos 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.