Helps to migrate many git projects
React Native toolkit for Auth0 API
Jest preset configuration for Angular projects
Provides a list of electron-to-chromium version mappings
Fetches and manages remotely-hosted assets and updates to your app's JS bundle.
Automation for Apps.
JSON Web Token implementation (symmetric and asymmetric)
Component testing utils for Vue 3.
OCI NodeJS client for Database Migration Service
Parse, validate, manipulate, and display dates
A Storybook builder to dev and build with Vite
Frontend utilities for JavaScript projects with open source code
Neo-Async is a drop-in replacement for Async, it almost fully covers its functionality and runs faster
A react component toolset for managing animations
Smart Config Loader
No description provided.
Parse and display moments in any timezone.
An isomorphic-pgp plugin for isomorphic-git
Inquirer prompts, combined in a single package
Generate the sfdx content in source format and destructive change from two git commits
Guide your users through a tour of your app.
Enforces module path case sensitivity in Webpack
A professional solution for consolidating all your JavaScript projects in one Git repo
Native Federation is a "browser-native" implementation of the successful mental model behind webpack Module Federation for building Micro Frontends (Plugins, etc.).
A tool for migrating svn projects to git
A tool for migrating svn projects to git
A tool for migrating svn projects to git
A tool for migrating Unity Asset Server projects to git
A tool for migrating svn projects to git
A tool for migrating svn projects to git
# Rebase Migrations Rebase Migrations is a library and command line tool to rebase Rails migrations to have the latest timestamp. ## Installation ```console $ bundle add rails-rebase-migrations --group=development,test ``` ## Scenario Two team members, Alice and Bob, are working on the same Rails project and both are adding new database migrations. Alice realizes her migration depends on Bob's, but the migration timestamps are out of order. The `rebase-migration` command line tool can be used to reorder Alice's new migrations to have the latest timestamp in the sequence. ## Usage To rebase all new migrations with respect to the `main` git branch: ```console $ bundle exec rebase-migrations ``` To rebase all new migrations with respect to a different branch: ```console $ bundle exec rebase-migrations my-branch ``` The command has a `--check` argument that is useful for CI. To check that all new migrations are the latest in the sequence: ```console $ bundle exec rebase-migrations --check ``` It will exit with status code 1 if the check fails. The `--check` form also accepts a branch argument. ### Skipping Migrations To skip a specific migration files from the `--check` include `_skip_rebase` in its filename.
A CLI gem to analyze Ruby/Rails projects and track activity: models, migrations, Git, schema,STI, assocation,methods, acope, validation and more.
["This gem adds the integration for the nobrainer gem in Capistrano.\n\nIt creates the indexes automatically and run the database migration if any (WARNING: You need to use the zedtux's nobrainer fork in order to use migration scripts until it get merged).\n\n| Feature | capistrano-nobrainer version |\n| --------------------------- | ----------------------------- |\n| Nobrainer indexes creation | 0.2.0 |\n| Nobrainer migration scripts | 0.3.0 |\n\nSo if you don't use migration scripts, stick on version 0.2.0.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'capistrano-nobrainer', '~> 0.2', require: false\n```\n\nAnd then execute:\n\n $ bundle install\n\nOr install it yourself as:\n\n $ gem install capistrano-nobrainer\n\n## Usage\n\nAdd the following require to your `Capfile`:\n\n```ruby\nrequire 'capistrano/nobrainer'\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://gitlab.com/zedtux/capistrano-nobrainer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://gitlab.com/zedtux/capistrano-nobrainer/blob/master/CODE_OF_CONDUCT.md).\n"]