Categories: None [Edit]

better-initialize

https://rubygems.org/gems/better-initialize
https://github.com/huned/better-initialize
# better-initialize A friendlier, dependency-free initialize method for ruby objects. ## Usage Gemfile: gem 'better-initialize', github: 'huned/better-initialize' Code: require 'better_initialize' class Pizza include BetterInitialize attr_accessor :size, :toppings end # Instantiate with attributes. Pizza.new(size: :large, toppings: %i[mushrooms peppers]) # Instantiate with attributes and a block. Pizza.new(size: :large) do |pizza| pizza.toppings = %w[mushrooms peppers] Oven.bake!(pizza) end ## Development Environment (OSX) brew install rbenv ruby-build git clone [email protected]:huned/better-initialize rbenv install -k `cat .ruby-version` bundle exec ruby test/run.rb

Total

Ranking: 141,755 of 180,661
Downloads: 3,566

Daily

Ranking: 56,155 of 180,641
Downloads: 1

Depended by

RankDownloadsName

Depends on

RankDownloadsName
93324,147,343byebug
63659,782,429test-unit

Owners

#GravatarHandle
1iconhuned4real