funkr 0.0.27 → 0.0.28

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README +3 -3
  2. data/funkr.gemspec +5 -1
  3. data/lib/funkr/version.rb +1 -1
  4. 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 Algebraïc Data
4
- Types and do pattern matching on them. For an exemple
5
- implementation, see provided classes.
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
@@ -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 Algebraïc Data
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
@@ -1,3 +1,3 @@
1
1
  module Funkr
2
- VERSION = "0.0.27"
2
+ VERSION = "0.0.28"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 27
9
- version: 0.0.27
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: "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"
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: []