Exercism exercises in Elm.
Find a file
Katrina Owen 06522f623e Add default maintainers file
We wish to feature the maintainers of each track on the new (nextercism) website. Ideally, the bios will be tailored to each track, giving a friendly view into each maintainer's background and interest in the language, and even (perhaps) what they enjoy most about maintaining the track, or what type of things they tend to focus on.

The main reasons for including these are to:

* provide a stronger basis for empathy with maintainers
* give well-deserved recognition
* plant a seed in people's minds that _Exercism tracks are maintained by people like me... I could do that!_

Being featured on the Exercism website is entirely optional, and we're generating all the data with show_on_website=false so that if you don't want to bother, you don't have to change anything.

If you've moved on, or decide to do so, please submit and merge a PR (for visibility to the others involved) that sets **alumnus** to _true_ for your maintainer entry. I'm working on a bot that will update the GitHub team to reflect the current state of this file.

We can merge this as is, and any changes can be added in subsequent pull requests.
2017-07-29 09:30:45 -06:00
.github Enable probot/stale integration 2017-05-28 13:55:13 -04:00
bin Remove skips from tests before checking in CI 2017-07-07 20:23:32 -04:00
config Add default maintainers file 2017-07-29 09:30:45 -06:00
docs Merge branch 'master' into skip-tests 2017-07-07 20:37:02 -04:00
exercises Generate static exercise README templates 2017-07-16 13:24:35 -06:00
img Add the elm icon 2016-06-18 11:21:35 -04:00
.gitignore Ensure individual exercise elm-package.json files are tested in CI 2017-05-28 08:14:40 +02:00
.travis.yml Call configlet subcommand on CI 2017-07-09 12:12:17 -06:00
config.json Merge pull request #157 from exercism/rm-config-redundancy 2017-07-28 21:23:40 -06:00
LICENSE Reassign copyright to Exercism legal entity 2017-05-29 08:56:27 -06:00
package.json Remove skips from tests before checking in CI 2017-07-07 20:23:32 -04:00
README.md Add "watch" command to all exercises 2017-07-05 06:22:37 -05:00

Exercism Elm Track

build status

Exercism Exercises in Elm

Setup

The simplest way to install Elm is via Node.js/NPM.

If you don't already have Node.js installed on your computer, you can download it from the official site. Once you have Node.js up and running, follow these steps to install the Elm platform and elm-test.

$ npm install

Contributing

Thank you so much for contributing! 🎉

Please start by reading the general Exercism contributing guide.

We welcome pull requests that provide fixes and improvements to existing exercises. If you're unsure, then go ahead and open a GitHub issue, and we'll discuss the change.

Please keep the following in mind:

  • Pull requests should be focused on a single exercise, issue, or change.

  • We welcome changes to code style, and wording. Please open a separate PR for these changes if possible.

  • Please open an issue before creating a PR that makes significant (breaking) changes to an existing exercise or makes changes across many exercises. It is best to discuss these changes before doing the work.

  • Follow the coding standards found in The Elm Style Guide. Please consider running elm-format before submitting a pull request.

  • Watch out for trailing spaces, extra blank lines, and spaces in blank lines.

  • Each exercise must stand on its own. Do not reference files outside the exercise directory. They will not be included when the user fetches the exercise.

  • Exercises should use only the Elm core libraries.

  • Please do not add a README or README.md file to the exercise directory. The READMEs are constructed using shared metadata, which lives in the exercism/x-common repository.

  • Each exercise should have a test suite, an example solution, a template file for the real implementation and an elm-package.json file with the elm-test and elm-console dependencies. The CI build expects files to be named using the following convention. The example solution should be named ExerciseModuleName.example. The template file should be named ExerciseModuleName.elm. Test file should be named Tests.elm.

  • The recommended workflow when working on an exercise is to first create the implementation and test files, ExerciseModuleName.elm and tests/Tests.elm. You'll likely want to copy one of the existing exercise directories as a quick start.

    • Test the new exercise directly by running npm test from the exercise directory.

    • Automatically run tests again when you save changes by running npm run watch from the exercise directory.

    • Once the implementation of the exercise is complete, rename ExerciseModuleName.elm to ExerciseModuleName.example.elm and create the template ExerciseModuleName.elm.

    • Make sure everything is good to go by running all tests with bin/build.sh.

  • Please do not commit any Elm configuration files or directories inside the exercise, such as elm-stuff. Please include only the standard elm-package.json.

  • Test files should use the following format:


module Tests exposing (..)

import Test exposing (..)
import Expect
import ExerciseModuleName


tests : Test
tests =
    describe "Bob"
        [ test "first test" <|
            \() ->
                True
                    |> Expect.equal True
        , test "second test" <|
            \() ->
                False
                    |> Expect.equal False
        ]
  • All the tests for Exercism Elm Track exercises can be run from the top level of the repo with bin/build.sh. Please run this command before submitting your PR.

  • If you are submitting a new exercise, be sure to add it to the appropriate place in the config.json file. Also, please run bin/fetch-configlet && bin/configlet to ensure the exercise is configured correctly.

Elm icon

We were unable to find copyright information about the Elm logo, nor information about who designed it. Presumably Evan Czaplicki, creator of the Elm language, also made the logo, and holds copyright. It may also fall within the public domain, since it is a geometric shape. We've adapted the official Elm logo by changing the colors, which we believe falls under "fair use".