Skip to content

Commit

Permalink
Merge pull request #182 from dahlia/readme
Browse files Browse the repository at this point in the history
Link nirum.tmbundle
  • Loading branch information
dahlia committed Sep 16, 2017
2 parents c190847 + 38af058 commit 42ef125
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 17 deletions.
19 changes: 14 additions & 5 deletions .travis.yml
Expand Up @@ -16,6 +16,8 @@ matrix:
- python3.6
- libgmp10
- upx-ucl
env:
- PIP_MINVER=9.0.1 SETUPTOOLS_MINVER=36.5.0
cache:
directories:
- "$HOME/.stack"
Expand All @@ -39,12 +41,19 @@ before_install:
- curl -o "$HOME/.local/bin/travis_long" -L https://raw.githubusercontent.com/futurice/fum2github/master/travis_long
- chmod +x "$HOME/.local/bin/travis_long"
install:
- |
if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
pip3 install --user --upgrade tox pip setuptools
else
pip install --user --upgrade tox pip setuptools
- |
if ! python3 -c "import pip"; then
if ! python3 -c "import setuptools"; then
pushd /tmp
curl -L "https://github.com/pypa/setuptools/archive/v$SETUPTOOLS_MINVER.tar.gz" | tar xvfz -
cd setuptools-*/
python3 bootstrap.py
python3 setup.py install --user
popd
fi
python3 -m easy_install --user -U "pip>=$PIP_MINVER"
fi
- python3 -m pip install --user --upgrade tox "pip>=$PIP_MINVER" setuptools
- travis_long stack --no-terminal setup
- travis_long stack --no-terminal install scan -j4
script:
Expand Down
28 changes: 16 additions & 12 deletions README.md
Expand Up @@ -96,24 +96,28 @@ See also the [list of Nirum-related projects][7] on GitHub. Have you kicked off
a new project related to Nirum? Please add *nirum* [topic][8] to your project
on GitHub!

### Editor supports
### Language runtimes

- [nirum.vim](https://github.com/spoqa/nirum.vim): Nirum syntax highlighter for
Vim/Neovim.
- [sublime-nirum](https://github.com/spoqa/sublime-nirum): Nirum package for
Sublime Text 3.
- [nirum-python](https://github.com/spoqa/nirum-python): The official Python
runtime library for Nirum.
- [nirim-python-http](https://github.com/spoqa/nirum-python-http):
Nirum HTTP transport for Python.
- [nirum-python-wsgi](https://github.com/spoqa/nirum-python-wsgi):
Adapt Nirum services to WSGI apps.

### Language runtimes
### Editor supports

- [nirum-python](https://github.com/spoqa/nirum-python): The official Python
runtime library for Nirum.
- [nirim-python-http](https://github.com/spoqa/nirum-python-http):
Nirum HTTP transport for Python.
- [nirum-python-wsgi](https://github.com/spoqa/nirum-python-wsgi):
Adapt Nirum services to WSGI apps.
- [nirum.tmbundle](https://github.com/spoqa/nirum.tmbundle): TextMate bundle
for Nirum. Also can be used by IntelliJ IDEA (or any other JetBrain's
IDEs, e.g., PyCharm, WebStorm) through [TextMate bundles support][9].
- [nirum.vim](https://github.com/spoqa/nirum.vim): Nirum syntax highlighter for
Vim/Neovim.
- [sublime-nirum](https://github.com/spoqa/sublime-nirum): Nirum package for
Sublime Text 3.

[7]: https://github.com/search?q=topic:nirum+fork:false
[8]: https://github.com/blog/2309-introducing-topics
[9]: https://github.com/spoqa/nirum.tmbundle#installation-intellij-idea-pycharm-etc


Etymology
Expand Down

0 comments on commit 42ef125

Please sign in to comment.