Skip to content

Commit

Permalink
(- meta api) Re-naming µPaws to µpaws.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ELLIOTTCABLE committed Jun 9, 2013
1 parent e195c91 commit 74010cf
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.markdown
@@ -1,4 +1,4 @@
`µPaws.js`
`µpaws.js`
=========
Some small Paws, written in JavaScript on top of [Node.js][]. Used for rapid-prototyping and general
tomfoolery of all sorts. **Do not expect stability, completeness, or sanity.** Do expect bugs,
Expand Down
2 changes: 1 addition & 1 deletion examples/06.print.paws
@@ -1,3 +1,3 @@
#!/usr/bin/env node ./µPaws.js --no-start -f
#!/usr/bin/env node ./µpaws.js --no-start -f

implementation util print Whee!
2 changes: 1 addition & 1 deletion examples/07.complex.print.paws
@@ -1,4 +1,4 @@
#!/usr/bin/env node ./µPaws.js -f
#!/usr/bin/env node ./µpaws.js -f

implementation void()
( infrastructure execution stage()
Expand Down
2 changes: 1 addition & 1 deletion examples/08.add.a.local.paws
@@ -1,4 +1,4 @@
#!/usr/bin/env node ./µPaws.js -f
#!/usr/bin/env node ./µpaws.js -f
implementation void()

( infrastructure execution stage()
Expand Down
2 changes: 1 addition & 1 deletion examples/09.a.routine.paws
@@ -1,4 +1,4 @@
#!/usr/bin/env node ./µPaws.js -f
#!/usr/bin/env node ./µpaws.js -f
implementation void()

“Provide a shortcut to `infrastructure`
Expand Down
2 changes: 1 addition & 1 deletion µPaws.js → µpaws.js
Expand Up @@ -785,7 +785,7 @@ var /* Types: */ Thing, R,Relation, Label, Execution
, read = require('readline').createInterface({ input: process.stdin, output: process.stdout })
read.setPrompt(':: ')

process.title = 'µPaws.js REPL' // No-op on OS X, as of Node v0.8.16 #fuckmesideways
process.title = 'µpaws.js REPL' // No-op on OS X, as of Node v0.8.16 #fuckmesideways

console.log("Successive lines will be parsed as individual executions, with shared locals.")
console.log(" (make sure you understand the basics: `less Getting.Started.*`)")
Expand Down
8 changes: 4 additions & 4 deletions µPaws.tests.js → µpaws.tests.js
@@ -1,8 +1,8 @@
// This file is to be concatenated to µPaws.js and then executed.
// This file is to be concatenated to µpaws.js and then executed.

// In zsh:
//
// node =(cat µPaws{,.tests}.js)
// node =(cat µpaws{,.tests}.js)

if (require.main === module)
~function(){ var testing = new Object, Battery, $,Check, pending, broken
Expand Down Expand Up @@ -155,7 +155,7 @@ new Check()
new Check( cPaws.parse('') )
(function(locals){ return typeof locals.contents === 'undefined' })

var some_string = 'µPaws'
var some_string = 'µpaws'
new Check( cPaws.parse(some_string) .next )
(function(label_node){ return label_node.contents instanceof Label })
(function(label_node){ return label_node.contents.string === some_string })
Expand Down Expand Up @@ -242,7 +242,7 @@ new Check( new Execution(cPaws.parse('')) )
(function(native){ return pending; return native.complete() })
(function(native){ return pending; return typeof native.advance() === 'undefined' })

var some_string = 'µPaws'
var some_string = 'µpaws'
~function(){
var a_native = new Execution(cPaws.parse(some_string))
, locals = a_native.position
Expand Down

0 comments on commit 74010cf

Please sign in to comment.