-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathgeo_pattern.gemspec
More file actions
25 lines (20 loc) · 806 Bytes
/
geo_pattern.gemspec
File metadata and controls
25 lines (20 loc) · 806 Bytes
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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "geo_pattern/version"
Gem::Specification.new do |spec|
spec.name = "geo_pattern"
spec.version = GeoPattern::VERSION
spec.authors = ["Jason Long"]
spec.email = ["jason@jasonlong.me"]
spec.summary = "Generate SVG beautiful patterns"
spec.description = "Generate SVG beautiful patterns"
spec.homepage = "https://github.com/jasonlong/geo_pattern"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.6"
spec.add_dependency "color", "~> 1.5"
spec.add_development_dependency "bundler", "~> 2.2"
end