1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

View file

@ -0,0 +1,16 @@
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
require 'active_resource'
require 'active_resource/http_mock'
require 'active_support/core_ext/hash/conversions'
ActiveSupport::XmlMini.backend = ENV['XMLMINI'] || 'REXML'
ActiveResource::HttpMock.respond_to do |mock|
mock.get '/people/1.xml', {}, { :id => 1, :name => 'bob' }.to_xml(:root => 'person')
end
class Person < ActiveResource::Base
self.site = 'http://localhost/'
end
bob = Person.find(1)
puts bob.inspect

View file

@ -1,7 +1,7 @@
#!/usr/bin/env ruby
# Example:
# ruby -Iactivesupport/lib tools/profile_requires.rb active_support
# ruby -Iactionpack/lib tools/profile_requires.rb action_controller
# tools/profile_requires activesupport/lib/active_support.rb
# tools/profile_requires activeresource/examples/simple.rb
abort 'Use REE so you can profile memory and object allocation' unless GC.respond_to?(:enable_stats)
GC.enable_stats