qasim 0.1.11.dev.2014102811
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +31 -0
- data/Gemfile +7 -0
- data/LICENSE-GPL-3 +674 -0
- data/Makefile +180 -0
- data/README.md +81 -0
- data/Rakefile +1 -0
- data/TODO.md +28 -0
- data/bin/qasim-cli +89 -0
- data/bin/qasim-gui +300 -0
- data/conf/config +2 -0
- data/conf/default.map +32 -0
- data/conf/qasim.desktop +13 -0
- data/data/icons/qasim.128.png +0 -0
- data/data/icons/qasim.16.png +0 -0
- data/data/icons/qasim.256.png +0 -0
- data/data/icons/qasim.32.png +0 -0
- data/data/icons/qasim.64.png +0 -0
- data/data/icons/qasim.png +0 -0
- data/data/icons/qasim.svg +192 -0
- data/data/text/authors.html +7 -0
- data/data/text/gpl-3.0-standalone.html +694 -0
- data/data/text/thanks.html +0 -0
- data/debian/changelog +73 -0
- data/debian/compat +1 -0
- data/debian/control +13 -0
- data/debian/copyright +38 -0
- data/debian/dirs +3 -0
- data/debian/docs +0 -0
- data/debian/rules +80 -0
- data/debian/source/format +1 -0
- data/demo.map +29 -0
- data/examples/config +2 -0
- data/examples/default.map +32 -0
- data/lib/qasim.rb +11 -0
- data/lib/qasim/config.rb +56 -0
- data/lib/qasim/configold.rb +123 -0
- data/lib/qasim/constants.rb +11 -0
- data/lib/qasim/map.rb +225 -0
- data/lib/qasim/qasim.qrc +8 -0
- data/lib/qasim/ui.rb +7 -0
- data/lib/qasim/ui/about.rb +58 -0
- data/lib/qasim/ui/about.ui +192 -0
- data/lib/qasim/ui/listmaps.ui +59 -0
- data/lib/qasim/ui/preferences.rb +12 -0
- data/lib/qasim/ui/preferences.ui +90 -0
- data/lib/qasim/version.rb +5 -0
- data/man/qasim-cli.1 +98 -0
- data/man/qasim-gui.1 +98 -0
- data/man/sshfs-mapper.1 +98 -0
- data/mapparser.y +155 -0
- data/qasim.gemspec +34 -0
- data/sshfs-mapper.completion +24 -0
- data/sshfs-mapper.sh +253 -0
- metadata +147 -0
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: qasim
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.11.dev.2014102811
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Glenn Y. Rolland
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-10-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.5'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: qtbindings
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 4.8.6.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 4.8.6.0
|
55
|
+
description: "Qasim is a front-end for sshfs, the filesystem\n\tclient based on fuse
|
56
|
+
and ssh. It provides automating and global settings\n control for sshfs mounts."
|
57
|
+
email:
|
58
|
+
- glenux@glenux.net
|
59
|
+
executables:
|
60
|
+
- qasim-cli
|
61
|
+
- qasim-gui
|
62
|
+
extensions: []
|
63
|
+
extra_rdoc_files: []
|
64
|
+
files:
|
65
|
+
- ".gitignore"
|
66
|
+
- Gemfile
|
67
|
+
- Gemfile.lock
|
68
|
+
- LICENSE-GPL-3
|
69
|
+
- Makefile
|
70
|
+
- README.md
|
71
|
+
- Rakefile
|
72
|
+
- TODO.md
|
73
|
+
- bin/qasim-cli
|
74
|
+
- bin/qasim-gui
|
75
|
+
- conf/config
|
76
|
+
- conf/default.map
|
77
|
+
- conf/qasim.desktop
|
78
|
+
- data/icons/qasim.128.png
|
79
|
+
- data/icons/qasim.16.png
|
80
|
+
- data/icons/qasim.256.png
|
81
|
+
- data/icons/qasim.32.png
|
82
|
+
- data/icons/qasim.64.png
|
83
|
+
- data/icons/qasim.png
|
84
|
+
- data/icons/qasim.svg
|
85
|
+
- data/text/authors.html
|
86
|
+
- data/text/gpl-3.0-standalone.html
|
87
|
+
- data/text/thanks.html
|
88
|
+
- debian/changelog
|
89
|
+
- debian/compat
|
90
|
+
- debian/control
|
91
|
+
- debian/copyright
|
92
|
+
- debian/dirs
|
93
|
+
- debian/docs
|
94
|
+
- debian/rules
|
95
|
+
- debian/source/format
|
96
|
+
- demo.map
|
97
|
+
- examples/config
|
98
|
+
- examples/default.map
|
99
|
+
- lib/qasim.rb
|
100
|
+
- lib/qasim/config.rb
|
101
|
+
- lib/qasim/configold.rb
|
102
|
+
- lib/qasim/constants.rb
|
103
|
+
- lib/qasim/map.rb
|
104
|
+
- lib/qasim/qasim.qrc
|
105
|
+
- lib/qasim/qasim_qrc.rb
|
106
|
+
- lib/qasim/ui.rb
|
107
|
+
- lib/qasim/ui/about.rb
|
108
|
+
- lib/qasim/ui/about.ui
|
109
|
+
- lib/qasim/ui/about_ui.rb
|
110
|
+
- lib/qasim/ui/listmaps.ui
|
111
|
+
- lib/qasim/ui/listmaps_ui.rb
|
112
|
+
- lib/qasim/ui/preferences.rb
|
113
|
+
- lib/qasim/ui/preferences.ui
|
114
|
+
- lib/qasim/ui/preferences_ui.rb
|
115
|
+
- lib/qasim/version.rb
|
116
|
+
- man/qasim-cli.1
|
117
|
+
- man/qasim-gui.1
|
118
|
+
- man/sshfs-mapper.1
|
119
|
+
- mapparser.y
|
120
|
+
- qasim.gemspec
|
121
|
+
- sshfs-mapper.completion
|
122
|
+
- sshfs-mapper.sh
|
123
|
+
homepage: http://glenux.github.io/qasim
|
124
|
+
licenses:
|
125
|
+
- GPL-3
|
126
|
+
metadata: {}
|
127
|
+
post_install_message:
|
128
|
+
rdoc_options: []
|
129
|
+
require_paths:
|
130
|
+
- lib
|
131
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">"
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: 1.3.1
|
141
|
+
requirements: []
|
142
|
+
rubyforge_project:
|
143
|
+
rubygems_version: 2.2.2
|
144
|
+
signing_key:
|
145
|
+
specification_version: 4
|
146
|
+
summary: Easy mount solution for SSH filesystems.
|
147
|
+
test_files: []
|