Skip to content

Commit

Permalink
Renamed d.r/show to d.r/reflect. Release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gunnar Völkel authored and Gunnar Völkel committed Nov 24, 2014
1 parent 8b56c85 commit e45a681
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -8,8 +8,8 @@ Library for debugging Clojure programms with support for tracing, timing and ins
Add one of the following to your ```project.clj``` to let Leiningen install ```clj-debug``` for you:

```clj
:dependencies [[clj-debug "0.7.3"]]
:profiles {:dev {:dependencies [[clj-debug "0.7.3"]]}}
:dependencies [[clj-debug "0.7.4"]]
:profiles {:dev {:dependencies [[clj-debug "0.7.4"]]}}
```


Expand Down
4 changes: 2 additions & 2 deletions project.clj
@@ -1,10 +1,10 @@
(defproject clj-debug "0.7.4-SNAPSHOT"
(defproject clj-debug "0.7.4"
:description "Library for debugging Clojure programms with support for tracing, timing and inspection."
:url "https://github.com/guv/clj-debug"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies
[[org.clojure/clojure "1.6.0"]
[clj-gui "0.3.4-SNAPSHOT"]]
[clj-gui "0.3.4"]]
:aot [debug.inspect.inspectable])
2 changes: 1 addition & 1 deletion src/debug/reflect.clj
Expand Up @@ -61,7 +61,7 @@
(ifn? x) x
:else (constantly true)))

(defn show
(defn reflect
"Prints all static and instance members of x or (class x).
Examples: (show Integer) (show []) (show String 23) (show String \"case\") (show String #\".*Case\")"
([x] (show x (constantly true)))
Expand Down

0 comments on commit e45a681

Please sign in to comment.