sony_camera_remote_api 0.3.0 → 0.3.1
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/README.md +7 -1
- data/lib/sony_camera_remote_api/shelf.rb +2 -2
- data/lib/sony_camera_remote_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3539e321f45763057c8ace2ade315bc70d41c8d9
|
4
|
+
data.tar.gz: c4ef6529007a07c7ebf763992b29a12c3d3b1ec1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 787b39779eb9960ea438f6705e8b63dc79423cbeb019be685dc5e52f5496c3d1d5eaa91ed75a01102cfa3a1d87f94e2bd6d0fc1cda0ac52bfa10c080dd8b55fc
|
7
|
+
data.tar.gz: 0c7b4a806c43b93d227ace1a96b76bb37edb9cebd189d4344b6ac2e2d201c12c5f3f23db694b5c87798030a6e27bdc9909c0ccc1a1aa67cbe6d50fcd7d360b37
|
data/README.md
CHANGED
@@ -78,7 +78,13 @@ cam.change_function_to_shoot 'still', 'Single'
|
|
78
78
|
cam.capture_still
|
79
79
|
```
|
80
80
|
|
81
|
-
|
81
|
+
### Tutorials
|
82
|
+
|
83
|
+
Tutorials are available from Project's [Wiki](https://github.com/kota65535/sony_camera_remote_api/wiki).
|
84
|
+
|
85
|
+
### API Documentation
|
86
|
+
|
87
|
+
API documents of this library are available [here](http://www.rubydoc.info/github/kota65535/sony_camera_remote_api).
|
82
88
|
|
83
89
|
|
84
90
|
## TODO
|
@@ -9,13 +9,13 @@ module SonyCameraRemoteAPI
|
|
9
9
|
include Utils
|
10
10
|
|
11
11
|
# Default config file saved in home directory.
|
12
|
-
GLOBAL_CONFIG_FILE = File.expand_path
|
12
|
+
GLOBAL_CONFIG_FILE = File.expand_path '~/.sonycam.shelf'
|
13
13
|
|
14
14
|
|
15
15
|
# Create CameraShelf object.
|
16
16
|
# @param [String] config_file The path of config file.
|
17
17
|
def initialize(config_file = GLOBAL_CONFIG_FILE)
|
18
|
-
@config_file = config_file
|
18
|
+
@config_file = File.expand_path config_file
|
19
19
|
read_or_create
|
20
20
|
end
|
21
21
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sony_camera_remote_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kota65535
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|