shoes-swt.gemspec in shoes-swt-4.0.0.pre2 vs shoes-swt.gemspec in shoes-swt-4.0.0.pre3
- old
+ new
@@ -1,8 +1,7 @@
# -*- encoding: utf-8 -*-
-require_relative 'lib/shoes/swt/version'
-require_relative 'manifests/shoes-swt'
+require File.expand_path('lib/shoes/swt/version')
Gem::Specification.new do |s|
s.name = "shoes-swt"
s.version = Shoes::Swt::VERSION
s.platform = Gem::Platform::RUBY
@@ -11,14 +10,16 @@
s.homepage = "https://github.com/shoes/shoes4"
s.summary = %q{A JRuby and Swt backend for Shoes, the best little GUI toolkit for Ruby.}
s.description = %q{A JRuby and Swt backend for Shoes, the best little GUI toolkit for Ruby. Shoes makes building for Mac, Windows, and Linux super simple.}
s.license = 'MIT'
- s.files = ShoesSwtManifest.files
- s.test_files = ShoesSwtManifest.test_files
+ s.files = `git ls-files`.split($/)
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency "swt", "~>4.4"
s.add_dependency "after_do", "~>0.3"
- s.add_dependency "shoes-dsl", Shoes::Swt::VERSION
- s.add_dependency "furoshiki", "~>0.2.0" # For packaging
+ s.add_dependency "shoes-core", Shoes::Swt::VERSION
+ s.add_dependency "shoes-package", Shoes::Swt::VERSION
+
+ s.executables = ['shoes-swt']
end