sshfsmount 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.rubocop.yml +74 -0
- data/.travis.yml +8 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +15 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/exe/sshfsmount +156 -0
- data/lib/sshfsmount.rb +7 -0
- data/lib/sshfsmount/version.rb +5 -0
- data/sshfsmount.gemspec +34 -0
- metadata +157 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 15c81068a30c8ed5a61b3fcc19d7a6503036762d
|
4
|
+
data.tar.gz: '0943c0fbd855d60f5c349c29cba4fd209ab89e03'
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fdc671ab26209081bd02081aba7515a56c7fecbc6ea6e4162cc5866678e9323abe8db71d0d208f7dc6c426e72c329632c7652a989d58f3157db31a5c0e644fc2
|
7
|
+
data.tar.gz: a2a64b1d2500f7889fd46646f7e0e46c7a1c529a059fb8fcca7a456d987504766e5209c0d4c032ff169906c4615ea9ef9542a90aefb4d60922fcb038fbda03ec
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
AllCops:
|
2
|
+
TargetRubyVersion: 2.2
|
3
|
+
DisplayCopNames: true
|
4
|
+
|
5
|
+
# Metrics
|
6
|
+
Metrics/AbcSize:
|
7
|
+
Enabled: true
|
8
|
+
Max: 22
|
9
|
+
|
10
|
+
Metrics/BlockNesting:
|
11
|
+
Enabled: true
|
12
|
+
Max: 4
|
13
|
+
|
14
|
+
Metrics/ClassLength:
|
15
|
+
Enabled: true
|
16
|
+
Max: 250
|
17
|
+
|
18
|
+
Metrics/CyclomaticComplexity:
|
19
|
+
Enabled: true
|
20
|
+
|
21
|
+
Metrics/LineLength:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
Metrics/MethodLength:
|
25
|
+
Enabled: true
|
26
|
+
Max: 30
|
27
|
+
|
28
|
+
Metrics/ModuleLength:
|
29
|
+
Enabled: true
|
30
|
+
Max: 250
|
31
|
+
|
32
|
+
Metrics/ParameterLists:
|
33
|
+
Enabled: true
|
34
|
+
|
35
|
+
Metrics/PerceivedComplexity:
|
36
|
+
Enabled: true
|
37
|
+
|
38
|
+
# Style
|
39
|
+
Style/AsciiComments:
|
40
|
+
Enabled: false
|
41
|
+
|
42
|
+
Style/CollectionMethods:
|
43
|
+
Enabled: true
|
44
|
+
|
45
|
+
Style/ConditionalAssignment:
|
46
|
+
Enabled: false
|
47
|
+
|
48
|
+
Style/Documentation:
|
49
|
+
Enabled: false
|
50
|
+
|
51
|
+
Style/FormatString:
|
52
|
+
EnforcedStyle: percent
|
53
|
+
|
54
|
+
Style/HashSyntax:
|
55
|
+
EnforcedStyle: ruby19_no_mixed_keys
|
56
|
+
|
57
|
+
Style/MethodCalledOnDoEndBlock:
|
58
|
+
Enabled: true
|
59
|
+
|
60
|
+
Style/PercentLiteralDelimiters:
|
61
|
+
PreferredDelimiters:
|
62
|
+
'%i': '[]'
|
63
|
+
'%I': '[]'
|
64
|
+
'%w': '[]'
|
65
|
+
'%W': '[]'
|
66
|
+
|
67
|
+
Style/StringLiterals:
|
68
|
+
EnforcedStyle: double_quotes
|
69
|
+
|
70
|
+
Style/SymbolArray:
|
71
|
+
Enabled: true
|
72
|
+
|
73
|
+
Style/TrailingCommaInLiteral:
|
74
|
+
EnforcedStyleForMultiline: comma
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at nomoon@phoebus.ca. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Tim Bellefleur
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# SSHFSmount
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/nomoon/sshfsmount.svg?branch=master)](https://travis-ci.org/nomoon/sshfsmount)
|
4
|
+
[![Coverage Status](https://coveralls.io/repos/github/nomoon/sshfsmount/badge.svg?branch=master)](https://coveralls.io/github/nomoon/sshfsmount?branch=master)
|
5
|
+
[![Dependency Status](https://gemnasium.com/badges/github.com/nomoon/sshfsmount.svg)](https://gemnasium.com/github.com/nomoon/sshfsmount)
|
6
|
+
|
7
|
+
A simple front-end CLI to SSHFS.
|
8
|
+
|
9
|
+
*Currently unstable and only tested on OSX.*
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Add this line to your application's Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem "sshfsmount"
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install sshfsmount
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
For usage information, execute:
|
30
|
+
|
31
|
+
$ sshfsmount help
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/nomoon/sshfsmount. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Sshfsmount project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/nomoon/sshfsmount/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
require "rake/testtask"
|
5
|
+
require "rubocop/rake_task"
|
6
|
+
|
7
|
+
RuboCop::RakeTask.new
|
8
|
+
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
10
|
+
t.libs << "test"
|
11
|
+
t.libs << "lib"
|
12
|
+
t.test_files = FileList["test/**/*_test.rb"]
|
13
|
+
end
|
14
|
+
|
15
|
+
task default: %i[rubocop test]
|
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "sshfsmount"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/sshfsmount
ADDED
@@ -0,0 +1,156 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "gli"
|
5
|
+
require "json"
|
6
|
+
require "shellwords"
|
7
|
+
require "fileutils"
|
8
|
+
|
9
|
+
require "sshfsmount"
|
10
|
+
|
11
|
+
#
|
12
|
+
# Basic SSHFS flags
|
13
|
+
#
|
14
|
+
SSHFS_FLAGS = [
|
15
|
+
"-o local",
|
16
|
+
"-o workaround=nonodelaysrv",
|
17
|
+
"-o transform_symlinks",
|
18
|
+
"-o idmap=user",
|
19
|
+
"-C",
|
20
|
+
].freeze
|
21
|
+
|
22
|
+
#
|
23
|
+
# Locate config file.
|
24
|
+
#
|
25
|
+
CONFIG_FILE = [
|
26
|
+
File.join(Dir.home, ".sshfsmount.json"),
|
27
|
+
File.join(Dir.home, ".config", "sshfsmount.json"),
|
28
|
+
File.join(Dir.home, ".config", "sshfsmount", "sshfsmount.json"),
|
29
|
+
].select { |f| File.exist?(f) }.first.freeze
|
30
|
+
|
31
|
+
#
|
32
|
+
# Parse config file
|
33
|
+
#
|
34
|
+
CONFIG = (begin
|
35
|
+
if CONFIG_FILE.nil?
|
36
|
+
STDERR.puts "No config file found"
|
37
|
+
{}
|
38
|
+
else
|
39
|
+
JSON.parse(File.read(CONFIG_FILE), symbolize_names: true)
|
40
|
+
end
|
41
|
+
rescue JSON::ParserError => e
|
42
|
+
STDERR.puts "Parse error in config file `#{CONFIG_FILE}`: #{e}"
|
43
|
+
{}
|
44
|
+
end).freeze
|
45
|
+
|
46
|
+
#
|
47
|
+
# Create Mount-point Directory
|
48
|
+
#
|
49
|
+
def mkmountpoint(name)
|
50
|
+
local = File.expand_path(name)
|
51
|
+
if !Dir.exist?(local)
|
52
|
+
STDERR.puts "Creating mount-point directory #{local}"
|
53
|
+
FileUtils.mkdir_p(local)
|
54
|
+
elsif !Dir.empty?(local)
|
55
|
+
raise "Mount point #{local} already exists and is not empty"
|
56
|
+
elsif VERBOSE
|
57
|
+
STDERR.puts "Mount-point directory #{local} already exists and is empty"
|
58
|
+
end
|
59
|
+
local
|
60
|
+
end
|
61
|
+
|
62
|
+
#
|
63
|
+
# Delete mount-point directory
|
64
|
+
#
|
65
|
+
def rmmountpoint(name)
|
66
|
+
local = File.expand_path(name)
|
67
|
+
if !Dir.exist?(local)
|
68
|
+
STDERR.puts "Mount-point directory not found" if VERBOSE
|
69
|
+
elsif !Dir.empty?(local)
|
70
|
+
raise "Mount-point directory #{local} is not empty"
|
71
|
+
else
|
72
|
+
STDERR.puts "Deleting mount-point directory #{local}"
|
73
|
+
FileUtils.rmdir(local)
|
74
|
+
end
|
75
|
+
local
|
76
|
+
end
|
77
|
+
|
78
|
+
#
|
79
|
+
# Mount an SSHFS volume
|
80
|
+
#
|
81
|
+
def mount(mount_name, params)
|
82
|
+
local = mkmountpoint(params[:local])
|
83
|
+
volname = params[:volname] || mount_name
|
84
|
+
p_remote = Shellwords.escape(params[:remote])
|
85
|
+
p_local = Shellwords.escape(local)
|
86
|
+
p_volname = Shellwords.escape(volname)
|
87
|
+
port = (params[:port] || 22).to_i
|
88
|
+
cmd = "/usr/local/bin/sshfs #{p_remote} #{p_local} " \
|
89
|
+
"-o volname=\"#{p_volname}\" #{SSHFS_FLAGS.join(' ')} -p #{port}"
|
90
|
+
pgrep = `pgrep -f \"#{cmd}\"`
|
91
|
+
unless pgrep.empty?
|
92
|
+
raise "SSHFS process for #{mount_name} running already (PID: #{pgrep.strip}, " \
|
93
|
+
"Mount-point: #{p_local})"
|
94
|
+
end
|
95
|
+
puts "Mounting #{params[:remote]} to #{params[:local]} as \"#{volname}\""
|
96
|
+
STDERR.puts "> #{cmd}" if VERBOSE
|
97
|
+
system(cmd)
|
98
|
+
end
|
99
|
+
|
100
|
+
#
|
101
|
+
# Unmount an SSHFS volume
|
102
|
+
#
|
103
|
+
def unmount(mount_name, params)
|
104
|
+
local = File.expand_path(params[:local])
|
105
|
+
p_local = Shellwords.escape(local)
|
106
|
+
cmd = "diskutil unmount #{p_local}"
|
107
|
+
pgrep = `pgrep -f \"#{p_local}\"`
|
108
|
+
if pgrep.empty?
|
109
|
+
raise "No SSHFS process found with the mount-point for #{mount_name} (#{p_local})"
|
110
|
+
end
|
111
|
+
puts "Unmounting #{local}"
|
112
|
+
STDERR.puts "> #{cmd}" if VERBOSE
|
113
|
+
system(cmd)
|
114
|
+
rmmountpoint(local)
|
115
|
+
end
|
116
|
+
|
117
|
+
#
|
118
|
+
# GLI command-line app definition
|
119
|
+
#
|
120
|
+
include GLI::App
|
121
|
+
|
122
|
+
program_desc "A simple front-end CLI to SSHFS"
|
123
|
+
version Sshfsmount::VERSION
|
124
|
+
|
125
|
+
switch %i[u unmount], desc: "Unmount the volume", negatable: false
|
126
|
+
switch %i[v verbose], desc: "Show verbose output", negatable: false
|
127
|
+
|
128
|
+
desc "List active SSHFS processes"
|
129
|
+
command :active do |c|
|
130
|
+
c.action do
|
131
|
+
system("pgrep -fl sshfs")
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
#
|
136
|
+
# Define commands from data-file
|
137
|
+
#
|
138
|
+
extant_commands = commands.keys
|
139
|
+
CONFIG.reject { |name, _| extant_commands.include?(name) }.each do |mount_name, params|
|
140
|
+
desc "mount #{params[:remote]} to #{params[:local]}"
|
141
|
+
command mount_name do |c|
|
142
|
+
c.switch %i[u unmount], desc: "Unmount the volume", negatable: false
|
143
|
+
c.switch %i[v verbose], desc: "Show verbose output", negatable: false
|
144
|
+
c.action do |global_options, cmd_options|
|
145
|
+
VERBOSE = global_options[:v] || cmd_options[:v]
|
146
|
+
if global_options[:u] || cmd_options[:u]
|
147
|
+
unmount(mount_name, params)
|
148
|
+
else
|
149
|
+
mount(mount_name, params)
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
# Run the GLI app
|
156
|
+
exit run(ARGV)
|
data/lib/sshfsmount.rb
ADDED
data/sshfsmount.gemspec
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
lib = File.expand_path("../lib", __FILE__)
|
5
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
6
|
+
require "sshfsmount/version"
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = "sshfsmount"
|
10
|
+
spec.version = Sshfsmount::VERSION
|
11
|
+
spec.authors = ["Tim Bellefleur"]
|
12
|
+
spec.email = ["nomoon@phoebus.ca"]
|
13
|
+
|
14
|
+
spec.summary = "A simple front-end CLI to SSHFS"
|
15
|
+
spec.homepage = "https://github.com/nomoon/sshfsmount"
|
16
|
+
spec.license = "MIT"
|
17
|
+
spec.required_ruby_version = "~> 2.2"
|
18
|
+
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
|
+
f.match(%r{^(test|Gemfile\.lock|\.)/})
|
21
|
+
end
|
22
|
+
spec.bindir = "exe"
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
27
|
+
spec.add_development_dependency "rake", "~> 12.0"
|
28
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
29
|
+
spec.add_development_dependency "rubocop", "~> 0.49"
|
30
|
+
spec.add_development_dependency "coveralls", "~> 0.8"
|
31
|
+
|
32
|
+
spec.add_runtime_dependency "gli", "~> 2.16"
|
33
|
+
spec.add_runtime_dependency "json", "~> 2.0"
|
34
|
+
end
|
metadata
ADDED
@@ -0,0 +1,157 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sshfsmount
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tim Bellefleur
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-07-25 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.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '12.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '12.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubocop
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.49'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.49'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: coveralls
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.8'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.8'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: gli
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.16'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '2.16'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: json
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '2.0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '2.0'
|
111
|
+
description:
|
112
|
+
email:
|
113
|
+
- nomoon@phoebus.ca
|
114
|
+
executables:
|
115
|
+
- sshfsmount
|
116
|
+
extensions: []
|
117
|
+
extra_rdoc_files: []
|
118
|
+
files:
|
119
|
+
- ".gitignore"
|
120
|
+
- ".rubocop.yml"
|
121
|
+
- ".travis.yml"
|
122
|
+
- CODE_OF_CONDUCT.md
|
123
|
+
- Gemfile
|
124
|
+
- LICENSE.txt
|
125
|
+
- README.md
|
126
|
+
- Rakefile
|
127
|
+
- bin/console
|
128
|
+
- bin/setup
|
129
|
+
- exe/sshfsmount
|
130
|
+
- lib/sshfsmount.rb
|
131
|
+
- lib/sshfsmount/version.rb
|
132
|
+
- sshfsmount.gemspec
|
133
|
+
homepage: https://github.com/nomoon/sshfsmount
|
134
|
+
licenses:
|
135
|
+
- MIT
|
136
|
+
metadata: {}
|
137
|
+
post_install_message:
|
138
|
+
rdoc_options: []
|
139
|
+
require_paths:
|
140
|
+
- lib
|
141
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '2.2'
|
146
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - ">="
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '0'
|
151
|
+
requirements: []
|
152
|
+
rubyforge_project:
|
153
|
+
rubygems_version: 2.6.12
|
154
|
+
signing_key:
|
155
|
+
specification_version: 4
|
156
|
+
summary: A simple front-end CLI to SSHFS
|
157
|
+
test_files: []
|