Use qml instead of qtbindings

This commit is contained in:
Glenn Y. Rolland 2017-10-14 16:04:08 +02:00
parent 17ba2d67b6
commit e7618adf78
4 changed files with 7 additions and 2 deletions

View File

@ -21,6 +21,10 @@ As an example, for ruby 1.9.3-p392 with rbenv :
$ CONFIGURE_OPTS="--enable-shared" rbenv install 1.9.3-p392
For others versions of ruby with rbenv you can try :
$ CONFIGURE_OPTS="--enable-shared" rbenv install $(rbenv version |awk '{ print $1; }')
## Installation

View File

@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
.concat(Dir['*/**/*_ui.rb'])
.concat(Dir['*/**/*_qrc.rb'])
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
@ -39,6 +39,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "terminal-notifier-guard"
spec.add_runtime_dependency "qtbindings", "~> 4.8.6"
#spec.add_runtime_dependency "qtbindings", "~> 4.8.6"
spec.add_runtime_dependency "qml"
spec.add_runtime_dependency "thor", "~> 0.19.1"
end