tlapse 0.0.3 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/tlapse +20 -10
- data/lib/tlapse/capture.rb +8 -0
- data/lib/tlapse/doctor.rb +17 -0
- data/lib/tlapse/version.rb +1 -1
- data/lib/tlapse.rb +6 -1
- data/tlapse.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eab9b586439d82883ccc5ac792d4ffb540fe23aa
|
4
|
+
data.tar.gz: 89a788b123c3c8f6c0f133b85e119a8be4afe208
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75c5ca5477bd8ee703feaefb0c6694b79d028c425ae1d217a76a378ebc729795eca6563f8f3dba96c5608e90a9db71a841dc43cd151b2b60a3b6fae7023f8b31
|
7
|
+
data.tar.gz: 1cca071ea1e326b27d4cd37fac079295fdc7190468b688f16e5b4a55e9e9030fa6ef092c630bf97d5dd0270b9c96d6584ed223edd9d115dddd2254ad551c1338
|
data/bin/tlapse
CHANGED
@@ -1,19 +1,29 @@
|
|
1
|
-
#!/usr/bin/ruby
|
1
|
+
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
require "
|
3
|
+
require "gli"
|
4
4
|
require "byebug"
|
5
|
+
|
5
6
|
require_relative "../lib/tlapse"
|
6
7
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
include GLI::App
|
9
|
+
include Tlapse
|
10
|
+
|
11
|
+
program_desc "Automated time lapse photography via gphoto2"
|
12
|
+
version Tlapse::VERSION
|
13
|
+
|
14
|
+
desc "Determine whether you are ready to start capturing"
|
15
|
+
command :doctor do |c|
|
16
|
+
c.action do |global_options,options,args|
|
17
|
+
doctor
|
11
18
|
end
|
19
|
+
end
|
12
20
|
|
13
|
-
|
14
|
-
|
15
|
-
|
21
|
+
desc "Capture a single photo, saving it to the current directory"
|
22
|
+
command :single do |c|
|
23
|
+
c.action do |global_options,options,args|
|
24
|
+
capture_single
|
16
25
|
end
|
17
26
|
end
|
18
27
|
|
19
|
-
|
28
|
+
exit run(ARGV)
|
29
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Tlapse
|
2
|
+
module Doctor
|
3
|
+
def doctor
|
4
|
+
print "Checking gphoto2..."
|
5
|
+
if `which gphoto2`.empty?
|
6
|
+
raise "Could not find gphoto2 :("
|
7
|
+
end
|
8
|
+
puts "ok!"
|
9
|
+
|
10
|
+
print "Checking camera..."
|
11
|
+
# TODO: Check camera
|
12
|
+
puts "ok!"
|
13
|
+
|
14
|
+
puts "Looks good!"
|
15
|
+
end
|
16
|
+
end # Doctor
|
17
|
+
end # Tlapse
|
data/lib/tlapse/version.rb
CHANGED
data/lib/tlapse.rb
CHANGED
data/tlapse.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tlapse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Toniazzo
|
@@ -67,19 +67,19 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '8.2'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: gli
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '2.13'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '2.13'
|
83
83
|
description:
|
84
84
|
email:
|
85
85
|
- jutonz42@gmail.com
|
@@ -100,6 +100,8 @@ files:
|
|
100
100
|
- bin/setup
|
101
101
|
- bin/tlapse
|
102
102
|
- lib/tlapse.rb
|
103
|
+
- lib/tlapse/capture.rb
|
104
|
+
- lib/tlapse/doctor.rb
|
103
105
|
- lib/tlapse/version.rb
|
104
106
|
- tlapse.gemspec
|
105
107
|
homepage: https://github.com/jutonz/tlapse
|