ribimaybe 0.0.2 → 0.0.3

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTcyZmI0MDYxNTRkZDg2ZmRlOWI1NzhlYTA2MGY3YTJmYjZkM2NlMw==
4
+ OTgzNzMyZjQwYzhhN2UwYTU4OGNlOWJiN2M5NmI5MzE0ZTAzMTJiYQ==
5
5
  data.tar.gz: !binary |-
6
- ZDg1ZWRmYWEwZmQ3MDA5Y2EzZDE4MWZmZDE1ZTc2NDE4ZmZkNDVkMw==
6
+ ODgwZTQ1ZTNiMGRmM2E2YWY4ZGE5NmQ1MTRhMzUwM2RhMmRmNWRjMg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZmUzMzdmMDBlZWRkZWJmNjQwMTM4NGNkOTExZWUxMjU0OTdhNGYyMzljOTZi
10
- OWFlNzljNWI3Y2YyMjgzNjQwOTI3OTNlM2ViMDQ2N2U2NTU0ZWU5YjBjYTFj
11
- NzhlNzFkMWZkMTA4MGIyY2Y3NzBmMTI3MjUxMjA2MmE0ODgxZjc=
9
+ NGI0OGFiMmIzYjgxODk3OGNlYzM0OWNmZDMxMTg2Mjc1MzcxYzhkYWNiZjc2
10
+ ZDRhN2MwNDgyY2EzYjhiYWNjMzUzYjgwZTlhOWJhZDZhZWMzZTVhZWFmYThl
11
+ NWYyZGNjN2U5MjM0YmUyOTQ1NzVlODYxOTQ3ZDhkOTkwNjFiMWY=
12
12
  data.tar.gz: !binary |-
13
- YmNkN2QwODk1YTc1MjE1ZjA5M2I3OWE2MzJhM2E5NWMzZDk4NDNmYWE0ZWY5
14
- OGI4Njc3ZmE3ZTg1ZWJjNjc3YTg3NTQ2ZWJiYjZjOTAxYzljNWM3N2UxNWU4
15
- MWNkNmI5ZWRhYjZmNGNlNmJiY2I5MTIxMjY0ZGFiYTUxM2ZhZGY=
13
+ ODE4NWExYmQ0MGM5MGIyYjRlMWM3YWQ0ZTA3MTBkNTM5NGFlMGRhMWNiY2Q0
14
+ YzRiMmMxZGQ1NDc2ODFkMzMzMDFkZDRjNGJjNWY1MThjYzBkN2M1M2U3Yjcx
15
+ MjFhMmIxMjA3NjZlNzQyN2ZlMTU0OTJkMjI5NTA5MmFjMTdhYzc=
data/.travis.yml CHANGED
@@ -2,4 +2,4 @@ language: ruby
2
2
  rvm:
3
3
  - 1.9.3
4
4
  script:
5
- - bundle exec rake spec
5
+ - bundle exec rake
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
@@ -0,0 +1,3 @@
1
+ module Ribimaybe
2
+ VERSION = "0.0.3"
3
+ end
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 = "ribimaybe"
8
- spec.version = Ribimaybe::VERSION
9
- spec.authors = ["unsymbol"]
10
- spec.email = ["hello@philipcunningham.org"]
11
- spec.description = "Maybe Functor, Applicative and Monad"
12
- spec.summary = "A tiny Ruby library that provides a Maybe datatype which is a Functor, Applicative Functor and Monad instance."
13
- spec.homepage = "https://github.com/unsymbol/ribimaybe"
14
- spec.license = "MIT"
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 = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
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.2
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: '0'
117
+ version: 1.9.3
117
118
  required_rubygems_version: !ruby/object:Gem::Requirement
118
119
  requirements:
119
120
  - - ! '>='