-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuke.gemspec
23 lines (19 loc) · 885 Bytes
/
uke.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.dirname(__FILE__) + "/lib/uke/version"
Gem::Specification.new do |gem|
gem.name = "uke"
gem.version = Uke::VERSION
gem.summary = "𝄝 Displays popular ukulele chords"
gem.description = "𝄝 Displays popular ukulele chords for the popular `GCEA` tuning"
gem.authors = ["Jan Lelis"]
gem.email = ["hi@ruby.consulting"]
gem.homepage = "https://github.com/janlelis/uke"
gem.license = "MIT"
gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.0"
gem.add_dependency 'rationalist', '~> 2.0'
gem.add_dependency 'artii', '~> 2.1'
end