functional-ruby 0.7.6 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -5
  3. data/lib/functional/version.rb +1 -1
  4. metadata +6 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14136cd0f249e13a47167eb15da17999e3f2161b
4
- data.tar.gz: 5357bb1ecb2c5ea06b852ce6b0327156200a7799
3
+ metadata.gz: 29b9fc51a00acbd56545dc7f78fa1987fb254e47
4
+ data.tar.gz: f34dbe382c08f6d38c4047ddbae22f4eadfd50ae
5
5
  SHA512:
6
- metadata.gz: 42cb06291b4a19037f01674a1f887820bfd2d4d27fd257ed2a25ca6e3422782bc047348ccbfb16b21efdb635f99133efd45207ee6e12ede2dbb35eaf7c06a25f
7
- data.tar.gz: dab8c5f0b50159fb42f38e8ca822716fca9802521270a2bdcee46334901fd9aa48e088f3f4676f4083d0e527c572fd4c5d9f54a096765ffd9e1dea906a07b2b8
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, and 2.0. This library is pure Ruby and has no gem dependencies. It should be
96
- fully compatible with any Ruby interpreter that is 1.9.x compliant. I simply don't know enough
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
 
@@ -1,3 +1,3 @@
1
1
  module Functional
2
- VERSION = '0.7.6'
2
+ VERSION = '0.7.7'
3
3
  end
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.6
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: 2013-10-17 00:00:00.000000000 Z
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: |2
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.5
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.