-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby-perlin-2D-map-generator.gemspec
34 lines (28 loc) · 1.79 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
32
33
34
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'ruby-perlin-2D-map-generator'
s.version = '0.0.7'
s.summary = 'Procedurally generate seeded and customizable 2D maps with optional roads and towns, 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 with optional roads 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 = 'matthews.tyl@gmail.com'
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.post_install_message = 'Thanks for installing! Star on github if you found this useful, or raise issues and requests.'
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.1.0'
s.add_development_dependency 'pry-byebug', '~> 3.10.1'
s.add_development_dependency 'rake', '~> 13.1.0'
s.add_development_dependency 'rubocop', '~> 1.58.0'
s.add_development_dependency 'simplecov', '~> 0.22.0'
end