README.md

## Rename
For the indecisive developer

[![Build Status](https://travis-ci.org/MainShayne233/rename.svg?branch=master)](https://travis-ci.org/MainShayne233/rename)

## Install
Add to your mix dependencies in `mix.exs`
```elixir
# mix.exs
defp deps do
  [
    {:rename, "~> 0.0.1"}
  ]
end
```
and install
```bash
mix deps.get
```

## Usage
You can run it as a `mix task`
```bash
mix rename OldAppName NewAppName old_app_otp new_app_top
```
Or from Elixir
```elixir
Rename.run(
  {"OldAppName", "NewAppName"},
  {"old_app_otp", "new_app_otp"},
  ignore_files: "./lib/old_app_otp/sacred.ex" # optional options
)
```