• Stars
    star
    105
  • Rank 317,843 (Top 7 %)
  • Language
    Ruby
  • License
    MIT License
  • Created almost 13 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Collection of command line tools used in our daily work with Ruby, Rails and Linux.

Geordi Tests

Geordi is a collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.

Installation:

gem install geordi

geordi

The geordi binary holds most of the utility commands. For the few other binaries, see the bottom of this file.

You may abbreviate commands by typing only their first letters, e.g. geordi con will boot a development console, geordi set -t will setup a project and run tests afterwards.

You can always run geordi help <command> to quickly look up command help.

geordi branch

Check out a feature branch based on a story from Pivotal Tracker.

Example: geordi branch

On the first execution we ask for your Pivotal Tracker API token and for your Git user initials. Both will be stored in ~/.config/geordi/global.yml.

Options

  • -m, [--from-master], [--no-from-master]: Branch from master instead of the current branch

geordi capistrano COMMAND

Run a capistrano command on all deploy targets.

Example: geordi capistrano deploy

geordi chromedriver-update

Update the chromedriver.

Example: geordi chromedriver_update

This command will find and install the matching chromedriver for the currently installed Chrome.

Setting auto_update_chromedriver to true in your global Geordi config file (~/.config/geordi/global.yml), will automatically update chromedriver before cucumber tests if a newer chromedriver version is available.

Options

  • [--quiet-if-matching], [--no-quiet-if-matching]: Suppress notification if chromedriver is already on the latest version

geordi clean

Remove unneeded files from the current directory.

geordi commit

Commit using a story title from Pivotal Tracker.

Example: geordi commit

Any extra arguments are forwarded to git commit -m <message>.

On the first execution we ask for your Pivotal Tracker API token. It will be stored in ~/.config/geordi/global.yml.

geordi console [TARGET]

Open a Rails console locally or on a Capistrano deploy target.

Local (development): geordi console

Remote: geordi console staging

Selecting the server: geordi console staging -s shows a menu with all available servers. When passed a number, directly connects to the selected server.

Options

  • -s, [--select-server=[SERVER_NUMBER]]: Select a server to connect to

geordi cucumber [FILES and OPTIONS]

Run Cucumber features.

Example: geordi cucumber features/authentication_feature:3

Runs Cucumber with bundle exec, using parallel tests and with support for re-running failed scenarios.

Any unknown option will be passed through to Cucumber, e.g. --format=pretty. Make sure to connect option and value with an equals sign, i.e. have each option a contiguous string.

In order to limit processes in a parallel run, you can set an environment variable like this: PARALLEL_TEST_PROCESSORS=6 geordi cucumber

Options

  • -m, [--modified], [--no-modified]: Run all modified features
  • -c, [--containing=STRING]: Run all features that contain STRING
  • -v, [--verbose], [--no-verbose]: Show the test run command
  • -d, [--debug], [--no-debug]: Run Cucumber with -f pretty -b, which helps hunting down bugs
  • -r, [--rerun=N]: Rerun features up to N times while failing

geordi delete-dumps [DIRECTORY]

Delete database dump files (*.dump).

Example: geordi delete-dumps or geordi delete-dumps ~/tmp/dumps

Recursively searches for files ending in .dump and offers to delete them. When no argument is given, two default directories are searched for dump files: the current working directory and ~/dumps (for dumps created with geordi).

Will ask for confirmation before actually deleting files.

geordi deploy [STAGE]

Guided deployment across branches.

Example: geordi deploy or geordi deploy p[roduction] or geordi deploy --current-branch

Merge, push and deploy with a single command! It always tells what it will do before it does it. There are different scenarios where this command is handy:

  • Production deploy: From the master branch, run geordi deploy production. This will merge master to production, push and deploy to production.

  • Feature branch deploy: From a feature branch, run geordi deploy staging. This will merge the feature branch to master, push and deploy to staging.

    To deploy a feature branch directly without merging, run geordi deploy --current-branch. This feature depends on the environment variable DEPLOY_BRANCH to be picked up in the respective deploy file.

  • Simple deploy: If the source branch matches the target branch, merging will be skipped.

Calling the command without arguments will infer the target stage from the current branch and fall back to master/staging.

Finds available Capistrano stages by their prefix, e.g. geordi deploy p will deploy production, geordi deploy mak will deploy a makandra stage if there is a file config/deploy/makandra.rb.

When your project is running Capistrano 3, deployment will use cap deploy instead of cap deploy:migrations. You can force using deploy by passing the -M option: geordi deploy -M staging.

Options

  • -M, [--no-migrations], [--no-no-migrations]: Run cap deploy instead of cap deploy:migrations
  • -c, [--current-branch], [--no-current-branch]: Set DEPLOY_BRANCH to the current branch during deploy

geordi drop-databases

Interactively delete local databases.

Example: geordi drop_databases

Check both MySQL/MariaDB and Postgres on the machine running geordi for databases and offer to delete them. Excluded are databases that are whitelisted. This comes in handy when you're keeping your currently active projects in the whitelist files and perform regular housekeeping with Geordi.

Geordi will ask for confirmation before actually dropping databases and will offer to edit the whitelist instead.

Options

  • -P, [--postgres-only], [--no-postgres-only]: Only clean Postgres
  • -M, [--mysql-only], [--no-mysql-only]: Only clean MySQL/MariaDB
  • [--postgres=PORT_OR_SOCKET]: Use Postgres port or socket
  • [--mysql=PORT_OR_SOCKET]: Use MySQL/MariaDB port or socket

geordi dump [TARGET]

Handle (remote) database dumps.

geordi dump (without arguments) dumps the development database with dumple.

geordi dump -l tmp/staging.dump (with the --load option) sources the specified dump file into the development database.

geordi dump staging (with a Capistrano deploy target) remotely dumps the specified target's database and downloads it to tmp/.

geordi dump staging -l (with a Capistrano deploy target and the --load option) sources the dump into the development database after downloading it.

If you are using multiple databases per environment, Geordi defaults to the "primary" database, or the first entry in database.yml. To target a specific database, pass the database name like this:

geordi dump -d primary

When used with the blank load option ("dump and source"), the database option will be respected both for the remote and the local database. If these should not match, please issue separate commands for dumping (dump -d) and sourcing (dump -l -d).

Options

  • -l, [--load=[DUMP_FILE]]: Load a dump
  • -d, [--database=NAME]: Target database, if there are multiple databases

geordi help [COMMAND]

Describe available commands or one specific command.

geordi migrate

Migrate all databases.

Example: geordi migrate

If you are using parallel_tests, this runs migrations in your development environment and rake parallel:prepare afterwards. Otherwise, invokes geordi rake with db:migrate.

geordi png-optimize PATH

Optimize .png files.

Example: geordi png-optimize some/directory

  • Removes color profiles: cHRM, sRGB, gAMA, ICC, etc.
  • Eliminates unused colors and reduces bit-depth (if possible)
  • May reduce PNG file size lossless

geordi rake TASK

Run a rake task in several Rails environments.

Example: geordi rake db:migrate

TASK is run in the following Rails environments (if present):

  • development
  • test
  • cucumber

geordi remove-executable-flags

Remove executable-flags from files that should not be executable.

geordi rspec [FILES]

Run RSpec.

Example: geordi rspec spec/models/user_spec.rb:13

Runs RSpec with version 1/2 support, parallel_tests detection and bundle exec.

In order to limit processes in a parallel run, you can set an environment variable like this: PARALLEL_TEST_PROCESSORS=6 geordi rspec

geordi security-update [STEP]

Support for performing security updates.

Preparation for security update: geordi security-update. Checks out production and pulls.

After performing the update: geordi security-update finish. Switches branches, pulls, pushes and deploys as required by our workflow.

This command tells what it will do before it does it. In detail:

  1. Ask user if tests are green

  2. Push production

  3. Check out master and pull

  4. Merge production and push in master

  5. Deploy staging, if there is a staging environment

  6. Ask user if deployment log is okay and staging application is still running

  7. Deploy other stages

  8. Ask user if deployment log is okay and application is still running on all stages

  9. Inform user about the next (manual) steps

geordi server [PORT]

Start a development server.

Options

  • -p, [--port=PORT]: Choose a port
  • -P, [--public], [--no-public]: Make the server accessible from the local network

geordi setup

Setup a project for the first time.

Example: geordi setup

Check out a repository and cd into its directory. Then let setup do the tiring work: run bundle install, create database.yml, create databases, migrate (all if applicable).

If a local bin/setup file is found, Geordi skips its routine and runs bin/setup instead.

Options

  • -d, [--dump=TARGET]: After setup, dump the TARGET db and source it into the development db
  • -t, [--test], [--no-test]: After setup, run tests

geordi shell TARGET

Open a shell on a Capistrano deploy target.

Example: geordi shell production

Selecting the server: geordi shell staging -s shows a menu with all available servers. When passed a number, directly connects to the selected server.

Options

  • -s, [--select-server=[SERVER_NUMBER]]: Select a server to connect to

geordi tests [FILES]

Run all employed tests.

When running geordi tests without any arguments, all unit tests, rspec specs and cucumber features will be run.

When passing arguments, Geordi will forward them to either rspec or cucumber, depending on what the first argument indicates.

geordi unit

Run Test::Unit.

geordi update

Bring a project up to date.

Example: geordi update

Performs: git pull, bundle install (if necessary) and migrates (if applicable).

Options

  • -d, [--dump=TARGET]: After updating, dump the TARGET db and source it into the development db
  • -t, [--test], [--no-test]: After updating, run tests

geordi version

Print the current version of geordi.

b

Runs the given command under bundle exec if a Gemfile is present in your working directory. If no Gemfile is present just runs the given command:

b spec spec/models

See http://makandracards.com/makandra/684-automatically-run-bundle-exec-if-required

dumple

Stores a timestamped database dump for the given Rails environment in ~/dumps:

dumple development

Options

  • -i: Print disk usage of ~/dumps
  • --compress: After dumping, run gzip to compress the dump in place

Contributing

When making changes to Geordi, please make sure your code is tested. Not all, but most features of Geordi can be tested. See other tests for inspiration.

Once you have completed your modifications, please update CHANGELOG and README as needed. Use rake readme to regenerate the Geordi section of the README from the command documentations.

Make sure tests are green in the oldest supported Ruby version. Before releasing a new gem version, wait for the CI results to see that tests are green in all Ruby versions.

Adding a new command

Copy lib/geordi/COMMAND_TEMPLATE to lib/geordi/commands/your_command and edit it to do what you need it to do. Please add a feature test for the new command; see features/ for inspiration.

To try Geordi locally, call it like this:

# -I means "add the following directory to load path"
ruby -Ilib exe/geordi

# From another directory
ruby -I ../geordi/lib ../geordi/exe/geordi

# With debugger
ruby -r byebug -I ../geordi/lib ../geordi/exe/geordi

You can also install Geordi locally from its project directory with rake install. Make sure to switch to the expected Ruby version before.

More Repositories

1

active_type

Make any Ruby object quack like ActiveRecord
Ruby
1,036
star
2

consul

Scope-based authorization for Ruby on Rails.
Ruby
313
star
3

query_diet

A Rails database query counter that stays out of your way
Ruby
244
star
4

aegis

Complete authorization solution for Rails that supports roles and a RESTish, resource-style declaration of permission rules.
Ruby
191
star
5

modularity

Traits and partial classes for Ruby
Ruby
174
star
6

spreewald

Our collection of useful cucumber steps.
Ruby
137
star
7

assignable_values

Restrict the values assignable to ActiveRecord attributes or associations.
Ruby
120
star
8

cucumber_factory

Create records from Cucumber features without writing step definitions.
Ruby
116
star
9

edge_rider

Power tools for Active Record relations (scopes)
Ruby
85
star
10

rspec_candy

RSpec helpers and matchers
Ruby
68
star
11

capybara-lockstep

Synchronize Capybara commands with application JavaScript and AJAX requests
Ruby
65
star
12

dusen

Comprehensive search solution for ActiveRecord and MySQL.
Ruby
61
star
13

gemika

Test a Ruby gem against multiple versions of everything
Ruby
61
star
14

minidusen

Low-tech search for ActiveRecord with MySQL or PostgreSQL
Ruby
32
star
15

superclamp

Cross-browser ellipsis on multi-line texts. Optimized for performance, and supports tags inside clamped element. Even looks better than -webkit-clamp. Supports all real browsers and IE11+.
HTML
29
star
16

apify

Apify lets you bolt a JSON-API onto your Rails application. UNMAINTAINED.
Ruby
27
star
17

katapult

Kickstart Rails development!
Ruby
22
star
18

rails_state_machine

Rails State Machine is an ActiveRecord-bound state machine.
Ruby
19
star
19

cucumber_spinner

Progress bar formatter for cucumber. Shows failing scenarios immediately and can automatically show the error page in the browser.
Ruby
16
star
20

mail_magnet

Mail Magnet allows you to override e-mail recipients in ActionMailer so all mails go to a given address. This library is UNMAINTAINED. Use the official ActionMailer::Base.register_interceptor API instead: https://makandracards.com/makandra/46094-rails-how-to-write-custom-email-interceptors
Ruby
15
star
21

safe_cookies

Have cookies as secure as possible
Ruby
11
star
22

validate-hls

Smoke test for HLS stream integrity
Ruby
9
star
23

upjs

Progressive enhancement, reloaded
8
star
24

machinist_callbacks

Callback hooks for machinist blueprints. UNMAINTAINED.
Ruby
7
star
25

pollyanna

Very simple search for your ActiveRecord models. UNMAINTAINED.
Ruby
7
star
26

makandra-rubocop

makandra's default Rubocop configuration
Ruby
6
star
27

rack-steady_etag

Rack Middleware that produces the same ETag for responses that only differ in CSRF tokens or CSP nonces.
Ruby
6
star
28

capistrano-opscomplete

Capistrano tasks for easy deployment to a makandra opscomplete environment.
Ruby
6
star
29

precompiled_assets

Serve assets without Rails doing any processing. Just requires a manifest file to resolve filenames.
Ruby
6
star
30

navy

Comprehensive solution for multi-level horizontal navigation bars. UNMAINTAINED.
Ruby
5
star
31

angular_xss

Patches rails_xss and Haml so AngularJS interpolations are auto-escaped in unsafe strings.
Ruby
5
star
32

memoized

Memoize your methods.
Ruby
5
star
33

ie-css-test

Tests Internet Explorer CSS breakage
HTML
4
star
34

cucumber_priority

Overridable step definitions for Cucumber
Ruby
4
star
35

makandra_sidekiq

Support code for sidekiq.
Ruby
3
star
36

rascal

Spin up CI environments locally
Ruby
3
star
37

esbuild-manifest-plugin

esbuild plugin to generate a manifest file for all digested files
JavaScript
2
star
38

angular-coffee-style-guide

Styleguide for Angular 1 using CoffeeScript
2
star
39

cloud_test

Ruby
2
star
40

akamai_tools

Akamai Tools provide some helpful tools, to deal with CCP and Net Storage.
Ruby
1
star
41

terraform-aws-modules

Collection of some standard modules for deployment in AWS accounts.
HCL
1
star
42

webdev101

Examples for lecture "Grundlagen der Webentwicklung" at University of Augsburg
JavaScript
1
star
43

github-actions

1
star
44

serum-rails

Scans a Rails application for metrics relevant to security audits. UNMAINTAINED.
Ruby
1
star
45

secret_service

Better secrets for Rails. UNMAINTAINED.
Ruby
1
star
46

micro_exiftool

Minimal ruby wrapper around exiftool
Ruby
1
star
47

cards_mvc

Sample project to evaluate JavaScript frameworks in the spirit of TodoMVC
JavaScript
1
star
48

check-config-rule-s3-lifecycle

This lambda function evaluates if an AWS Config rule is compliant. It's written to check if AWS::S3::Bucket resources with versioning enabled have a lifecycle policy. It does not check what is configured in the lifecycle policy.
Python
1
star