Skip to content
This repository has been archived by the owner on Mar 17, 2019. It is now read-only.

Commit

Permalink
Maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
devfacet committed Mar 6, 2017
1 parent 65c023f commit a1e6c86
Show file tree
Hide file tree
Showing 12 changed files with 236 additions and 285 deletions.
12 changes: 8 additions & 4 deletions .editorconfig
@@ -1,14 +1,18 @@
root = true

[*]

indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false

[*.md]
trim_trailing_whitespace = false

[*.{js,json,yml,yaml}]
indent_style = space
indent_size = 2

trim_trailing_whitespace = false
#[*.go]
#indent_style = tab
#indent_size = 8
2 changes: 1 addition & 1 deletion .gitattributes
Expand Up @@ -15,4 +15,4 @@

*.bat text
*.sh text
*.exe binary
*.exe binary
23 changes: 10 additions & 13 deletions .gitignore
@@ -1,18 +1,15 @@
.DS_Store
.idea
.settings
.env
.coverrun
.coverdata
cover.out
xunit.xml
Thumbs.db

*.log
*.heapsnapshot
*.pprof
*.exe
*.prof
*.out

tmp/
logs/
reports/
sources/

npm-debug.log
node_modules/
releases/
vendor/
node_modules/
source/
28 changes: 0 additions & 28 deletions .jshintrc

This file was deleted.

4 changes: 3 additions & 1 deletion .travis.yml
@@ -1,9 +1,11 @@
sudo: false

language: node_js

node_js:
- "0.10"
- "0.12"
- "4"
- "6"

before_script:
- mkdir -p gnatsd
Expand Down
48 changes: 24 additions & 24 deletions CHANGELOG.md
@@ -1,40 +1,40 @@
## Changelog
# Changelog

### 2.0.2 (2016-03-20)
## 2.0.2 (2016-03-20)

* Maintenance
- Maintenance

### 2.0.1 (2016-02-04)
## 2.0.1 (2016-02-04)

* Misc. updates
* Update devDependencies
- Misc. updates
- Update devDependencies

### 2.0.0 (2015-12-12)
## 2.0.0 (2015-12-12)

* Upgrade Nats to v0.5.x
* Support for Seneca v0.8.x
* Remove Node v0.10 support
* Add Coveralls integration
* Upgrade dev dependencies
- Upgrade Nats to v0.5.x
- Support for Seneca v0.8.x
- Remove Node v0.10 support
- Add Coveralls integration
- Upgrade dev dependencies

### 1.1.1 (2015-10-19)
## 1.1.1 (2015-10-19)

* Add `NATS_SERVERS` and `NATS_URL` env vars
- Add `NATS_SERVERS` and `NATS_URL` env vars

### 1.1.0 (2015-10-19)
## 1.1.0 (2015-10-19)

* Add servers option for NATS
* Update dev dependencies
* Update package scripts
- Add servers option for NATS
- Update dev dependencies
- Update package scripts

### 1.0.2 (2015-08-08)
## 1.0.2 (2015-08-08)

* Remove lodash
- Remove lodash

### 1.0.1 (2015-08-08)
## 1.0.1 (2015-08-08)

* Add tests
- Add tests

### 1.0.0 (2015-08-08)
## 1.0.0 (2015-08-08)

* Initial release
- Initial release
2 changes: 1 addition & 1 deletion LICENSE.txt
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Fatih Cetinkaya (http://github.com/fatihcode/seneca-nats-transport)
Copyright (c) 2015 Fatih Cetinkaya (http://github.com/devfacet/seneca-nats-transport)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 9 additions & 10 deletions README.md
@@ -1,4 +1,4 @@
## seneca-nats-transport
# seneca-nats-transport

[![NPM][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage][coverage-image]][coverage-url]

Expand All @@ -8,13 +8,13 @@ Seneca NATS transport.
an open-source, high-performance, lightweight cloud messaging system. This library provides
a publish-subscribe message distribution model.

### Installation
## Installation

```
```bash
npm install seneca-nats-transport
```

### Usage
## Usage

[gnatsd server](http://nats.io/download/) **should** be running.

Expand All @@ -36,23 +36,22 @@ require('seneca')()
.act({role: 'foo', cmd: 'bar', arg1: 1, arg2: 2}, console.log);
```

*Run following commands*
```bash
gnatsd
node server.js
node client.js
```

### License
## License

Licensed under The MIT License (MIT)
For the full copyright and license information, please view the LICENSE.txt file.

[npm-url]: http://npmjs.org/package/seneca-nats-transport
[npm-image]: https://badge.fury.io/js/seneca-nats-transport.svg

[travis-url]: https://travis-ci.org/fatihcode/seneca-nats-transport
[travis-image]: https://travis-ci.org/fatihcode/seneca-nats-transport.svg?branch=master
[travis-url]: https://travis-ci.org/devfacet/seneca-nats-transport
[travis-image]: https://travis-ci.org/devfacet/seneca-nats-transport.svg?branch=master

[coverage-url]: https://coveralls.io/github/fatihcode/seneca-nats-transport?branch=master
[coverage-image]: https://coveralls.io/repos/github/fatihcode/seneca-nats-transport/badge.svg?branch=master
[coverage-url]: https://coveralls.io/github/devfacet/seneca-nats-transport?branch=master
[coverage-image]: https://coveralls.io/repos/github/devfacet/seneca-nats-transport/badge.svg?branch=master

0 comments on commit a1e6c86

Please sign in to comment.