gphoto4ruby 0.1.0
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.
- data/LICENSE +12 -0
- data/README +23 -0
- data/docs/COPIYNG.LESSER +166 -0
- data/docs/COPYING +675 -0
- data/docs/gphoto4ruby_api_ru.txt +49 -0
- data/ext/extconf.rb +8 -0
- data/ext/gphoto4ruby.c +459 -0
- data/ext/gphoto4ruby.h +30 -0
- metadata +60 -0
data/ext/gphoto4ruby.h
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
/**
|
2
|
+
*
|
3
|
+
* Copyright 2008 neq4 company
|
4
|
+
* Author: Sergey Kruk (sergey.kruk@gmail.com)
|
5
|
+
*
|
6
|
+
* This file is part of GPhoto4Ruby.
|
7
|
+
*
|
8
|
+
* GPhoto4Ruby is free software: you can redistribute it and/or
|
9
|
+
* modify it under the terms of the GNU Lesser General Public
|
10
|
+
* License as published by the Free Software Foundation, either
|
11
|
+
* version 3 of the License, or (at your option) any later version.
|
12
|
+
*
|
13
|
+
* GPhoto4Ruby is distributed in the hope that it will be useful,
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
* GNU General Public License for more details.
|
17
|
+
*
|
18
|
+
* You should have received a copy of the GNU General Public License
|
19
|
+
* along with GPhoto4Ruby. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*
|
21
|
+
*/
|
22
|
+
|
23
|
+
typedef struct {
|
24
|
+
Camera *camera;
|
25
|
+
CameraWidget *config;
|
26
|
+
CameraWidget *childConfig;
|
27
|
+
CameraFilePath filepath;
|
28
|
+
GPContext *context;
|
29
|
+
} GPhoto2Camera;
|
30
|
+
|
metadata
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gphoto4ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- heq4 company
|
8
|
+
- Sergey Kruk
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2008-08-13 00:00:00 +04:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description:
|
18
|
+
email: sergey.kruk@gmail.com
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions:
|
22
|
+
- ext/extconf.rb
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
25
|
+
files:
|
26
|
+
- ext/gphoto4ruby.c
|
27
|
+
- ext/gphoto4ruby.h
|
28
|
+
- docs/COPYING
|
29
|
+
- docs/COPIYNG.LESSER
|
30
|
+
- docs/gphoto4ruby_api_ru.txt
|
31
|
+
- LICENSE
|
32
|
+
- README
|
33
|
+
has_rdoc: false
|
34
|
+
homepage:
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options: []
|
37
|
+
|
38
|
+
require_paths:
|
39
|
+
- lib
|
40
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: "0"
|
45
|
+
version:
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: "0"
|
51
|
+
version:
|
52
|
+
requirements: []
|
53
|
+
|
54
|
+
rubyforge_project:
|
55
|
+
rubygems_version: 1.1.1
|
56
|
+
signing_key:
|
57
|
+
specification_version: 2
|
58
|
+
summary: GPhoto4Ruby is Ruby wrapping for libgphoto2 C library
|
59
|
+
test_files: []
|
60
|
+
|