functional-ruby 0.7.6 → 0.7.7
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 +4 -4
- data/README.md +2 -5
- data/lib/functional/version.rb +1 -1
- metadata +6 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29b9fc51a00acbd56545dc7f78fa1987fb254e47
|
|
4
|
+
data.tar.gz: f34dbe382c08f6d38c4047ddbae22f4eadfd50ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b740d81ce57e2e0e6136081b8a40819197979d6e4bff1caa87670e0a1491f7681b9cfa201323cf8d9418bf63277fa43443722b80df474fedc0481e38e012a3a5
|
|
7
|
+
data.tar.gz: f94b25d9b50e5f66131bbff66134da8e6a9af06a381a82c553d3139fc09aa15030465d0edd236b7ba68cd42be1acc6096764f3b7cd64617fcf528b1c2899048a
|
data/README.md
CHANGED
|
@@ -92,11 +92,8 @@ Several features from Erlang, Go, and Clojure have been implemented thus far:
|
|
|
92
92
|
|
|
93
93
|
### Supported Ruby versions
|
|
94
94
|
|
|
95
|
-
MRI 1.9.2, 1.9.3,
|
|
96
|
-
fully compatible with any Ruby interpreter that is 1.9.x compliant.
|
|
97
|
-
about JRuby, Rubinius, or the others to fully support them. I can promise good karma and
|
|
98
|
-
attribution on this page to anyone wishing to take responsibility for verifying compaitibility
|
|
99
|
-
with any Ruby other than MRI.
|
|
95
|
+
MRI 1.9.2, 1.9.3, 2.0, 2.1, and JRuby (1.9 mode). This library is pure Ruby and has no gem dependencies.
|
|
96
|
+
It should be fully compatible with any Ruby interpreter that is 1.9.x compliant.
|
|
100
97
|
|
|
101
98
|
### Install
|
|
102
99
|
|
data/lib/functional/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: functional-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jerry D'Antonio
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -33,8 +33,9 @@ extra_rdoc_files:
|
|
|
33
33
|
- README.md
|
|
34
34
|
- LICENSE
|
|
35
35
|
files:
|
|
36
|
-
- README.md
|
|
37
36
|
- LICENSE
|
|
37
|
+
- README.md
|
|
38
|
+
- lib/functional.rb
|
|
38
39
|
- lib/functional/behavior.rb
|
|
39
40
|
- lib/functional/behaviour.rb
|
|
40
41
|
- lib/functional/catalog.rb
|
|
@@ -46,7 +47,6 @@ files:
|
|
|
46
47
|
- lib/functional/sort.rb
|
|
47
48
|
- lib/functional/utilities.rb
|
|
48
49
|
- lib/functional/version.rb
|
|
49
|
-
- lib/functional.rb
|
|
50
50
|
- lib/functional_ruby.rb
|
|
51
51
|
- md/behavior.md
|
|
52
52
|
- md/catalog.md
|
|
@@ -72,16 +72,7 @@ homepage: https://github.com/jdantonio/functional-ruby/
|
|
|
72
72
|
licenses:
|
|
73
73
|
- MIT
|
|
74
74
|
metadata: {}
|
|
75
|
-
post_install_message:
|
|
76
|
-
hello() -> io:format("Hello, World!").
|
|
77
|
-
|
|
78
|
-
package main
|
|
79
|
-
import "fmt"
|
|
80
|
-
func main() {
|
|
81
|
-
fmt.Printf("hello, world")
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
(def hello (fn [] "Hello world"))
|
|
75
|
+
post_install_message:
|
|
85
76
|
rdoc_options: []
|
|
86
77
|
require_paths:
|
|
87
78
|
- lib
|
|
@@ -97,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
97
88
|
version: '0'
|
|
98
89
|
requirements: []
|
|
99
90
|
rubyforge_project:
|
|
100
|
-
rubygems_version: 2.1
|
|
91
|
+
rubygems_version: 2.2.1
|
|
101
92
|
signing_key:
|
|
102
93
|
specification_version: 4
|
|
103
94
|
summary: Erlang and Clojure inspired functional programming tools for Ruby.
|