oui-offline 1.2.3 → 1.2.5

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/ext/mkrf_conf.rb DELETED
@@ -1,22 +0,0 @@
1
- require 'rubygems'
2
- require 'rubygems/command'
3
- require 'rubygems/dependency_installer'
4
-
5
- begin
6
- Gem::Command.build_args = ARGV
7
- $stderr.puts "ARGV=#{ARGV}"
8
- rescue NoMethodError
9
- end
10
-
11
- inst = Gem::DependencyInstaller.new
12
- if RUBY_PLATFORM == 'java'
13
- inst.install 'jdbc-sqlite3'
14
- else
15
- inst.install 'sqlite3', '~> 1'
16
- end
17
-
18
- # create dummy rakefile to indicate success
19
- File.open(File.join(File.dirname(__FILE__), 'Rakefile'), 'w') do |f|
20
- f.puts('task :default')
21
- end
22
- $stderr.puts 'Finished installing oui driver for sequel'