Skip to content

Commit

Permalink
updating readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoertink committed Jun 15, 2016
1 parent 2fdd663 commit 0cbac24
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions README.md
@@ -1,18 +1,35 @@
# medley

A shard for helping to write music.
A mixture of music related methods.

## Installation

Install locally

* `git clone git@github.com:jwoertink/medley.git`
* `cd medley/`
* `crystal deps` ? I'm stll not sure how all this works yet

or add as a dependecy to your project

```yaml
dependencies:
medley:
github: jwoertink/medley
```

## Usage

```crystal
require "medley"
# List out a scale
Medley::Notes.by_scale('Cmaj') #=> ["C", "D", "E", "F", "G", "A", "B", "C"]
# Play with a note
note = Medley::Notes.new("G")
puts note.halfstep_up # => G#
puts note.wholestep_up # => A
```

## Development
Expand All @@ -21,12 +38,12 @@ Medley::Notes.by_scale('Cmaj') #=> ["C", "D", "E", "F", "G", "A", "B", "C"]

## Contributing

1. Fork it ( https://github.com/[your-github-name]/medley/fork )
1. Fork it ( https://github.com/jwoertink/medley/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request

## Contributors

- [[your-github-name]](https://github.com/[your-github-name]) Jeremy Woertink - creator, maintainer
- [jwoertink](https://github.com/jwoertink) Jeremy Woertink - creator, maintainer

0 comments on commit 0cbac24

Please sign in to comment.