forked from shoes/shoes4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoes-dsl.gemspec
23 lines (20 loc) · 970 Bytes
/
shoes-dsl.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_relative 'lib/shoes/version'
require_relative 'manifests/shoes-dsl'
Gem::Specification.new do |s|
s.name = "shoes-dsl"
s.version = Shoes::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Team Shoes"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/shoes/shoes4"
s.summary = %q{The best little DSL for the best little GUI toolkit for Ruby.}
s.description = %q{Shoes is the best little GUI toolkit for Ruby. Shoes makes building for Mac, Windows, and Linux super simple. This is the DSL for writing your app. You'll need a backend to run it.}
s.license = 'MIT'
s.files = ShoesDslManifest.files
s.test_files = ShoesDslManifest.test_files
s.require_paths = ["lib"]
# Curious why we don't install shoes? See ext/Rakefile for the nitty-gritty.
s.executables = ['shoes-stub', 'ruby-shoes']
s.extensions = ['ext/install/Rakefile']
end