https://github.com/bitwalker/conform_exrm
Conform plugin for ExRM
https://github.com/bitwalker/conform_exrm
Last synced: 9 months ago
JSON representation
Conform plugin for ExRM
- Host: GitHub
- URL: https://github.com/bitwalker/conform_exrm
- Owner: bitwalker
- License: mit
- Created: 2015-12-01T23:07:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-01T17:44:58.000Z (about 10 years ago)
- Last Synced: 2025-07-08T05:51:40.382Z (9 months ago)
- Language: Elixir
- Size: 4.88 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Conform Plugin for ExRM
This plugin enables use of Conform with your ExRM releases.
## Installation
To use with exrm, simply add this project as a dependency:
```elixir
def deps do
[{:exrm, "~> x.x", override: true},
{:conform, "~> x.x", override: true},
{:conform_exrm, "~> x.x"}]
end
```
In case you are curious, the override of exrm and conform in your deps is to tell Mix that it
can use your deps to fulfill the requirements for exrm and conform that are declared in conform_exrm.
The requirements in conform_exrm are declared as optional, but are required in order to ensure conform
and exrm are compiled before conform_exrm is.