Rubymine 2024.3 bundles Grazie Lite by default. You need to enabled "German" under Settings/Preferences | Editor | Natural Languages.
Geordi uses parallel_tests if available for running the test suite. To debug an application it is very unhandy to...
S3cmd is a free command line tool and client for uploading, retrieving and managing data in Amazon S3. S3cmd reads...
Normally you can list all gems of the current ruby version with gem list, which also includes the gems of...
There seems to be no built-in matcher in RSpec to check if a string contains terms in the desired...
In this example we assume that not only the storage gem changes but also the file structure on disc.
Geordi's cucumber command has a --rerun option that reruns failing tests the given number of times. Usage: geordi cucumber...
If you use transactional_fixtures or the database_cleaner gem with strategy :transaction, after_commit callbacks will not be fired...
Let's say you have a gem which has the following module: module SuperClient def self.foo 'Foo' end
We want to keep a changelog for all gems we maintain. There are some good practices for writing a changelog...
Create a user without password (recommended) Replace newuser with your desired username: mysql -uroot -p CREATE USER 'newuser'@'localhost' IDENTIFIED...
Lets say we have a user with a contract whereas contract is a mounted carrierwave file. Now we want to...
We often use the Then console step from spreewald in combination with geordi vnc from geordi to debug tests within...
Bundler::GemRequireError: There was an error while trying to load the gem 'mysql2'. Gem Load Error is: Incorrect MySQL client...
Trying to open a vnc window with geordi geordi vnc ended up with this error: > VNC viewer could not be...
mysql> SELECT @@global.version; +------------------+ | @@global.version | +------------------+ | 5.6.30 | +------------------+ 1 row in set (0,00 sec) MySQL 5.6 Reference Manual says "BLOB and TEXT...
Use bundler > 1.15 to fix Gem::LOADED_SPECS_MUTEX (NameError). Given the following project: ruby -v ruby 1.8.7
Enumerable#all? returns true for an empty collection. This totally makes sense but you have to think about it when...
If your Rails application is using Webpack you need to serve assets on the same host as you application runs...
This cucumber step is useful for testing an image (looking at the src of the image). Then(/^I should see...
This is an extension to PostgreSQL vs MySQL: How to UPDATE using a JOIN. UPDATE employees SET department_name = departments.name...
About-Payments is here to help you to accept payments online and find the best payment service provider for your...
To check which elements an ActiveRecord relation contains use the contain_exactly matcher. describe User do let!(:admin) { create(:user...
This is a small example on how you can check if your Postgres index can be used by a specific...