diff --git a/README.md b/README.md index 68533fc..755731f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/bin/qasim-cli b/exe/qasim-cli similarity index 100% rename from bin/qasim-cli rename to exe/qasim-cli diff --git a/bin/qasim-gui b/exe/qasim-gui similarity index 100% rename from bin/qasim-gui rename to exe/qasim-gui diff --git a/qasim.gemspec b/qasim.gemspec index 08d9b0f..d8dcda0 100644 --- a/qasim.gemspec +++ b/qasim.gemspec @@ -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