funkr 0.0.26 → 0.0.27
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.
- data/README +2 -2
- data/funkr.gemspec +17 -2
- data/lib/funkr/version.rb +1 -1
- metadata +14 -4
data/README
CHANGED
|
@@ -2,12 +2,12 @@ Funkr brings some common functional programming constructs to ruby.
|
|
|
2
2
|
|
|
3
3
|
In particular, it offers a simple mechanism to create Algebraïc Data
|
|
4
4
|
Types and do pattern matching on them. For an exemple
|
|
5
|
-
implementation,
|
|
5
|
+
implementation, 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
|
|
9
9
|
categories they belongs to (Array, Hash ...). Categories can also be
|
|
10
|
-
used with custom types,
|
|
10
|
+
used with custom types, see provided classes.
|
|
11
11
|
|
|
12
12
|
To get started, we recommand you to read the tests, and get feets wet
|
|
13
13
|
with provided Algebraic Data Types (like Maybe).
|
data/funkr.gemspec
CHANGED
|
@@ -9,8 +9,23 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.authors = ["Paul Rivier"]
|
|
10
10
|
s.email = ["paul (dot) r (dot) ml (at) gmail (dot) com"]
|
|
11
11
|
s.homepage = "http://github.com/paul-r-ml/funkr"
|
|
12
|
-
s.summary = %q{
|
|
13
|
-
s.description =
|
|
12
|
+
s.summary = %q{Functionnal toolbox for Ruby}
|
|
13
|
+
s.description = <<EOF
|
|
14
|
+
Funkr is a functionnal toolbox for the Ruby language.
|
|
15
|
+
|
|
16
|
+
In particular, it offers a simple mechanism to create Algebraïc Data
|
|
17
|
+
Types and do pattern matching on them.
|
|
18
|
+
|
|
19
|
+
It also provide modules for common categories (Monoid, Monad,
|
|
20
|
+
Functor, Applicative ...), and extends common types to support
|
|
21
|
+
categories they belongs to (Array, Hash ...). Categories can also be
|
|
22
|
+
used with custom types, see provided classes.
|
|
23
|
+
|
|
24
|
+
Array and Hash classes are extended with methods providing correct
|
|
25
|
+
behaviour with respect to categories. Enumerable module comes with
|
|
26
|
+
a lot of useful functions for working with lists and sets. See the
|
|
27
|
+
module documentation and the test suite for examples.
|
|
28
|
+
EOF
|
|
14
29
|
|
|
15
30
|
s.rubyforge_project = "funkr"
|
|
16
31
|
|
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
|
+
- 27
|
|
9
|
+
version: 0.0.27
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Paul Rivier
|
|
@@ -32,7 +32,17 @@ dependencies:
|
|
|
32
32
|
version: 0.9.2
|
|
33
33
|
type: :development
|
|
34
34
|
version_requirements: *id001
|
|
35
|
-
description: "
|
|
35
|
+
description: "Funkr is a functionnal toolbox for the Ruby language.\n\n\
|
|
36
|
+
In particular, it offers a simple mechanism to create Algebra\xC3\xAFc Data\n\
|
|
37
|
+
Types and do pattern matching on them.\n\n\
|
|
38
|
+
It also provide modules for common categories (Monoid, Monad,\n\
|
|
39
|
+
Functor, Applicative ...), and extends common types to support\n\
|
|
40
|
+
categories they belongs to (Array, Hash ...). Categories can also be\n\
|
|
41
|
+
used with custom types, see provided classes.\n\n\
|
|
42
|
+
Array and Hash classes are extended with methods providing correct\n\
|
|
43
|
+
behaviour with respect to categories. Enumerable module comes with\n\
|
|
44
|
+
a lot of useful functions for working with lists and sets. See the\n\
|
|
45
|
+
module documentation and the test suite for examples.\n"
|
|
36
46
|
email:
|
|
37
47
|
- paul (dot) r (dot) ml (at) gmail (dot) com
|
|
38
48
|
executables: []
|
|
@@ -105,6 +115,6 @@ rubyforge_project: funkr
|
|
|
105
115
|
rubygems_version: 1.3.7
|
|
106
116
|
signing_key:
|
|
107
117
|
specification_version: 3
|
|
108
|
-
summary:
|
|
118
|
+
summary: Functionnal toolbox for Ruby
|
|
109
119
|
test_files: []
|
|
110
120
|
|