Simple examples for require profiling

This commit is contained in:
Jeremy Kemper
2009-05-13 11:55:19 -07:00
parent e8550ee032
commit 4f291fa528
3 changed files with 32 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
require 'active_record'
class Person < ActiveRecord::Base
establish_connection :adapter => 'sqlite3', :database => 'foobar.db'
connection.create_table table_name, :force => true do |t|
t.string :name
end
end
bob = Person.create!(:name => 'bob')
puts Person.all.inspect
bob.destroy
puts Person.all.inspect