aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-16Removing ClojureCLR (Moved to http://github.com/richhickey/clojure-clr)David Miller
2009-10-05Change version number of clojure-lang dependency.Howard M. Lewis Ship
Closes #24 Signed-off-by: scgilardi <scgilardi@gmail.com>
2009-10-03jmx.clj: Beans (1) must have reftypes for state, and (2) no longerStuart Halloway
assume that reftypes are IFns
2009-09-28compile str-utils2 and other build fixes, refs #22Stuart Halloway
2009-08-31macro-utils: fix handling of let* and loop* forms with more than one body ↵Konrad Hinsen
expression
2009-08-28test_is.clj: compatibility bridge to the new clojure.test; refs #26Stuart Sierra
Includes support for the old syntax of the "are" macro.
2009-08-28str_utils2.clj: added type hints for String return values; fixes #27Stuart Sierra
2009-08-27renamed c.c.expect to c.c.mock, added author/doc metadataStuart Halloway
2009-08-25Fixed attr-maps on private macros.Alexander Taggart
Signed-off-by: Tom Faulhaber <git_net@infolace.com> See #21
2009-08-25Fixed a typo introduced by the merge: test-is-adapter => test-adapter.Tom Faulhaber
2009-08-25Merge branch 'expect'Stuart Halloway
2009-08-25tweaks: update build to match package names, idiomatic reset!Stuart Halloway
2009-08-25simplifying expect_test file structureStuart Halloway
2009-08-25removed util per Chouser's suggestionStuart Halloway
2009-08-25positions takes only a predicate, per Rich's feedbackAaron Bedra and Stuart Halloway
2009-08-25GitHub's rendering of the README was grabbing the ) at the end of parenthesizedTom Faulhaber
URLs, so I added an ugly space before the ).
2009-08-25Added author metadataTom Faulhaber
2009-08-25More cross references in the READMETom Faulhaber
2009-08-24modify immigrate to operate on root bindings rather than current bindingsscgilardi
2009-08-23expect: remove indexes in favor of seq-utils/positionsAaron Bedra and Stuart Halloway
2009-08-23add seq-utils/positionsAaron Bedra and Stuart Halloway
2009-08-23added adapter testAaron Bedra and Stuart Halloway
2009-08-23got tests passing for clojure.contrib.expectAaron Bedra and Stuart Halloway
* had to use fully-qualified symbols in test-has-matching-signature. Should be a better way
2009-08-23added test-expect source, renamed namespaces for contribAaron Bedra and Stuart Halloway
2009-08-23Merge branch 'master' of git@github.com:richhickey/clojure-contribStuart Halloway
2009-08-22A couple of doc tweaksTom Faulhaber
2009-08-21Translated Jeffrey's overview of Datalog from the old google code wiki intoTom Faulhaber
the new documentation structure.
2009-08-21java_utils.clj Correct previous commit with duplicate definition of as-strStuart Sierra
2009-08-21java_utils.clj: made as-str variadic like str, fixes #18Stuart Sierra
This commit also includes tests for this function.
2009-08-21Fleshed out the README with a bunch of important info that should be on the ↵Tom Faulhaber
home page.
2009-08-20http/agent.clj: fix missing @ in 'message'Stuart Sierra
2009-08-20http/agent.clj: handle null response stream on disconnectStuart Sierra
2009-08-20http/agent.clj: handle null InputStream from HTTP responseStuart Sierra
2009-08-20base64.clj: added namespace metadata docStuart Sierra
2009-08-20str_utils2.clj: added partial, with testsStuart Sierra
Alternate definition of partial for fns that take their primary argument first.
2009-08-19base64.clj: performance enhancement for encodeStuart Sierra
Use boxed Integers instead of primitive bytes, because Clojure's bit operations only support Integer, Long, and BigInteger.
2009-08-19base64.clj: Base-64 encodingStuart Sierra
Next step: implement decoding!
2009-08-19str_utils2.clj: added repeat and reverse, with testsStuart Sierra
2009-08-19str_utils2.clj: modified header commentsStuart Sierra
2009-08-19str_utils2.clj: modified doc string for escapeStuart Sierra
2009-08-19str_utils2.clj: added map-str and grep from CompojureStuart Sierra
2009-08-19str_utils2.clj: avoid error on zero-length string in chopStuart Sierra
2009-08-19test_contrib/str_utils2.clj: added lots more testsStuart Sierra
This should provide complete coverage of str-utils2
2009-08-19str_utils2.clj: added type hints to avoid reflectionStuart Sierra
2009-08-19monads: correction in commentKonrad Hinsen
2009-08-19macro-utils: removed unused dependency on walkKonrad Hinsen
2009-08-18str_utils2.clj: fix escape so it actually works, add testsStuart Sierra
2009-08-18str_utils2.clj: explain argument order of take/drop/butlast, refs #17Stuart Sierra
2009-08-18str_utils2.clj: implemented swap-case, added capitalizeStuart Sierra
2009-08-18http/agent.clj: fixed misplaced parenthesisStuart Sierra