Sha256: 1837c671472f8787b124dff65b831714bb838e960e0d7d28ee5af5f99a6b1b83

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'qasim/version'

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         = ["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.}
  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{^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"
  spec.add_development_dependency "rake"

  spec.add_runtime_dependency "qtbindings", "~> 4.8.6.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
qasim-0.1.11.dev.2014102811 qasim.gemspec