mbed-autowriter 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 +9 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +26 -0
- data/Rakefile +1 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/exe/mbed-autowriter +65 -0
- data/lib/mbed/autowriter.rb +7 -0
- data/lib/mbed/autowriter/version.rb +5 -0
- data/mbed-autowriter.gemspec +25 -0
- metadata +99 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a2c7e6119fcca3b12358f115341368ec18dc9a13
|
4
|
+
data.tar.gz: 2b116d559659a3a151a5f07b6bd3711882243858
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a621c839858c2b5802fa2ea808ffa5b70ee1275661660795507c630aaec40bbc938fc8e6e8d098a6701bb3809c66920ef89c2749da52b9486942a09e4c251f97
|
7
|
+
data.tar.gz: 277611b6778f09ed344c018c1bfc4b9df257bd7bae20a6fe8ac692ad6b641ed8ea2208ed55aabb96b127c21b03126df43cda95b5256b4457b386935797e41262
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Yuichi Tateno
|
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,26 @@
|
|
1
|
+
# mbed-autowriter
|
2
|
+
|
3
|
+
When you download mbed hex,bin files in downloads dir, autowrite to mbed mount volume.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
$ gem install mbed-autowriter
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
```
|
12
|
+
$ mbed-autowriter
|
13
|
+
$ mbed-autowriter -d /path/your_downloads_dir/ # set download dir
|
14
|
+
$ mbed-autowriter -m /Volumes/NODE_L476RG/ # set mbed mount volume
|
15
|
+
```
|
16
|
+
|
17
|
+
If you want auto umount, add sudo.
|
18
|
+
|
19
|
+
```
|
20
|
+
$ sudo mbed-hex-autowriter
|
21
|
+
```
|
22
|
+
|
23
|
+
## License
|
24
|
+
|
25
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
26
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mbed/autowriter"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/exe/mbed-autowriter
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "fssm"
|
4
|
+
require "pathname"
|
5
|
+
require "fileutils"
|
6
|
+
require "mbed/autowriter"
|
7
|
+
require "optparse"
|
8
|
+
|
9
|
+
downloads_path = Pathname.new(ENV['HOME'] + '/Downloads/')
|
10
|
+
mbed_volume_path = Pathname.glob('/Volumes/*').find{|path| path.to_s.upcase.include?("MBED")}
|
11
|
+
|
12
|
+
opt = OptionParser.new
|
13
|
+
opt.on('-d [DOWNLOADS_PATH eg: ~/Documents/]') {|v| downloads_path = Pathname.new(v)}
|
14
|
+
opt.on('-m [MBED_VOLUEM_PATH eg: /Volumes/MBED/]') {|v| mbed_volume_path = Pathname.new(v)}
|
15
|
+
opt.parse!(ARGV)
|
16
|
+
|
17
|
+
unless downloads_path.exist?
|
18
|
+
abort("downloads_path #{downloads_path} is not found")
|
19
|
+
end
|
20
|
+
|
21
|
+
unless mbed_volume_path && mbed_volume_path.exist?
|
22
|
+
abort("mbed_volume_path #{mbed_volume_path} is not found")
|
23
|
+
end
|
24
|
+
|
25
|
+
puts "Donwloads Path: #{downloads_path}"
|
26
|
+
puts "mbed Volume Path: #{mbed_volume_path}"
|
27
|
+
|
28
|
+
monitor = FSSM::Monitor.new
|
29
|
+
|
30
|
+
monitor.path(downloads_path.to_s) do
|
31
|
+
glob '*.{hex,bin}'
|
32
|
+
target = nil
|
33
|
+
|
34
|
+
handler = lambda {|base, relative|
|
35
|
+
target = Pathname.new("#{base}/#{relative}")
|
36
|
+
|
37
|
+
puts "Found: #{relative}, move to: #{mbed_volume_path}"
|
38
|
+
retry_count = 3
|
39
|
+
begin
|
40
|
+
FileUtils.mv(target.to_s, mbed_volume_path.to_s + '/')
|
41
|
+
rescue Exception => e
|
42
|
+
if (retry_count -= 1) >= 0
|
43
|
+
sleep 2
|
44
|
+
retry
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
begin
|
49
|
+
Process.wait(spawn('umount', mbed_volume_path.to_s, out: STDOUT, err: "/dev/null"))
|
50
|
+
if $?.success?
|
51
|
+
puts "Succeed: umount #{mbed_volume_path}"
|
52
|
+
end
|
53
|
+
sleep 1
|
54
|
+
rescue FSSM::CallbackError, Errno::ECHILD => e
|
55
|
+
ensure
|
56
|
+
end
|
57
|
+
}
|
58
|
+
|
59
|
+
update(&handler)
|
60
|
+
create(&handler)
|
61
|
+
|
62
|
+
delete {|base, relative| }
|
63
|
+
end
|
64
|
+
|
65
|
+
monitor.run
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mbed/autowriter/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "mbed-autowriter"
|
8
|
+
spec.version = Mbed::Autowriter::VERSION
|
9
|
+
spec.authors = ["Yuichi Tateno"]
|
10
|
+
spec.email = ["hotchpotch@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{mbed bin,hex files autowrite to mount voluem}
|
13
|
+
spec.description = %q{mbed bin,hex files autowrite to mount voluem}
|
14
|
+
spec.homepage = "https://github.com/hotchpotch/mbed-autowriter"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_dependency "fssm"
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mbed-autowriter
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yuichi Tateno
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-02-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: fssm
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.10'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description: mbed bin,hex files autowrite to mount voluem
|
56
|
+
email:
|
57
|
+
- hotchpotch@gmail.com
|
58
|
+
executables:
|
59
|
+
- mbed-autowriter
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- bin/console
|
70
|
+
- bin/setup
|
71
|
+
- exe/mbed-autowriter
|
72
|
+
- lib/mbed/autowriter.rb
|
73
|
+
- lib/mbed/autowriter/version.rb
|
74
|
+
- mbed-autowriter.gemspec
|
75
|
+
homepage: https://github.com/hotchpotch/mbed-autowriter
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.4.5.1
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: mbed bin,hex files autowrite to mount voluem
|
99
|
+
test_files: []
|