-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctor.gemspec
More file actions
24 lines (19 loc) · 949 Bytes
/
functor.gemspec
File metadata and controls
24 lines (19 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
s.name = 'functor'
s.version = '1.0.1'
s.summary = 'Higher-Order Methods for Ruby'
s.description = 'By definition a Functor is simply a first class method, but these are ' \
'common in the form of Method and Proc. So for Ruby a Functor is more ' \
'specialized as a Higher-order function. Essentially, a Functor can vary ' \
'its behavior according to the operation applied to it.'
s.authors = ['Thomas Sawyer']
s.email = ['transfire@gmail.com']
s.homepage = 'https://github.com/rubyworks/functor'
s.license = 'BSD-2-Clause'
s.required_ruby_version = '>= 3.1'
s.files = Dir['lib/**/*', 'LICENSE.txt', 'README.md', 'HISTORY.md']
s.require_paths = ['lib']
s.add_development_dependency 'rake', '>= 13'
s.add_development_dependency 'lemon', '>= 0.9'
s.add_development_dependency 'ae', '>= 1.8'
end