RubyMine: Set specific Ruby version per project

I was experiencing the following problem: It seems your ruby installation is missing psych (for YAML output). To eliminate this...

For string columns, MySQL indexes the left side of a string. That means an index can speed a like query...

github.com

In Selenium features the server and client are running in separate processes. Therefore, when mocking time with a tool like...

blog.hashrocket.com

Testing with real live production data does come with at least one catch. All those real live users in your...

So you got this error, even though your Gemfile bundles mysql2: !!! Missing the mysql2 gem. Add it to your Gemfile...

Our rspec_candy gem now gives you three matchers: be_same_number_as Tests if the given number is the...

You can use String#demodulize from ActiveSupport: "ActiveRecord::CoreExtensions::String::Inflections".demodulize # => "Inflections" "Inflections".demodulize # => "Inflections"

When you develop a gem and you have a Gemfile in your project directory, you might be surprised that your...

makandra dev

Consul 0.4.0 comes with some new features. Dependencies Consul no longer requires assignable_values, it's optional for when you...

github.com

paper_trail is an excellent gem to track record versions and changes. You almost never want to reimplement something like...

The will_paginate gem will show a default of 30 records per page. If you want to test pagination in...

Sometimes, you may want to open up a second database connection, to a read slave or another database. When doing...

For my Gem Session project Holly I ran the Ironman of drag'n'drop implementations: Dragging in nested lists

Today, I ran into trouble on a fairly fresh installed VM, running Ubuntu. I tried to bundle install and got...

stackoverflow.com

When you use method_missing to have an object return something on a method call, always make sure you also...

When refactoring a sequence of steps to a new, more descriptive step, you can use the steps method and Ruby...

makandra dev

You can specify the version of bundler to execute a command (most often you need an older version of bundler...

makandra dev
ruby-lang.org

It's the last bugfix release. We will get another year of security fixes, then no more patches.

makandracards.com

Updated the card with our current best practice (shared app code and specs via symlinks).

makandra dev

has_defaults is now a gem, no longer a plugin. The plugin version no longer exists. Note that plugins are...

ActiveSupport::Memoizable will be removed from Rails and has a lot of strange caveats that will ruin your day.

stackoverflow.com

Rack has a limit for how many form parameters it will parse. This limit is 65536 by default.

makandracards.com

I posted a solution which is awesome and also does natural sorting.