Skip to content

Commit

Permalink
Simple examples for require profiling
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed May 13, 2009
1 parent e8550ee commit 4f291fa
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
14 changes: 14 additions & 0 deletions activerecord/examples/simple.rb
@@ -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
16 changes: 16 additions & 0 deletions activeresource/examples/simple.rb
@@ -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
4 changes: 2 additions & 2 deletions tools/profile_requires
@@ -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
Expand Down

0 comments on commit 4f291fa

Please sign in to comment.