nydp 0.1.7 → 0.1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c06a0264cdd46d00dc6380d8e864fa5471742b9c
4
- data.tar.gz: e154d0f6bf4bfdc48eb86daa8b28d41568683e6a
3
+ metadata.gz: db35faecd269e526a42734f65107c5e01225e1d7
4
+ data.tar.gz: bf41a00b1da780edade899c64c60448af7e3bfed
5
5
  SHA512:
6
- metadata.gz: 695695ea3b5c9d70a13eec9d907d81b0b7e8f1fefe7d5a7f6d5e1e4b81c6e68b05ba938e7a1c5a6ed15ddb05b837a069e44b4f5c19fdbbad05541d3404f11856
7
- data.tar.gz: b01929361f8ee8f8c19e00d6fcac70164b6e584b2f4ea890ae5b643ca03a3fda6a972ecb50cecdb34964ad5995ddb854e80c6c396e876b3027b0511bf52e065b
6
+ metadata.gz: 8854d5d5072ddef9cc13b9990352ba1e14651304fc4e81042181504b0e9f352cc5aee08f91c655decea3c0019317325bb8c3b9ab1118f02712eeb7ff54b5dd74
7
+ data.tar.gz: 9e47f43feec791386e44b183dd16bdf254238bd507977b42e39771d3a0f55aea30dd42fc6db48544e65010d430c376e09e0607a680132756d572e842092d1de3
@@ -9,7 +9,7 @@
9
9
  (hash-set examples
10
10
  name
11
11
  (cons example-exprs
12
- (hash-get examples sym))))
12
+ (hash-get examples name))))
13
13
 
14
14
  (def dox-lookup (sym) (hash-get dox sym))
15
15
 
@@ -22,10 +22,11 @@ source
22
22
  (def dox-show-one-example (name example)
23
23
  "~|name| ~(car example)
24
24
 
25
- running :
25
+ example :
26
+
26
27
  ~(dox-show-src:cadr example)
27
28
 
28
- produces : ~(dox-show-src:caddr example)
29
+ returns : ~(dox-show-src:caddr example)
29
30
 
30
31
  --------------------------------
31
32
  ")
@@ -1,12 +1,12 @@
1
1
  (mac this-is-a-well-documented-macro (a b c)
2
- ; documentation for me!
2
+ ; documentation for me!
3
3
  `(foo ,a ,b ,c))
4
4
 
5
5
  (mac this-is-an-undocumented-macro (a b c)
6
6
  `(baz ,a ,b ,c))
7
7
 
8
8
  (def this-is-a-well-documented-def (a b c)
9
- ; documentation for me!
9
+ ; documentation for me!
10
10
  (foo a b c))
11
11
 
12
12
  (def this-is-an-undocumented-def (a b c)
@@ -130,10 +130,11 @@ source
130
130
  720))
131
131
  "foo this is an example of an example
132
132
 
133
- running :
133
+ example :
134
+
134
135
  (foo bar yadda 1 2 3)
135
136
 
136
- produces : 720
137
+ returns : 720
137
138
 
138
139
  --------------------------------
139
140
  "))
@@ -28,7 +28,11 @@
28
28
 
29
29
  ("joins three lists"
30
30
  (joinlists '(a b c) '(x y z) '(1 2 3))
31
- (a b c x y z 1 2 3)))
31
+ (a b c x y z 1 2 3))
32
+
33
+ ("joins three lists without recusing"
34
+ (joinlists '(a b c) '(x (y1 y2 y3) z) '(1 2 (3 3 3)))
35
+ (a b c x (y1 y2 y3) z 1 2 (3 3 3))))
32
36
 
33
37
  (examples-for firstn
34
38
  ("returns no items for n = 0"
data/lib/nydp/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Nydp
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.7.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nydp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Conan Dalton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-14 00:00:00.000000000 Z
11
+ date: 2015-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler