gphoto4ruby 0.1.6 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
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"
data/ext/extconf.rb CHANGED
@@ -2,6 +2,7 @@ require "mkmf"
2
2
 
3
3
  dir_config("gphoto4ruby", "/usr/local")
4
4
  if have_library("gphoto2")
5
+ $CFLAGS = '-Wall ' + $CFLAGS
5
6
  create_makefile("gphoto4ruby")
6
7
  else
7
8
  raise "You need gphoto2 installed to compile and use this library"