git_repo_upgrader
Copy specific files from another git repository into your current project and provide (optional) automatic commits.
Useful to integreate foreign git repo file based dependencies in your project or build. Do upgrades by one command.
Note
Early PoC with limited feature set.
Contents
- Installation
- Usage
- Documentation
- Contributing
Installation
Prerequisites
Git must be installed and its bin directory must be included in PATH variable.
Add gem to your ruby project
Add this line to your application's Gemfile:
gem 'git_repo_upgrader'And then execute:
$ bundle install
Or install it yourself as:
$ gem install git_repo_upgrader
Usage
At best create a new rake task containing a options hash and then run #upgrade.
See the examples below for option hashes.
Examples
Basic
options = {
repo: {
uri: 'https://github.com/username/project.git',
branch: 'develop',
},
files_to_copy: {
'dist/app.bundle.js' => 'web/js/lib/project/app.bundle.js',
'dist/app.bundle.css' => 'web/js/lib/project/app.bundle.css',
# copy a whole directory recursively
'dist/img' => 'web/js/lib/project/img',
},
commit: 'prompt' # 'prompt' by default, other options: 'false','auto'
}
GitRepoUpgrader.upgrade optionsDocumentation
Check out the doc at RubyDoc https://www.rubydoc.info/gems/git_repo_upgrader
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/magynhard/git_repo_upgrader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.