Skip to content

kristianhellquist/Arrayr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 

Repository files navigation

Arrayr
======

Module to use for letting attributes automatically return arrays for 
comma separated values

Specify which attributes that should return array as values
and access the value by suffixing the attribute with "_multiple"

If a getter and setter doens't exists this module will create them for you.

Example 
-------

  class Foo
    include Arrayr
    attr_arrayr(:bar)
  end
  
  foo = Foo.new
  foo.bar = "zoo, zum"
  foo.bar_to_a  => ["zoo", "zum"]
     

About

Ruby module for turning strings to array

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published