gphoto4ruby 0.1.6 → 0.2.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/CHANGELOG.rdoc +9 -0
- data/Rakefile +1 -1
- data/ext/extconf.rb +1 -0
- data/ext/gphoto2camera.c +934 -0
- data/ext/gphoto2camera.h +66 -0
- data/ext/gphoto2camera_event.c +94 -0
- data/ext/gphoto2camera_event.h +44 -0
- data/ext/gphoto2camera_utilities.c +234 -0
- data/ext/gphoto2camera_utilities.h +64 -0
- data/ext/gphoto4ruby.c +23 -1049
- metadata +10 -3
- data/ext/gphoto4ruby.h +0 -86
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
== 0.2.0
|
2
|
+
|
3
|
+
* to_s and to_f are applied to config values for radio and range types
|
4
|
+
* delete :all
|
5
|
+
* TOGGLE (true false) and TEXT configuration type support along with
|
6
|
+
constants
|
7
|
+
* allocation safe ports method
|
8
|
+
* separated source in several files
|
9
|
+
|
1
10
|
== 0.1.6
|
2
11
|
|
3
12
|
* wait method is added along with returned GPhoto2::CameraEvent class.
|
data/Rakefile
CHANGED
@@ -7,7 +7,7 @@ desc "Generate RDoc documentation for gphoto4ruby gem."
|
|
7
7
|
Rake::RDocTask.new(:rdoc) do |rdoc|
|
8
8
|
rdoc.rdoc_files.include("README.rdoc", "LICENSE", "CHANGELOG.rdoc").
|
9
9
|
include("docs/COPYING", "docs/COPYING.LESSER").
|
10
|
-
include("ext/gphoto4ruby.c")
|
10
|
+
include("ext/gphoto2camera_event.c", "ext/gphoto2camera.c", "ext/gphoto4ruby.c")
|
11
11
|
rdoc.main = "README.rdoc"
|
12
12
|
rdoc.title = "GPhoto4Ruby documentation"
|
13
13
|
rdoc.rdoc_dir = "rdoc"
|