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: 142,723 of 183,127
Downloads: 3,679

Daily

Ranking: 74,510 of 183,106
Downloads: 0

Depended by

RankDownloadsName

Depends on

RankDownloadsName
94357,262,932byebug
64866,362,998test-unit

Owners

#GravatarHandle
1iconhuned4real