RailsCopier
A simple gem that allows you to copy a rails project, including all it's folders, configurations.
The main gole here is to provide a way of quickly starting a 'new' rails project without having to deal with all that heavy starting configuration (mostly on frontend) we often come across
Installation
Having Ruby working environment properly set up, install rails_copier as:
$ gem install rails_copier
Usage
We have 3 required flags to be passed:
- --from
- --to
- --name
Let's say we want to copy a project from the current folder to the parent folder, giving to it a new name of NewProject:
rails_copier --from . --to .. --name NewProject
or even the short version
rails_copier -f . -t .. -n NewProject
Is Windows supported?
Not yet!
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/leodcs/rails_copier. 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.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the RailsCopier project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.