Sha256: d1ae2893af39280003a359026ce396250ef6a325733745b9cd87b3c31eb63cb7
Contents?: true
Size: 804 Bytes
Versions: 4
Compression:
Stored size: 804 Bytes
Contents
#!/usr/bin/env ruby unless RUBY_VERSION >= '1.9' require 'rubygems' end if File.exist?(File.join(Dir.pwd, 'earth.gemspec')) require 'bundler' Bundler.setup $LOAD_PATH.unshift(File.dirname(__FILE__)) $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) end require 'active_support/all' require 'active_record' ActiveRecord::Schema.verbose = false begin ActiveRecord::Base.establish_connection(:adapter => 'sqlite3', :database => ':memory:') rescue ArgumentError ActiveRecord::Base.establish_connection(:adapter => 'sqlite3', :dbfile => ':memory:') end require 'earth' Earth.init :load_data_miner => true, :apply_schemas => true if ARGV[0].present? eval ARGV[0] else $stderr.puts "Usage: earth_tester.rb 'ResidenceFuelPrice.run_data_miner!' (Note single quotes)" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
earth-0.5.0 | bin/earth_tester.rb |
earth-0.4.12 | bin/earth_tester.rb |
earth-0.4.11 | bin/earth_tester.rb |
earth-0.4.10 | bin/earth_tester.rb |