funkr 0.0.27 → 0.0.28
Sign up to get free protection for your applications and to get access to all the features.
- data/README +3 -3
- data/funkr.gemspec +5 -1
- data/lib/funkr/version.rb +1 -1
- metadata +22 -13
data/README
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
Funkr brings some common functional programming constructs to ruby.
|
2
2
|
|
3
|
-
In particular, it offers a simple mechanism to create
|
4
|
-
Types and do pattern matching on them. For an exemple
|
5
|
-
|
3
|
+
In particular, it offers a simple mechanism to create Algebraic Data
|
4
|
+
Types and do pattern matching on them. For an exemple implementation,
|
5
|
+
see provided classes.
|
6
6
|
|
7
7
|
It also provide modules for common categories (Monoid, Monad,
|
8
8
|
Functor, Applicative ...), and extends common types to support
|
data/funkr.gemspec
CHANGED
@@ -13,14 +13,18 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.description = <<EOF
|
14
14
|
Funkr is a functionnal toolbox for the Ruby language.
|
15
15
|
|
16
|
-
In particular, it offers a simple mechanism to create
|
16
|
+
In particular, it offers a simple mechanism to create Algebraic Data
|
17
17
|
Types and do pattern matching on them.
|
18
18
|
|
19
|
+
-
|
20
|
+
|
19
21
|
It also provide modules for common categories (Monoid, Monad,
|
20
22
|
Functor, Applicative ...), and extends common types to support
|
21
23
|
categories they belongs to (Array, Hash ...). Categories can also be
|
22
24
|
used with custom types, see provided classes.
|
23
25
|
|
26
|
+
-
|
27
|
+
|
24
28
|
Array and Hash classes are extended with methods providing correct
|
25
29
|
behaviour with respect to categories. Enumerable module comes with
|
26
30
|
a lot of useful functions for working with lists and sets. See the
|
data/lib/funkr/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 28
|
9
|
+
version: 0.0.28
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Paul Rivier
|
@@ -32,17 +32,26 @@ dependencies:
|
|
32
32
|
version: 0.9.2
|
33
33
|
type: :development
|
34
34
|
version_requirements: *id001
|
35
|
-
description:
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
35
|
+
description: |
|
36
|
+
Funkr is a functionnal toolbox for the Ruby language.
|
37
|
+
|
38
|
+
In particular, it offers a simple mechanism to create Algebraic Data
|
39
|
+
Types and do pattern matching on them.
|
40
|
+
|
41
|
+
-
|
42
|
+
|
43
|
+
It also provide modules for common categories (Monoid, Monad,
|
44
|
+
Functor, Applicative ...), and extends common types to support
|
45
|
+
categories they belongs to (Array, Hash ...). Categories can also be
|
46
|
+
used with custom types, see provided classes.
|
47
|
+
|
48
|
+
-
|
49
|
+
|
50
|
+
Array and Hash classes are extended with methods providing correct
|
51
|
+
behaviour with respect to categories. Enumerable module comes with
|
52
|
+
a lot of useful functions for working with lists and sets. See the
|
53
|
+
module documentation and the test suite for examples.
|
54
|
+
|
46
55
|
email:
|
47
56
|
- paul (dot) r (dot) ml (at) gmail (dot) com
|
48
57
|
executables: []
|