Skip to content

Instantly share code, notes, and snippets.

@bradland
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradland/7fc20accdf3ddd8e8a60 to your computer and use it in GitHub Desktop.
Save bradland/7fc20accdf3ddd8e8a60 to your computer and use it in GitHub Desktop.
class Foo
attr_accessor :baz, :qux, :quux, :corge, :grault, :garply, :waldo, :fred, :plugh, :xyzzy, :thud
def initialize(bar)
@bar = bar
@baz = 'baz'
@qux = 'qux'
@quux = 'quux'
@corge = 'corge'
@grault = 'grault'
@garply = 'garply'
@waldo = 'waldo'
@fred = 'fred'
@plugh = 'plugh'
@xyzzy = 'xyzzy'
@thud = 'thud'
end
end
foo = Foo.new((1..100).to_a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment