ribimaybe 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/.travis.yml +1 -1
- data/README.md +3 -0
- data/lib/version.rb +3 -0
- data/ribimaybe.gemspec +13 -12
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OTgzNzMyZjQwYzhhN2UwYTU4OGNlOWJiN2M5NmI5MzE0ZTAzMTJiYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ODgwZTQ1ZTNiMGRmM2E2YWY4ZGE5NmQ1MTRhMzUwM2RhMmRmNWRjMg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NGI0OGFiMmIzYjgxODk3OGNlYzM0OWNmZDMxMTg2Mjc1MzcxYzhkYWNiZjc2
|
10
|
+
ZDRhN2MwNDgyY2EzYjhiYWNjMzUzYjgwZTlhOWJhZDZhZWMzZTVhZWFmYThl
|
11
|
+
NWYyZGNjN2U5MjM0YmUyOTQ1NzVlODYxOTQ3ZDhkOTkwNjFiMWY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ODE4NWExYmQ0MGM5MGIyYjRlMWM3YWQ0ZTA3MTBkNTM5NGFlMGRhMWNiY2Q0
|
14
|
+
YzRiMmMxZGQ1NDc2ODFkMzMzMDFkZDRjNGJjNWY1MThjYzBkN2M1M2U3Yjcx
|
15
|
+
MjFhMmIxMjA3NjZlNzQyN2ZlMTU0OTJkMjI5NTA5MmFjMTdhYzc=
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Ribimaybe
|
2
2
|
|
3
|
+
[![Travis](https://travis-ci.org/unsymbol/ribimaybe.svg?branch=master)](http://travis-ci.org/unsymbol/ribimaybe)
|
4
|
+
[![Code Climate](https://codeclimate.com/github/unsymbol/ribimaybe.png)](https://codeclimate.com/github/unsymbol/ribimaybe)
|
5
|
+
|
3
6
|
![](maybe.gif)
|
4
7
|
|
5
8
|
A tiny Ruby library that provides a Maybe datatype which is a Functor,
|
data/lib/version.rb
ADDED
data/ribimaybe.gemspec
CHANGED
@@ -4,19 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require "version"
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name
|
8
|
-
spec.version
|
9
|
-
spec.
|
10
|
-
spec.
|
11
|
-
spec.
|
12
|
-
spec.
|
13
|
-
spec.
|
14
|
-
spec.
|
7
|
+
spec.name = "ribimaybe"
|
8
|
+
spec.version = Ribimaybe::VERSION
|
9
|
+
spec.required_ruby_version = ">= 1.9.3"
|
10
|
+
spec.authors = ["unsymbol"]
|
11
|
+
spec.email = ["hello@philipcunningham.org"]
|
12
|
+
spec.description = "Maybe Functor, Applicative and Monad"
|
13
|
+
spec.summary = "A tiny Ruby library that provides a Maybe datatype which is a Functor, Applicative Functor and Monad instance."
|
14
|
+
spec.homepage = "https://github.com/unsymbol/ribimaybe"
|
15
|
+
spec.license = "MIT"
|
15
16
|
|
16
|
-
spec.files
|
17
|
-
spec.executables
|
18
|
-
spec.test_files
|
19
|
-
spec.require_paths
|
17
|
+
spec.files = `git ls-files`.split($/)
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
|
+
spec.require_paths = ["lib"]
|
20
21
|
|
21
22
|
spec.add_development_dependency "bundler", "~> 1.3"
|
22
23
|
spec.add_development_dependency "pry"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ribimaybe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- unsymbol
|
@@ -94,6 +94,7 @@ files:
|
|
94
94
|
- README.md
|
95
95
|
- Rakefile
|
96
96
|
- lib/ribimaybe.rb
|
97
|
+
- lib/version.rb
|
97
98
|
- maybe.gif
|
98
99
|
- ribimaybe.gemspec
|
99
100
|
- spec/applicative_functor_spec.rb
|
@@ -113,7 +114,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
113
114
|
requirements:
|
114
115
|
- - ! '>='
|
115
116
|
- !ruby/object:Gem::Version
|
116
|
-
version:
|
117
|
+
version: 1.9.3
|
117
118
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
119
|
requirements:
|
119
120
|
- - ! '>='
|