Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Tahler committed Feb 9, 2015
1 parent 4d3f686 commit 2a952bb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion example.js
@@ -1,4 +1,4 @@
var actionheroClient = require(__dirname + "/lib/actionheroClient.js");
var actionheroClient = require(__dirname + "/lib/actionhero-client.js");
var client = new actionheroClient();

client.on("say", function(msgBlock){
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions package.json
@@ -1,14 +1,14 @@
{
"author": "Evan Tahler <evantahler@gmail.com>",
"name": "actionheroClient",
"name": "actionhero-client",
"description": "actionhero client in JS for other node servers to use",
"version": "4.0.0",
"homepage": "https://github.com/evantahler/actionheroClient",
"homepage": "https://github.com/evantahler/actionhero-client",
"repository": {
"type": "git",
"url": "git://github.com/evantahler/actionheroClient.git"
"url": "git://github.com/evantahler/actionhero-client.git"
},
"main": "lib/actionheroClient.js",
"main": "lib/actionhero-client.js",
"keywords": [
"socket",
"tcp",
Expand Down
8 changes: 4 additions & 4 deletions readme.md
@@ -1,6 +1,6 @@
#actionheroClient (for nodeJS)

[![build status](https://secure.travis-ci.org/evantahler/actionheroClient.png)](http://travis-ci.org/evantahler/actionheroClient)
[![build status](https://secure.travis-ci.org/evantahler/actionher-client.png)](http://travis-ci.org/evantahler/actionhero-client)

This library makes it easy for one nodeJS process to talk to a remote [actionhero](http://actionherojs.com/) server.

Expand All @@ -11,13 +11,13 @@ This library makes use of actionhero's TCP socket connections to enable fast, st
Installation should be as simple as:

```javascript
npm install --save actionheroClient
npm install --save actionhero-client
```

and then you can include it in your projects with:

```javascript
var actionheroClient = require("actionheroClient");
var actionheroClient = require("actionhero-client");
var client = new actionheroClient();
```

Expand Down Expand Up @@ -103,7 +103,7 @@ There are a few data elements you can inspect on `actionheroClient`:
## Example

```javascript
var actionheroClient = require("actionheroClient");
var actionheroClient = require("actionhero-client");
var client = new actionheroClient();

client.on("say", function(msgBlock){
Expand Down
2 changes: 1 addition & 1 deletion test/actionhero_client.js → test/actionhero-client.js
@@ -1,6 +1,6 @@
var should = require("should");
var setup = require(__dirname + "/setup.js").setup;
var actionheroClient = require(__dirname + "/../lib/actionheroClient.js");
var actionheroClient = require(__dirname + "/../lib/actionhero-client.js");
var client;

var connectionParams = {
Expand Down

0 comments on commit 2a952bb

Please sign in to comment.