8 Followers
7 Following
6 Posts
The hostile takeover of the RubyGems and Bundler code has been a long time coming. Corporate influence of major open-source Ruby projects has been growing for a while. This fiasco now makes the corporate control obvious. If you maintain a popular Ruby project and want to keep the F in FOSS, you should have had a democratic governance structure *yesterday*, one that is *explicitly* against corporate control of the project. You have to organize and fight to maintain independence. #ruby #rubygems

How does everyone order their methods in a class?

# Alphabetical
def a; end
def b; end

# Importance
def business_logic; end
def utility_method; end

# Invocation sequence
def call
called_first
called_second
end

def called_first; end
def called_second; end