JustinLove / bondage

class Binding stinks. module Bondage stinks less.

This URL has Read+Write access

name age message
file .gitignore Sun Nov 08 16:42:42 -0800 2009 ignore pkg directory [JustinLove]
file History.txt Sun Nov 08 17:34:45 -0800 2009 update gem version [JustinLove]
file Manifest.txt Sun Nov 08 17:28:00 -0800 2009 Update newgem [JustinLove]
file README.rdoc Sun Nov 08 17:34:24 -0800 2009 rebuild readme [JustinLove]
file Rakefile Sun Nov 08 17:28:00 -0800 2009 Update newgem [JustinLove]
file bondage.gemspec Sun Nov 08 17:34:45 -0800 2009 update gem version [JustinLove]
file description.rdoc Sun Feb 15 08:28:27 -0800 2009 redid readme system to generate file from pieces [JustinLove]
directory frag/ Sun Nov 08 17:28:00 -0800 2009 Update newgem [JustinLove]
directory lib/ Sun Nov 08 17:34:45 -0800 2009 update gem version [JustinLove]
directory script/ Fri Feb 13 07:01:52 -0800 2009 blank gem [JustinLove]
directory spec/ Sun Feb 15 19:36:24 -0800 2009 fix specs; was getting different array ordering... [JustinLove]
file synopsis.rb Sun Feb 15 19:43:39 -0800 2009 add an example to synopsis [JustinLove]
directory tasks/ Sun Nov 08 17:34:24 -0800 2009 rebuild readme [JustinLove]
README.rdoc

bondage

DESCRIPTION:

class Binding stinks, module Bondage stinks less. Bondage provides hashes of local, global, instance, etc. variables, and provides the Enumerable interface for locals directly. It also provides [] syntax to get/set binding variables directly.

FEATURES/PROBLEMS:

  • Note that hashes provided by locals & co are plain old hashes (writing to them won’t affect the binding) with references to the real data (modifying the values themselves will be reflected in the binding.)
  • Warning: Uses eval internally, so don’t use it with untrusted data. An attempt is made to sanitize identifier names. However, if your implementation doesn’t support ObjectSpace, the second argument to []= is still evaled directly.

SYNOPSIS:

  require 'lib/bondage'

  x = 1
  y = 2

  b = binding.extend(Bondage)

  # return variable hashes
  p b.locals # => {:x=>1, :y=>2, :b=>#<Binding:0xxxxxxx>}
  p b.globals[:$PROGRAM_NAME] # => "synopis.rb"

  #concerned about the environement?
  p b.globals # => {:#!=>nil, :$SAFE=>0, ...}

  # set and retrieve
  b[:z] = ["one", "two", "three"]
  p b[:$LOAD_PATH] # => ["./lib", ...]
  p b[:@pizza] # => nil

  # supports Enumerable over locals
  p b.find {|var, value| value == 1 } # => [:x, 1]

  # Or if you're feeling really kinky
  class Binding
    include Bondage
  end

REQUIREMENTS:

Tested under Ruby 1.8.7.

INSTALL:

sudo gem install bondage

LICENSE:

(The MIT License)

Copyright © 2009 Justin Love

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.