Use qml instead of qtbindings
This commit is contained in:
parent
17ba2d67b6
commit
e7618adf78
4 changed files with 7 additions and 2 deletions
|
@ -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
|
$ 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
|
## Installation
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
||||||
.concat(Dir['*/**/*_ui.rb'])
|
.concat(Dir['*/**/*_ui.rb'])
|
||||||
.concat(Dir['*/**/*_qrc.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.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@ Gem::Specification.new do |spec|
|
||||||
spec.add_development_dependency "terminal-notifier-guard"
|
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"
|
spec.add_runtime_dependency "thor", "~> 0.19.1"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue