gearbox icon indicating copy to clipboard operation
gearbox copied to clipboard

Command line toolkit born as a paster command replacement for the TurboGears2 web framework

Results 9 gearbox issues
Sort by recently updated
recently updated
newest added

More information in #26 #…ut gets wrapped in LazyWriter. LazyWriter does not support the full _io.TextIOWrapper interface -- specifically the buffer property. This causes applications, like Kallithea, to crash on...

gearbox serve patches stdout/stderr to be an object of class LazyWriter, which only opens the file when something is written. Is this only to avoid an empty log file in...

Paster BadCommand is not available and must be handled manually, terminating with sys.exit(1). In Paster raising an exception named `BadCommand` allowed to quit with an error message ( see https://github.com/Pylons/pylons/blob/master/pylons/commands.py#L107...

kallithea

``` Some notes from the porting - it could perhaps be the missing(?) documentation for migrating from paster to gearbox: Replace paster summary = 'yada yada' with the first line...

kallithea

It is currently not documented that subcommands can be provided through `subparsers` like https://github.com/TurboGears/tg2devtools/blob/development/devtools/gearbox/alembic_migrate.py does. It is also not really easy to load the subcommands through extensions and gearbox should...

kallithea

Note: 'gearbox' without parameters will crash - specify '-h' to get started testing.

kallithea

Related to #14, we've written a new library called plaster for abstracting the config format away from Pyramid so that people can write their own custom formats. This can be...

As Cliff provided its own logging configuration and serve command did too the two pretty much messed one with the other. Now that cliff has been removed it would pretty...

Gearbox depends on https://pypi.org/project/Tempita/ which seems to be quite dead. http://pythonpaste.org/tempita/ doesn't work and I don't know if they have an issue tracker. tempita uses cgi.escape . cgi was removed...