-
Notifications
You must be signed in to change notification settings - Fork 7
/
edn_turbo.gemspec
43 lines (33 loc) · 1.35 KB
/
edn_turbo.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
40
41
42
43
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'edn_turbo/version'
Gem::Specification.new do |s|
s.name = 'edn_turbo'
s.version = EDNT::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.6.0'
s.required_rubygems_version = Gem::Requirement.new('>= 0') if
s.respond_to? :required_rubygems_version=
s.authors = ['Ed Porras']
s.email = '[email protected]'
# s.date = EDNT::RELEASE_DATE
s.summary = 'Read EDN files'
s.description = 'Optimized plugin for parsing EDN files using ragel'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
.grep_v(/\.gem/)
.grep_v(/\.txt/)
.grep_v(/\.edn/)
s.extensions = ['ext/edn_turbo/extconf.rb']
s.executables = ['ppedn']
s.homepage = 'http://rubygems.org/gems/edn_turbo'
s.require_paths = ['lib']
# s.rubygems_version = '1.6.2'
s.add_runtime_dependency('edn2023', '~> 1.1')
s.add_runtime_dependency('rake', '>= 12.3', '< 14.0')
s.add_development_dependency('pry-byebug', '~> 3.9')
s.add_development_dependency('rake-compiler', '~> 1.2')
s.add_development_dependency('rspec', '~> 3.11')
s.add_development_dependency('rubocop', '~> 1.28')
# s.specification_version = 3 if s.respond_to? :specification_version
end