-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtracksperanto.gemspec
54 lines (49 loc) · 2.11 KB
/
tracksperanto.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
44
45
46
47
48
49
50
51
52
53
54
require_relative 'lib/tracksperanto/version'
Gem::Specification.new do |spec|
spec.name = "tracksperanto"
spec.version = Tracksperanto::VERSION
spec.required_ruby_version = '>= 2.1.0'
# 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.authors = ["Julik Tarkhanov"]
spec.date = Time.now.utc.strftime("%Y-%m-%d")
spec.description = "Converts 2D track exports between different apps like Flame, MatchMover, PFTrack..."
spec.email = "[email protected]"
spec.executables = ["tracksperanto"]
spec.extra_rdoc_files = [
"README.md"
]
spec.homepage = "http://guerilla-di.org/tracksperanto"
spec.licenses = ["MIT"]
spec.require_paths = ["lib"]
spec.rubygems_version = "1.8.23.2"
spec.summary = "A universal 2D tracks converter"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.start_with?("test/") # Remove the sample files
end
spec.files << "test/HELP_WHY_TESTS_ARE_EMPTY.md"
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "obuf", "~> 1"
spec.add_runtime_dependency "tickly", "~> 2", ">= 2.1.7"
spec.add_runtime_dependency "bychar", "~> 3"
spec.add_runtime_dependency "progressive_io", "~> 1"
spec.add_runtime_dependency "flame_channel_parser", "~> 4", ">= 4.1.1"
spec.add_runtime_dependency "progressbar", "0.10.0"
spec.add_runtime_dependency "update_hints", "~> 1"
spec.add_runtime_dependency "rexml"
spec.add_development_dependency "bundler"
spec.add_development_dependency "test-unit", '~> 3'
spec.add_development_dependency "approximately"
spec.add_development_dependency "rake"
spec.add_development_dependency "linebyline"
spec.add_development_dependency "flexmock"
spec.add_development_dependency "cli_test", "~>1"
end