qasim/qasim.gemspec

39 lines
1.5 KiB
Ruby
Raw Normal View History

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
2015-08-10 15:00:09 +00:00
require 'qasim/constants'
Gem::Specification.new do |spec|
spec.name = "qasim"
2014-10-28 11:55:21 +00:00
spec.version = if `git branch`.split($/).include?("* develop") then
2014-10-28 13:12:10 +00:00
Qasim::APP_VERSION + '.dev.' + Time.now.utc.strftime('%Y%m%d%H')
2014-10-28 11:55:21 +00:00
else
Qasim::APP_VERSION
end
spec.authors = ["Glenn Y. Rolland"]
spec.email = ["glenux@glenux.net"]
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.}
2014-04-02 23:14:02 +00:00
spec.homepage = "http://glenux.github.io/qasim"
spec.license = "GPL-3"
spec.files = `git ls-files`.split($/)
2014-10-27 20:04:36 +00:00
.concat(Dir['*/**/*_ui.rb'])
.concat(Dir['*/**/*_qrc.rb'])
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.5"
2015-08-09 08:39:57 +00:00
spec.add_development_dependency "rake", "~> 10.4.2"
2015-08-10 15:00:09 +00:00
spec.add_development_dependency "minitest", "~> 5.7.0"
spec.add_development_dependency "pry", "~> 0.10.1"
spec.add_development_dependency "simplecov"
2014-10-27 20:04:36 +00:00
2014-10-29 22:05:30 +00:00
spec.add_runtime_dependency "qtbindings", "~> 4.8.6"
spec.add_runtime_dependency "thor", "~> 0.19.1"
end