-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmorsify.gemspec
37 lines (29 loc) · 1.32 KB
/
morsify.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
# frozen_string_literal: true
require_relative 'lib/morsify/version'
Gem::Specification.new do |spec|
spec.name = 'morsify'
spec.version = Morsify::VERSION
spec.authors = ['dionixs']
spec.email = ['di0nixs@protonmail.com']
spec.summary = 'Morse code encoder and decoder with supports Latin, Cyrillic.'
spec.homepage = 'https://github.com/dionixs/morsify'
spec.license = 'MIT'
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
else
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'
end
spec.executables = ['morsify']
spec.require_paths = ['lib']
spec.files = Dir.glob('{bin,lib,src,spec}/**/*') + %w[LICENSE README.md]
spec.required_ruby_version = ">=2.4.0"
spec.add_development_dependency 'bundler', '>= 2.2.10'
spec.add_development_dependency 'pry', '~> 0.12.2'
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.1'
spec.add_development_dependency 'rspec', '~> 3.9'
spec.add_dependency 'tty-prompt', '~> 0.20.0'
spec.add_dependency 'wavefile', '~> 1.1', '>= 1.1.1'
end