-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathramda-ruby.gemspec
More file actions
26 lines (20 loc) · 819 Bytes
/
ramda-ruby.gemspec
File metadata and controls
26 lines (20 loc) · 819 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
25
26
# coding: utf-8
$LOAD_PATH << File.expand_path('../lib', __FILE__)
require 'ramda/version'
Gem::Specification.new do |s|
s.name = 'ramda-ruby'
s.version = Ramda::VERSION
s.authors = ['Vadim Lazebny']
s.email = ['vadim.lazebny@gmail.com']
s.summary = 'Ruby version of Ramda Js library.'
s.description = s.summary
s.homepage = 'https://github.com/lazebny/ramda-ruby'
s.license = 'MIT'
s.files = Dir['README*', 'LICENSE*', 'CHANGELOG*', 'ROADMAP*']
s.files += Dir['{lib}/**/*']
s.test_files = Dir['{spec}/**/*']
s.extra_rdoc_files = Dir['README*', 'LICENSE*', 'CHANGELOG*', 'ROADMAP*']
s.extra_rdoc_files += Dir['{docs}/**/*.{txt,md}']
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.9.3'
end