Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmueller committed Nov 1, 2011
1 parent 2a902ea commit 1099b9c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
RENDERING_DIR = tests/rendering

build:
build: test
@coffee -o lib/ src/

test: clean-tests
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"author": "Matt Mueller <mattmuelle@gmail.com> (mattmueller.me)",
"name": "cheerio",
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
"version": "0.0.4",
"keywords": ["htmlparser", "jquery", "selector", "scraper"],
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git://github.com/MatthewMueller/cheerio.git"
Expand Down
2 changes: 1 addition & 1 deletion tests/api/basic/test.attributes.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
should = require 'should'
cheerio = require "../../../src/cheerio"
cheerio = require "../../../lib/cheerio"

loadCheerio = (html) ->
return cheerio.load html
Expand Down
4 changes: 2 additions & 2 deletions tests/api/basic/test.manipulation.coffee
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
should = require 'should'
cheerio = require "../../../src/cheerio"
utils = require "../../../src/utils"
cheerio = require "../../../lib/cheerio"
utils = require "../../../lib/utils"

exports =

Expand Down
2 changes: 1 addition & 1 deletion tests/api/basic/test.traversing.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
should = require 'should'
cheerio = require "../../../src/cheerio"
cheerio = require "../../../lib/cheerio"

loadCheerio = (html) ->
return cheerio.load html
Expand Down

0 comments on commit 1099b9c

Please sign in to comment.