-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwrapped.gemspec
21 lines (18 loc) · 912 Bytes
/
wrapped.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "wrapped/version"
Gem::Specification.new do |s|
s.name = "wrapped"
s.version = Wrapped::VERSION
s.authors = ["Mike Burns"]
s.email = ["mike@mike-burns.com"]
s.homepage = "http://github.com/mike-burns/wrapped"
s.license = 'BSD'
s.summary = %q{The maybe functor for Ruby}
s.description = %q{The unchecked nil is a dangerous concept leading to NoMethodErrors at runtime. It would be better if you were forced to explictly unwrap potentially nil values. This library provides mechanisms and convenience methods for making this more possible.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_development_dependency("rspec", "~> 3.1.0")
s.add_development_dependency("rake")
end