ruby-monads 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1af43d29c4276218767541b961ca19fb65e5f48c35cfd880f33fd47a23a5c7e4
4
- data.tar.gz: 3da1575ae115a6c572720550a4b08b651ceaa04b75d43a9d643f8658e3b28f9a
3
+ metadata.gz: 55c6088fd478bb54ff23ab74a4fb4ec917c6eaebec241cc991ee1077ae247c85
4
+ data.tar.gz: ebe2892a398cade5dd74cef9ff9e2864739e6014e0007a078de690df0063282c
5
5
  SHA512:
6
- metadata.gz: 53328e008e31ecb7d4f08323e1c6665d7e93fbf72224cf5ee29b573e88bba14b4c67b9e740948ecd458281b48269589a8cd903144eb3ec2110981b1430e8e13d
7
- data.tar.gz: e33053dfad28ca2ba867061f35121e139c7aef399971fa8c92128840d16951c636526dbf8979cae712dc37e9a0befd70cd061f2b6d357bddd3181933bf892a6a
6
+ metadata.gz: b06c423bfec4694a595b56c090aa55777d2616d09e586acb4b7a3cb88ef9f447839da796f35bf1d3167e3cab7057c41baab9c3119a6fcd813d858a5539e874a7
7
+ data.tar.gz: 573f65c886609153eef163992f5212cad6cc63b70aba4386be4e74ecd2623d3d0605903ba8258768c7b130e50d41dd2aca2db35406d14a75a165695745d429d4
@@ -0,0 +1,6 @@
1
+ require_relative "ruby-monads/monad"
2
+
3
+ require_relative "ruby-monads/maybe"
4
+ require_relative "ruby-monads/result"
5
+
6
+ include Monads
File without changes
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ruby-monads"
3
- s.version = "0.2.0"
3
+ s.version = "0.3.0"
4
4
  s.summary = "Some common monads"
5
5
  s.description = "Simple and minimalist ruby implementation of some common monads"
6
6
  s.author = "Guillaume BOUDON"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-monads
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume BOUDON
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-10 00:00:00.000000000 Z
11
+ date: 2020-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cutest
@@ -41,10 +41,10 @@ files:
41
41
  - LICENSE
42
42
  - Makefile
43
43
  - README.md
44
- - lib/monads.rb
45
- - lib/monads/maybe.rb
46
- - lib/monads/monad.rb
47
- - lib/monads/result.rb
44
+ - lib/ruby-monads.rb
45
+ - lib/ruby-monads/maybe.rb
46
+ - lib/ruby-monads/monad.rb
47
+ - lib/ruby-monads/result.rb
48
48
  - ruby-monads.gemspec
49
49
  - test/helper.rb
50
50
  - test/maybe_test.rb
@@ -1,4 +0,0 @@
1
- require_relative "monads/monad"
2
-
3
- require_relative "monads/maybe"
4
- require_relative "monads/result"