-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby-perlin-2D-map-generator.gemspec
31 lines (26 loc) · 1.56 KB
/
ruby-perlin-2D-map-generator.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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'ruby-perlin-2D-map-generator'
s.version = '0.0.4'
s.summary = 'Procedurally generate seeded and customizable 2D maps, rendered with ansi colours or described in a 2D array of hashes'
s.description = 'A gem that procedurally generates a seeded and customizable 2D map using perlin noise. Map can be rendered in console ' \
'using ansi colors or returned as 2D array of hashes describing each tile and binome. Completely' \
'customizable, use the --help option for full usage details.'
s.authors = ['Tyler Matthews (matthewstyler)']
s.email = '[email protected]'
s.files = `git ls-files bin lib *.md LICENSE`.split("\n")
s.license = 'MIT'
s.executables = ['ruby-perlin-2D-map-generator']
s.require_paths = ['lib']
s.required_ruby_version = '>= 3.0'
s.homepage = 'https://github.com/matthewstyler/ruby-perlin-2D-map-generator'
s.metadata['source_code_uri'] = 'https://github.com/matthewstyler/ruby-perlin-2D-map-generator'
s.metadata['bug_tracker_uri'] = 'https://github.com/matthewstyler/ruby-perlin-2D-map-generator/issues'
s.add_dependency 'perlin', '~> 0.2.2'
s.add_dependency 'tty-option', '~> 0.3.0'
s.add_development_dependency 'minitest', '~> 5.18'
s.add_development_dependency 'mocha', '~> 2.0.4'
s.add_development_dependency 'rake', '~> 13.0.6'
s.add_development_dependency 'rubocop', '~> 1.54.1'
s.add_development_dependency 'simplecov', '~> 0.22.0'
end