forked from ruby-next/ruby-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-next-core.gemspec
39 lines (30 loc) · 1.33 KB
/
ruby-next-core.gemspec
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
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true
require_relative "lib/ruby-next/version"
Gem::Specification.new do |s|
s.name = "ruby-next-core"
s.version = RubyNext::VERSION
s.authors = ["Vladimir Dementyev"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/palkan/ruby-next"
s.summary = "Ruby Next core functionality"
s.description = %(
Ruby Next Core is a zero deps version of Ruby Next meant to be used
as as dependency in your gems.
It contains all the polyfills and utility files but doesn't require transpiler
dependencies to be install.
)
s.metadata = {
"bug_tracker_uri" => "http://github.com/ruby-next/ruby-next/issues",
"changelog_uri" => "https://github.com/ruby-next/ruby-next/blob/master/CHANGELOG.md",
"documentation_uri" => "http://github.com/ruby-next/ruby-next/blob/master/README.md",
"homepage_uri" => "http://github.com/ruby-next/ruby-next",
"source_code_uri" => "http://github.com/ruby-next/ruby-next"
}
s.license = "MIT"
s.files = Dir.glob("lib/**/*") + Dir.glob("lib/.rbnext/**/*") + Dir.glob("bin/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
s.required_ruby_version = ">= 2.2.0"
s.require_paths = ["lib"]
s.executables = ["ruby-next"]
s.add_development_dependency "ruby-next-parser", ">= 3.1.1.0"
s.add_development_dependency "unparser", "~> 0.6.0"
end