diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:48:43 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:48:43 +0100 |
commit | a7dabdab8c3eb4b5e245034364ce63b947a48040 (patch) | |
tree | ad7d97e3f8eac2d17aebbf903ba31faeafcfd569 | |
parent | 0567a18b2297a05e937374375ed751310551995c (diff) | |
download | ffi-efl-a7dabdab8c3eb4b5e245034364ce63b947a48040.zip ffi-efl-a7dabdab8c3eb4b5e245034364ce63b947a48040.tar.gz |
tools/genruby: remove unnecessary requires
-rw-r--r-- | lib/efl/native/elm/elm_colorselector.rb | 1 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_hover.rb | 1 | ||||
-rwxr-xr-x | tools/genruby.rb | 4 |
3 files changed, 2 insertions, 4 deletions
diff --git a/lib/efl/native/elm/elm_colorselector.rb b/lib/efl/native/elm/elm_colorselector.rb index 0418901..d5d41e2 100644 --- a/lib/efl/native/elm/elm_colorselector.rb +++ b/lib/efl/native/elm/elm_colorselector.rb @@ -3,7 +3,6 @@ # require 'efl/native' require 'efl/native/elementary' -require 'efl/native/elm/elm_scroller' # module Efl # diff --git a/lib/efl/native/elm/elm_hover.rb b/lib/efl/native/elm/elm_hover.rb index 58ca837..150e18c 100644 --- a/lib/efl/native/elm/elm_hover.rb +++ b/lib/efl/native/elm/elm_hover.rb @@ -3,7 +3,6 @@ # require 'efl/native' require 'efl/native/elementary' -require 'efl/native/elm/elm_scroller' # module Efl # diff --git a/tools/genruby.rb b/tools/genruby.rb index 8ff114c..04d666f 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -478,7 +478,7 @@ libs << { libs << { :lib=>ELM_LIB,:header=>'elm_hover.h', :modname=>'ElmHover', :prefix=>'elm_hover', :outfile=>'elm/elm_hover.rb', - :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_scroller"], :constants=>[] + :requires=>["#{NATIVE}/elementary"], :constants=>[] } libs << { :lib=>ELM_LIB,:header=>'elc_hoversel.h', @@ -488,7 +488,7 @@ libs << { libs << { :lib=>ELM_LIB,:header=>'elm_colorselector.h', :modname=>'ElmColorSelector', :prefix=>'elm_colorselector', :outfile=>'elm/elm_colorselector.rb', - :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_scroller"], :constants=>[] + :requires=>["#{NATIVE}/elementary"], :constants=>[] } # Dir.mkdir lib_path unless (File.exists? lib_path) |