This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqasim.gemspec
45 lines (39 loc) · 1.72 KB
/
qasim.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'qasim/constants'
Gem::Specification.new do |spec|
spec.name = "qasim"
spec.version = if `git branch`.split($/).include?("* develop") then
Qasim::APP_VERSION + '.dev.' + Time.now.utc.strftime('%Y%m%d%H')
else
Qasim::APP_VERSION
end
spec.authors = ["Glenn Y. Rolland"]
spec.email = ["[email protected]"]
spec.summary = %q{Easy mount solution for SSH filesystems.}
spec.description = %q{Qasim is a front-end for sshfs, the filesystem
client based on fuse and ssh. It provides automating and global settings
control for sshfs mounts.}
spec.homepage = "http://glenux.github.io/qasim"
spec.license = "GPL-3"
spec.files = `git ls-files`.split($/)
.concat(Dir['*/**/*_ui.rb'])
.concat(Dir['*/**/*_qrc.rb'])
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"]
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.7.0"
spec.add_development_dependency "minitest-reporters"
spec.add_development_dependency "pry", "~> 0.10.1"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "guard"
spec.add_development_dependency "guard-minitest"
spec.add_development_dependency "rb-fsevent"
spec.add_development_dependency "terminal-notifier-guard"
#spec.add_runtime_dependency "qtbindings", "~> 4.8.6"
spec.add_runtime_dependency "qml"
spec.add_runtime_dependency "thor", "~> 0.19.1"
end