-
Notifications
You must be signed in to change notification settings - Fork 194
/
shoes.gemspec
32 lines (27 loc) · 1.08 KB
/
shoes.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
# frozen_string_literal: true
version = File.read(File.expand_path('../VERSION', __FILE__)).strip
Gem::Specification.new do |s|
s.name = "shoes"
s.version = version
s.platform = Gem::Platform::RUBY
s.authors = ["Team Shoes"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/shoes/shoes4"
s.summary = 'Shoes is the best little GUI toolkit for Ruby. Shoes runs on JRuby only for now.'
s.description = 'Shoes is the best little GUI toolkit for Ruby. Shoes makes building for Mac, Windows, and Linux super simple. Shoes runs on JRuby only for now.'
s.license = 'MIT'
s.files = Dir[
"LICENSE", "README.md",
"lib/**/*",
"ext/install/**/*",
"samples/*",
"samples/lib/*",
"samples/potato_chopping/*",
]
s.add_dependency "shoes-core", version
s.add_dependency "shoes-swt", version
s.add_dependency "shoes-manual", "~> 4.0.0", ">= 4.0.0"
# Curious why we don't install shoes? See ext/Rakefile for the nitty-gritty.
s.executables = ['shoes-stub']
s.extensions = ['ext/install/Rakefile']
end