lib/bio-gem/mod/jeweler/options.rb in bio-gem-1.2.1 vs lib/bio-gem/mod/jeweler/options.rb in bio-gem-1.2.2

- old
+ new

@@ -43,10 +43,14 @@ o.on("--with-bin", 'create the bin directory and an executable template script called bioreponame') do self[:biogem_bin] = true end + o.on('--with-ffi', 'generate a C extension with foreign function interface (FFI)') do + self[:biogem_ffi] = true + end + o.on('--with-db', 'create the database directory for a db application-library.') do self[:biogem_db] = true end o.on('--with-test-data','create the data directory inside the test directory if the user need to set up a test with its own dataset') do @@ -188,6 +192,6 @@ self.class.new(@orig_args + other.orig_args) end end #Options end #Generator -end #Jeweler \ No newline at end of file +end #Jeweler