Giter Site home page Giter Site logo

rubyfb's People

Contributors

georgiev avatar mariuz avatar pilcrow avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

rubyfb's Issues

Broken strings encoding with ruby 1.9

Ruby 1.9 supports string encoding information - the rubyfb doesn't provide such information and creates the string values with the default encoding which is binary (ascii-8bit).

Problem with rails 3.2.1 + ruby 1.9.2

Hi,
I have troubles connecting to a fb db.

My setup:

OSX 10.6.8
ruby 1.9.2 (via RVM)
rails 3.2.1
rubyfb 0.6.2

Configuration:

# database.yml
firebird:
  adapter: rubyfb
  database: d:\database\mydatabase.gdb
  username: sysdba
  password: xxxxxxxxxx
  host: 123.456.789.000

When I try to connect in rails console I get this error:

ruby-1.9.2-p290 :001 > ActiveRecord::Base.establish_connection(:firebird)
LoadError: Please install the rubyfb adapter: `gem install activerecord-rubyfb-adapter` (no such file to load -- active_support/core_ext/kernel/requires)
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `require'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `block in require'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:236:in `load_dependency'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `require'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/rubyfb-0.6/lib/active_record/connection_adapters/rubyfb_adapter.rb:4:in `<top (required)>'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `require'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `block in require'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:236:in `load_dependency'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `require'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/connection_specification.rb:48:in `resolve_hash_connection'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/connection_specification.rb:39:in `resolve_string_connection'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/connection_specification.rb:25:in `spec'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/connection_specification.rb:127:in `establish_connection'
    from (irb):1
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/railties-3.2.1/lib/rails/commands/console.rb:47:in `start'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/railties-3.2.1/lib/rails/commands/console.rb:8:in `start'
    from /Users/xx/.rvm/gems/ruby-1.9.2-p290@test/gems/railties-3.2.1/lib/rails/commands.rb:41:in `<top (required)>'
    from script/rails:6:in `require'
    from script/rails:6:in `<main>'ruby-1.9.2-p290 :002 > 

Any help please?

Best regards,
Daniele

rake db:create doesn't create the database

I had to create it manually

rake db:create
/var/lib/firebird/2.5/data/demo_app.fdb already exists
rm /var/lib/firebird/2.5/data/demo_app.fdb
rake db:create
rake db:migrate
rake aborted!
Error opening database connection.
I/O error during "open" operation for file "/var/lib/firebird/2.5/data/demo_app.fdb"
Error while trying to open file
No such file or directory
Unsuccessful execution caused by a system error that precludes successful execution of subsequent statements
SQL Code = -902
Firebird Code = 335544344

Tasks: TOP => db:migrate
(See full trace by running task with --trace)

Problem with devise STORE RDB$RELATION_FIELDS failed attempt to store duplicate value (visible to active transactions) in unique index "RDB$INDEX_15"

I try to use devise and i have this issue
http://blog.blazingcloud.net/2011/01/08/devise-authentication-in-rails-3/

== AddDeviseToUsers: migrating =========================================
-- change_table(:users)
rake aborted!
An error has occurred, this and all later migrations canceled:

Rubyfb::FireRubyException: Error executing SQL statement.
unsuccessful metadata update
STORE RDB$RELATION_FIELDS failed
attempt to store duplicate value (visible to active transactions) in unique index "RDB$INDEX_15"
This operation is not defined for system tables.
SQL Code = -607
Firebird Code = 335544351
: ALTER TABLE "USERS" ADD "EMAIL" varchar(255) DEFAULT '' NOT NULL

Tasks: TOP => db:migrate

if i comment the line

t.string :email

it works and the migration finishes

so the line with the problem is in the migration add_devise_to_devise_users.rb
the one that readds email column , maybe it should recreate it ?

Class AddDeviseToUsers < ActiveRecord::Migration
def self.up
change_table(:devise_users) do |t|
## Database authenticatable
t.string :email, :null => false, :default => ""

dyld: lazy symbol binding failed: Symbol not found: _isc_attach_database

Trying to solve this issue I tested another configuration:

rails 3.1
activerecord 3.1.0
ruby 1.8.7 / 1.9.2
rubyfb 0.6.2

The adaptor is found but on the connection I get this error (using both ruby versions):

ruby-1.9.2-p290 :001 > ActiveRecord::Base.establish_connection(:firebird)
 => #<ActiveRecord::ConnectionAdapters::ConnectionPool:0x00000102dfe140 @spec=#<ActiveRecord::Base::ConnectionSpecification:0x00000102dfe280 @config={:adapter=>"rubyfb", :database=>"d:\\database\\mydatabase.gdb", :username=>"sysdba", :password=>"xxxxxxx", :host=>"123.456.789.000"}, @adapter_method="rubyfb_connection">, @reserved_connections={}, @connection_mutex=#<Monitor:0x00000102dfdec0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102dfdd80>>, @queue=#<MonitorMixin::ConditionVariable:0x00000102dfdce0 @monitor=#<Monitor:0x00000102dfdec0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000102dfdd80>>, @cond=#<ConditionVariable:0x00000102dfdc90 @waiters=[], @waiters_mutex=#<Mutex:0x00000102dfdc18>>>, @timeout=5, @size=5, @connections=[], @checked_out=[], @automatic_reconnect=true, @tables={}, @visitor=nil, @columns={}, @columns_hash={}, @column_defaults={}, @primary_keys={}> 
ruby-1.9.2-p290 :002 > class Item < ActiveRecord::Base
ruby-1.9.2-p290 :003?>   set_table_name "items"
ruby-1.9.2-p290 :004?>   end
dyld: lazy symbol binding failed: Symbol not found: _isc_attach_database
  Referenced from: /Users/xx/.rvm/gems/ruby-1.9.2-p290/gems/rubyfb-0.6.2/lib/rubyfb_lib.bundle
  Expected in: flat namespace

dyld: Symbol not found: _isc_attach_database
  Referenced from: /Users/xx/.rvm/gems/ruby-1.9.2-p290/gems/rubyfb-0.6.2/lib/rubyfb_lib.bundle
  Expected in: flat namespace

Trace/BPT trap

Segmentation fault (again)

As reported by Mariarosaria Trovato here http://rubyforge.org/forum/forum.php?thread_id=50153&forum_id=37589

still errors nginx 1.0.14 (I can not reproduce it)

/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:532: [BUG] Segmentation fault
ruby 1.9.3p125 (2012-02-16 revision 34643) [x86_64-linux]

-- Control frame information -----------------------------------------------
c:0105 p:---- s:0632 b:0632 l:000631 d:000631 CFUNC :exec_and_close
c:0104 p:0253 s:0627 b:0627 l:000592 d:000626 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:532
c:0103 p:0005 s:0623 b:0623 l:000613 d:000622 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract_adapter.rb:280
c:0102 p:0032 s:0621 b:0621 l:000620 d:000620 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications/instrumenter.rb:20
c:0101 p:0046 s:0614 b:0614 l:000613 d:000613 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract_adapter.rb:275
c:0100 p:0017 s:0605 b:0605 l:000604 d:000604 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:849
c:0099 p:0019 s:0599 b:0599 l:000598 d:000598 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:1102
c:0098 p:0025 s:0593 b:0593 l:000592 d:000592 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:510
c:0097 p:0036 s:0586 b:0586 l:002090 d:002090 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:923
c:0096 p:0024 s:0578 b:0578 l:000577 d:000577 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:892
c:0095 p:0033 s:0567 b:0567 l:000566 d:000566 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/database_statements.rb:18
c:0094 p:0017 s:0561 b:0561 l:000549 d:000560 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:61
c:0093 p:0094 s:0559 b:0556 l:000555 d:000555 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:75
c:0092 p:0044 s:0550 b:0550 l:000549 d:000549 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:61
c:0091 p:0040 s:0543 b:0543 l:000532 d:000542 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/querying.rb:38
c:0090 p:0190 s:0541 b:0541 l:000540 d:000540 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/explain.rb:40
c:0089 p:0015 s:0533 b:0533 l:000532 d:000532 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/querying.rb:37
c:0088 p:0110 s:0528 b:0528 l:000527 d:000527 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation.rb:171
c:0087 p:0009 s:0522 b:0522 l:000511 d:000521 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation.rb:160
c:0086 p:0190 s:0520 b:0520 l:000519 d:000519 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/explain.rb:40
c:0085 p:0011 s:0512 b:0512 l:000511 d:000511 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation.rb:159
c:0084 p:0057 s:0509 b:0509 l:000508 d:000508 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation/finder_methods.rb:377
c:0083 p:0126 s:0506 b:0506 l:000505 d:000505 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation/finder_methods.rb:122
c:0082 p:0048 s:0502 b:0502 l:000501 d:000501 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation/finder_methods.rb:263
c:0081 p:0380 s:0494 b:0494 l:000493 d:000493 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/dynamic_matchers.rb:45
c:0080 p:---- s:0482 b:0482 l:000481 d:000481 FINISH
c:0079 p:0028 s:0480 b:0480 l:000479 d:000479 METHOD /webapp/geras/geras/app/controllers/application_controller.rb:71
c:0078 p:0083 s:0477 b:0477 l:000476 d:000476 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:418
c:0077 p:0115 s:0471 b:0471 l:000470 d:000470 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:405
c:0076 p:0027 s:0462 b:0462 l:000461 d:000461 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:385
c:0075 p:0024 s:0457 b:0457 l:000456 d:000456 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:81
c:0074 p:0020 s:0451 b:0451 l:0018d0 d:0018d0 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/callbacks.rb:17
c:0073 p:0012 s:0447 b:0447 l:000446 d:000446 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rescue.rb:29
c:0072 p:0010 s:0442 b:0442 l:000423 d:000441 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:30
c:0071 p:0017 s:0438 b:0438 l:000428 d:000437 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications.rb:123
c:0070 p:0032 s:0436 b:0436 l:000435 d:000435 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications/instrumenter.rb:20
c:0069 p:0036 s:0429 b:0429 l:000428 d:000428 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications.rb:123
c:0068 p:0152 s:0424 b:0424 l:000423 d:000423 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:29
c:0067 p:0143 s:0419 b:0419 l:000418 d:000418 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/params_wrapper.rb:205
c:0066 p:0032 s:0413 b:0413 l:000412 d:000412 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/railties/controller_runtime.rb:18
c:0065 p:0093 s:0408 b:0408 l:000407 d:000407 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/base.rb:121
c:0064 p:0084 s:0402 b:0402 l:000401 d:000401 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/rendering.rb:45
c:0063 p:0048 s:0397 b:0397 l:000396 d:000396 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal.rb:203
c:0062 p:0086 s:0392 b:0392 l:000391 d:000391 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rack_delegation.rb:14
c:0061 p:0030 s:0386 b:0386 l:0023a8 d:000385 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal.rb:246
c:0060 p:---- s:0383 b:0383 l:000382 d:000382 FINISH
c:0059 p:---- s:0381 b:0381 l:000380 d:000380 CFUNC :call
c:0058 p:0022 s:0377 b:0377 l:000376 d:000376 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:67
c:0057 p:0094 s:0371 b:0371 l:000370 d:000370 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:30
c:0056 p:0161 s:0365 b:0365 l:000348 d:000364 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:68
c:0055 p:---- s:0354 b:0354 l:000353 d:000353 FINISH
c:0054 p:---- s:0352 b:0352 l:000351 d:000351 CFUNC :each
c:0053 p:0051 s:0349 b:0349 l:000348 d:000348 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:56
c:0052 p:0025 s:0345 b:0345 l:000344 d:000344 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:594
c:0051 p:0015 s:0341 b:0341 l:000340 d:000340 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/best_standards_support.rb:17
c:0050 p:0015 s:0334 b:0334 l:000333 d:000333 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23
c:0049 p:0068 s:0326 b:0326 l:000325 d:000325 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25
c:0048 p:0093 s:0319 b:0319 l:000318 d:000318 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/head.rb:14
c:0047 p:0046 s:0312 b:0312 l:000311 d:000311 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/params_parser.rb:21
c:0046 p:0054 s:0307 b:0307 l:000306 d:000306 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/flash.rb:242
c:0045 p:0031 s:0299 b:0299 l:000298 d:000298 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205
c:0044 p:0013 s:0291 b:0291 l:000290 d:000290 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200
c:0043 p:0020 s:0287 b:0287 l:000286 d:000286 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/cookies.rb:338
c:0042 p:0064 s:0279 b:0279 l:000278 d:000278 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/query_cache.rb:64
c:0041 p:0029 s:0270 b:0270 l:000269 d:000269 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/connection_pool.rb:443
c:0040 p:0014 s:0262 b:0262 l:000dc0 d:000261 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/callbacks.rb:28
c:0039 p:0040 s:0260 b:0260 l:000259 d:000259 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:405
c:0038 p:0115 s:0253 b:0253 l:000252 d:000252 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:405
c:0037 p:0027 s:0244 b:0244 l:000243 d:000243 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:385
c:0036 p:0024 s:0239 b:0239 l:000238 d:000238 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:81
c:0035 p:0013 s:0233 b:0233 l:000dc0 d:000dc0 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/callbacks.rb:27
c:0034 p:0044 s:0229 b:0229 l:000228 d:000228 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/remote_ip.rb:31
c:0033 p:0017 s:0225 b:0225 l:000224 d:000224 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/debug_exceptions.rb:16
c:0032 p:0017 s:0218 b:0218 l:000217 d:000217 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/show_exceptions.rb:56
c:0031 p:0121 s:0212 b:0212 l:000211 d:000211 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/rack/logger.rb:26
c:0030 p:0052 s:0206 b:0206 l:000205 d:000205 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/rack/logger.rb:16
c:0029 p:0048 s:0202 b:0202 l:000201 d:000201 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/request_id.rb:22
c:0028 p:0095 s:0195 b:0195 l:000194 d:000194 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21
c:0027 p:0032 s:0190 b:0190 l:000189 d:000189 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17
c:0026 p:0057 s:0181 b:0181 l:000180 d:000180 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/cache/strategy/local_cache.rb:72
c:0025 p:0068 s:0177 b:0177 l:000176 d:000176 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15
c:0024 p:0027 s:0171 b:0170 l:000169 d:000169 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:136
c:0023 p:0027 s:0167 b:0167 l:000166 d:000166 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:245
c:0022 p:0201 s:0163 b:0163 l:000162 d:000162 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:185
c:0021 p:0118 s:0158 b:0158 l:000157 d:000157 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:66
c:0020 p:0042 s:0151 b:0151 l:000150 d:000150 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:51
c:0019 p:0032 s:0147 b:0147 l:000146 d:000146 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/engine.rb:479
c:0018 p:0034 s:0143 b:0143 l:000142 d:000142 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application.rb:220
c:0017 p:0021 s:0139 b:0139 l:000138 d:000138 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/railtie/configurable.rb:30
c:0016 p:---- s:0134 b:0134 l:000133 d:000133 FINISH
c:0015 p:0538 s:0132 b:0132 l:000131 d:000131 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/request_handler.rb:96
c:0014 p:0664 s:0120 b:0120 l:000119 d:000119 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_request_handler.rb:513
c:0013 p:0175 s:0106 b:0106 l:000105 d:000105 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_request_handler.rb:274
c:0012 p:0188 s:0098 b:0098 l:000097 d:000097 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/application_spawner.rb:206
c:0011 p:0135 s:0086 b:0086 l:000070 d:000085 BLOCK /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/application_spawner.rb:79
c:0010 p:0094 s:0080 b:0080 l:000079 d:000079 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/utils.rb:479
c:0009 p:0065 s:0071 b:0071 l:000070 d:000070 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/application_spawner.rb:64
c:0008 p:0117 s:0063 b:0063 l:000062 d:000062 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/spawn_manager.rb:264
c:0007 p:0242 s:0054 b:0054 l:000053 d:000053 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/spawn_manager.rb:137
c:0006 p:0066 s:0050 b:0050 l:000049 d:000049 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/spawn_manager.rb:275
c:0005 p:0178 s:0041 b:0041 l:000040 d:000040 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_server.rb:357
c:0004 p:0048 s:0030 b:0030 l:000029 d:000029 METHOD /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_server.rb:206
c:0003 p:0768 s:0023 b:0023 l:002278 d:000550 EVAL /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/helper-scripts/passenger-spawn-server:99
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
c:0001 p:0000 s:0002 b:0002 l:002278 d:002278 TOP

-- Ruby level backtrace information ----------------------------------------
/usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/helper-scripts/passenger-spawn-server:99:in <main>' /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_server.rb:206:instart_synchronously'
/usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_server.rb:357:in server_main_loop' /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/spawn_manager.rb:275:inhandle_spawn_application'
/usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/spawn_manager.rb:137:in spawn_application' /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/spawn_manager.rb:264:inspawn_rack_application'
/usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/application_spawner.rb:64:in spawn_application' /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/utils.rb:479:insafe_fork'
/usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/application_spawner.rb:79:in block in spawn_application' /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/application_spawner.rb:206:instart_request_handler'
/usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_request_handler.rb:274:in main_loop' /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_request_handler.rb:513:inaccept_and_process_next_request'
/usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/request_handler.rb:96:in process_request' /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/railtie/configurable.rb:30:inmethod_missing'
/usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application.rb:220:in call' /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/engine.rb:479:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:51:in call' /usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:66:incall!'
/usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:185:in lookup' /usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:245:infetch'
/usr/local/lib/ruby/gems/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:136:in forward' /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/cache/strategy/local_cache.rb:72:in call' /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/request_id.rb:22:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/rack/logger.rb:16:in call' /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/rack/logger.rb:26:incall_app'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/show_exceptions.rb:56:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/debug_exceptions.rb:16:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/remote_ip.rb:31:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/callbacks.rb:27:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:81:in run_callbacks' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:385:in_run_call_callbacks'
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:405:in __run_callback' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:405:in_run__4079479872506126791__call__4276393482399800580__callbacks'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/callbacks.rb:28:in block in call' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/connection_pool.rb:443:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/query_cache.rb:64:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/cookies.rb:338:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in call' /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:incontext'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/flash.rb:242:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/params_parser.rb:21:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/head.rb:14:in call' /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/best_standards_support.rb:17:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:594:in call' /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:56:incall'
/usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:56:in each' /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:68:inblock in call'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:30:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:67:indispatch'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:67:in call' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal.rb:246:inblock in action'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rack_delegation.rb:14:in dispatch' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal.rb:203:indispatch'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/rendering.rb:45:in process' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/base.rb:121:inprocess'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/railties/controller_runtime.rb:18:in process_action' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/params_wrapper.rb:205:inprocess_action'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:29:in process_action' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications.rb:123:ininstrument'
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications/instrumenter.rb:20:in instrument' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications.rb:123:inblock in instrument'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:30:in block in process_action' /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rescue.rb:29:inprocess_action'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/callbacks.rb:17:in process_action' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:81:inrun_callbacks'
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:385:in _run_process_action_callbacks' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:405:in__run_callback'
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:418:in _run__1944954653830455590__process_action__1556183178274259306__callbacks' /webapp/geras/geras/app/controllers/application_controller.rb:71:inauthorize'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/dynamic_matchers.rb:45:in method_missing' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation/finder_methods.rb:263:infind_by_attributes'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation/finder_methods.rb:122:in first' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation/finder_methods.rb:377:infind_first'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation.rb:159:in to_a' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/explain.rb:40:inlogging_query_plan'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation.rb:160:in block in to_a' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/relation.rb:171:inexec_queries'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/querying.rb:37:in find_by_sql' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/explain.rb:40:inlogging_query_plan'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/querying.rb:38:in block in find_by_sql' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:61:inselect_all'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:75:in cache_sql' /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:61:inblock in select_all'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/database_statements.rb:18:in select_all' /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:892:inselect'
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:923:in select_raw' /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:510:inexec_query'
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:1102:in log' /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:849:inlog'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract_adapter.rb:275:in log' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications/instrumenter.rb:20:ininstrument'
/usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract_adapter.rb:280:in block in log' /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:532:inblock in exec_query'
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/active_record/connection_adapters/rubyfb_adapter.rb:532:in `exec_and_close'

-- C level backtrace information -------------------------------------------
Rack: /webapp/geras/geras() [0x527b78]
Rack: /webapp/geras/geras() [0x56f9a8]
Rack: /webapp/geras/geras(rb_bug+0xb3) [0x56fb43]
Rack: /webapp/geras/geras() [0x4b4640]
/lib/libpthread.so.0(+0xf8f0) [0x7fe8de71b8f0] Connection.c:111
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(rowGCMark+0x28) [0x7fe8d9c16748] Row.c:72
Rack: /webapp/geras/geras() [0x422d2e]
Rack: /webapp/geras/geras() [0x424596]
Rack: /webapp/geras/geras() [0x4246ba]
Rack: /webapp/geras/geras() [0x424bbf]
Rack: /webapp/geras/geras() [0x425250]
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(+0xbf19) [0x7fe8d9c16f19] Row.c:151
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(rb_row_new+0x7c) [0x7fe8d9c1723c] Row.c:869
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(+0x6cd6) [0x7fe8d9c11cd6] ResultSet.c:151
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(yieldRows+0x38) [0x7fe8d9c11d78] ResultSet.c:491
Rack: /webapp/geras/geras(rb_ensure+0xab) [0x4178cb]
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(execInTransaction+0x250) [0x7fe8d9c12e70] Statement.c:559
Rack: /webapp/geras/geras(rb_rescue2+0x15b) [0x417c0b]
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(execAndManageTransaction+0xac) [0x7fe8d9c1303c] Statement.c:390
Rack: /webapp/geras/geras(rb_rescue2+0x15b) [0x417c0b]
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(execAndManageStatement+0x63) [0x7fe8d9c131b3] Statement.c:423
/usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so(+0x8247) [0x7fe8d9c13247] Statement.c:605
Rack: /webapp/geras/geras() [0x525424]
Rack: /webapp/geras/geras() [0x518d57]
Rack: /webapp/geras/geras() [0x51cebb]
Rack: /webapp/geras/geras() [0x51e9e3]
Rack: /webapp/geras/geras() [0x520307]
Rack: /webapp/geras/geras() [0x520641]
Rack: /webapp/geras/geras() [0x525553]
Rack: /webapp/geras/geras() [0x518d57]
Rack: /webapp/geras/geras() [0x51cebb]
Rack: /webapp/geras/geras() [0x51e36f]
Rack: /webapp/geras/geras() [0x41e557]
Rack: /webapp/geras/geras() [0x525424]
Rack: /webapp/geras/geras() [0x518d57]
Rack: /webapp/geras/geras() [0x51cebb]
Rack: /webapp/geras/geras(rb_yield+0x66) [0x525d16]
Rack: /webapp/geras/geras(rb_ary_each+0x57) [0x53a8b7]
Rack: /webapp/geras/geras() [0x525424]
Rack: /webapp/geras/geras() [0x518d57]
Rack: /webapp/geras/geras() [0x51cebb]
Rack: /webapp/geras/geras() [0x51e9e3]
Rack: /webapp/geras/geras() [0x520307]
Rack: /webapp/geras/geras() [0x520641]
Rack: /webapp/geras/geras() [0x525553]
Rack: /webapp/geras/geras() [0x518d57]
Rack: /webapp/geras/geras() [0x51cebb]
Rack: /webapp/geras/geras(rb_iseq_eval_main+0x294) [0x51d2f4]
Rack: /webapp/geras/geras() [0x417fa2]
Rack: /webapp/geras/geras(ruby_run_node+0x36) [0x41a066]
Rack: /webapp/geras/geras() [0x417149]
/lib/libc.so.6(__libc_start_main+0xfd) [0x7fe8ddadfc4d]
Rack: /webapp/geras/geras() [0x417039]

-- Other runtime information -----------------------------------------------

  • Loaded script: Rack: /webapp/geras/geras
  • Loaded features:

0 enumerator.so
1 /usr/local/lib/ruby/1.9.1/x86_64-linux/enc/encdb.so
2 /usr/local/lib/ruby/1.9.1/x86_64-linux/enc/trans/transdb.so
3 /usr/local/lib/ruby/1.9.1/rubygems/defaults.rb
4 /usr/local/lib/ruby/1.9.1/x86_64-linux/rbconfig.rb
5 /usr/local/lib/ruby/1.9.1/rubygems/deprecate.rb
6 /usr/local/lib/ruby/1.9.1/rubygems/exceptions.rb
7 /usr/local/lib/ruby/1.9.1/rubygems/custom_require.rb
8 /usr/local/lib/ruby/1.9.1/rubygems.rb
9 /usr/local/lib/ruby/1.9.1/x86_64-linux/socket.so
10 /usr/local/lib/ruby/1.9.1/socket.rb
11 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger.rb
12 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/debug_logging.rb
13 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/utils/tmpdir.rb
14 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/platform_info.rb
15 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/platform_info/ruby.rb
16 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/platform_info/operating_system.rb
17 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/platform_info/binary_compatibility.rb
18 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/ext/ruby/ruby-1.9.3-x86_64-linux/passenger_native_support.so
19 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/native_support.rb
20 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/message_channel.rb
21 /usr/local/lib/ruby/1.9.1/thread.rb
22 /usr/local/lib/ruby/1.9.1/x86_64-linux/pathname.so
23 /usr/local/lib/ruby/1.9.1/pathname.rb
24 /usr/local/lib/ruby/1.9.1/x86_64-linux/etc.so
25 /usr/local/lib/ruby/1.9.1/x86_64-linux/fcntl.so
26 /usr/local/lib/ruby/1.9.1/delegate.rb
27 /usr/local/lib/ruby/1.9.1/fileutils.rb
28 /usr/local/lib/ruby/1.9.1/tmpdir.rb
29 /usr/local/lib/ruby/1.9.1/tempfile.rb
30 /usr/local/lib/ruby/1.9.1/timeout.rb
31 /usr/local/lib/ruby/1.9.1/x86_64-linux/stringio.so
32 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/exceptions.rb
33 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/utils.rb
34 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_server.rb
35 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_server_collection.rb
36 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/constants.rb
37 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/spawn_manager.rb
38 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/app_process.rb
39 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/public_api.rb
40 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/message_client.rb
41 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/utils/unseekable_socket.rb
42 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/abstract_request_handler.rb
43 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/utils/rewindable_input.rb
44 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/request_handler.rb
45 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/rack/application_spawner.rb
46 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/lib/phusion_passenger/analytics_logger.rb
47 /usr/local/lib/ruby/1.9.1/rubygems/version.rb
48 /usr/local/lib/ruby/1.9.1/rubygems/requirement.rb
49 /usr/local/lib/ruby/1.9.1/rubygems/platform.rb
50 /usr/local/lib/ruby/1.9.1/rubygems/specification.rb
51 /usr/local/lib/ruby/1.9.1/rubygems/path_support.rb
52 /usr/local/lib/ruby/1.9.1/rubygems/dependency.rb
53 /usr/local/lib/ruby/1.9.1/x86_64-linux/psych.so
54 /usr/local/lib/ruby/1.9.1/psych/nodes/node.rb
55 /usr/local/lib/ruby/1.9.1/psych/nodes/stream.rb
56 /usr/local/lib/ruby/1.9.1/psych/nodes/document.rb
57 /usr/local/lib/ruby/1.9.1/psych/nodes/sequence.rb
58 /usr/local/lib/ruby/1.9.1/psych/nodes/scalar.rb
59 /usr/local/lib/ruby/1.9.1/psych/nodes/mapping.rb
60 /usr/local/lib/ruby/1.9.1/psych/nodes/alias.rb
61 /usr/local/lib/ruby/1.9.1/psych/nodes.rb
62 /usr/local/lib/ruby/1.9.1/psych/streaming.rb
63 /usr/local/lib/ruby/1.9.1/psych/visitors/visitor.rb
64 /usr/local/lib/ruby/1.9.1/x86_64-linux/strscan.so
65 /usr/local/lib/ruby/1.9.1/psych/scalar_scanner.rb
66 /usr/local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb
67 /usr/local/lib/ruby/1.9.1/psych/visitors/emitter.rb
68 /usr/local/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb
69 /usr/local/lib/ruby/1.9.1/psych/json/ruby_events.rb
70 /usr/local/lib/ruby/1.9.1/psych/visitors/json_tree.rb
71 /usr/local/lib/ruby/1.9.1/psych/visitors/depth_first.rb
72 /usr/local/lib/ruby/1.9.1/psych/visitors.rb
73 /usr/local/lib/ruby/1.9.1/psych/handler.rb
74 /usr/local/lib/ruby/1.9.1/psych/tree_builder.rb
75 /usr/local/lib/ruby/1.9.1/psych/parser.rb
76 /usr/local/lib/ruby/1.9.1/psych/omap.rb
77 /usr/local/lib/ruby/1.9.1/psych/set.rb
78 /usr/local/lib/ruby/1.9.1/psych/coder.rb
79 /usr/local/lib/ruby/1.9.1/psych/core_ext.rb
80 /usr/local/lib/ruby/1.9.1/x86_64-linux/date_core.so
81 /usr/local/lib/ruby/1.9.1/date/format.rb
82 /usr/local/lib/ruby/1.9.1/date.rb
83 /usr/local/lib/ruby/1.9.1/psych/deprecated.rb
84 /usr/local/lib/ruby/1.9.1/psych/json.rb
85 /usr/local/lib/ruby/1.9.1/psych.rb
86 /usr/local/lib/ruby/1.9.1/yaml.rb
87 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/rubygems_ext.rb
88 /usr/local/lib/ruby/1.9.1/rubygems/config_file.rb
89 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/rubygems_integration.rb
90 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/version.rb
91 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler.rb
92 /usr/local/lib/ruby/1.9.1/x86_64-linux/digest.so
93 /usr/local/lib/ruby/1.9.1/digest.rb
94 /usr/local/lib/ruby/1.9.1/x86_64-linux/digest/sha1.so
95 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/environment.rb
96 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/shared_helpers.rb
97 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/runtime.rb
98 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/settings.rb
99 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/definition.rb
100 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/dependency.rb
101 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/dsl.rb
102 /usr/local/lib/ruby/1.9.1/uri/common.rb
103 /usr/local/lib/ruby/1.9.1/uri/generic.rb
104 /usr/local/lib/ruby/1.9.1/uri/ftp.rb
105 /usr/local/lib/ruby/1.9.1/uri/http.rb
106 /usr/local/lib/ruby/1.9.1/uri/https.rb
107 /usr/local/lib/ruby/1.9.1/uri/ldap.rb
108 /usr/local/lib/ruby/1.9.1/uri/ldaps.rb
109 /usr/local/lib/ruby/1.9.1/uri/mailto.rb
110 /usr/local/lib/ruby/1.9.1/uri.rb
111 /usr/local/lib/ruby/1.9.1/rubygems/user_interaction.rb
112 /usr/local/lib/ruby/1.9.1/rubygems/package/f_sync_dir.rb
113 /usr/local/lib/ruby/1.9.1/rubygems/package/tar_header.rb
114 /usr/local/lib/ruby/1.9.1/x86_64-linux/enc/iso_8859_1.so
115 /usr/local/lib/ruby/1.9.1/x86_64-linux/zlib.so
116 /usr/local/lib/ruby/1.9.1/rubygems/package/tar_input.rb
117 /usr/local/lib/ruby/1.9.1/rubygems/package/tar_output.rb
118 /usr/local/lib/ruby/1.9.1/rubygems/package/tar_reader/entry.rb
119 /usr/local/lib/ruby/1.9.1/rubygems/package/tar_reader.rb
120 /usr/local/lib/ruby/1.9.1/rubygems/package/tar_writer.rb
121 /usr/local/lib/ruby/1.9.1/rubygems/package.rb
122 /usr/local/lib/ruby/1.9.1/rubygems/format.rb
123 /usr/local/lib/ruby/1.9.1/rubygems/ext/builder.rb
124 /usr/local/lib/ruby/1.9.1/rubygems/ext/configure_builder.rb
125 /usr/local/lib/ruby/1.9.1/optparse.rb
126 /usr/local/lib/ruby/1.9.1/rubygems/command.rb
127 /usr/local/lib/ruby/1.9.1/rubygems/ext/ext_conf_builder.rb
128 /usr/local/lib/ruby/1.9.1/rubygems/ext/rake_builder.rb
129 /usr/local/lib/ruby/1.9.1/rubygems/ext.rb
130 /usr/local/lib/ruby/1.9.1/rubygems/require_paths_builder.rb
131 /usr/local/lib/ruby/1.9.1/rubygems/installer.rb
132 /usr/local/lib/ruby/1.9.1/rubygems/remote_fetcher.rb
133 /usr/local/lib/ruby/1.9.1/rubygems/errors.rb
134 /usr/local/lib/ruby/1.9.1/rubygems/text.rb
135 /usr/local/lib/ruby/1.9.1/rubygems/spec_fetcher.rb
136 /usr/local/lib/ruby/1.9.1/open3.rb
137 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/gem_installer.rb
138 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/source.rb
139 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/lockfile_parser.rb
140 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/lazy_specification.rb
141 /usr/local/lib/ruby/1.9.1/tsort.rb
142 /usr/local/lib/ruby/1.9.1/forwardable.rb
143 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/spec_set.rb
144 /usr/local/lib/ruby/1.9.1/set.rb
145 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/resolver.rb
146 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/index.rb
147 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/remote_specification.rb
148 /usr/local/lib/ruby/1.9.1/rubygems/source_index.rb
149 /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack.rb
150 /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/builder.rb
151 /usr/local/lib/ruby/1.9.1/x86_64-linux/syck.so
152 /usr/local/lib/ruby/1.9.1/syck/error.rb
153 /usr/local/lib/ruby/1.9.1/syck/basenode.rb
154 /usr/local/lib/ruby/1.9.1/syck/syck.rb
155 /usr/local/lib/ruby/1.9.1/syck/tag.rb
156 /usr/local/lib/ruby/1.9.1/syck/stream.rb
157 /usr/local/lib/ruby/1.9.1/syck/constants.rb
158 /usr/local/lib/ruby/1.9.1/syck/rubytypes.rb
159 /usr/local/lib/ruby/1.9.1/syck/types.rb
160 /usr/local/lib/ruby/1.9.1/yaml/syck.rb
161 /usr/local/lib/ruby/1.9.1/syck.rb
162 /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.0.22/lib/bundler/setup.rb
163 /webapp/geras/geras/config/boot.rb
164 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/ruby_version_check.rb
165 /usr/local/lib/ruby/1.9.1/x86_64-linux/openssl.so
166 /usr/local/lib/ruby/1.9.1/openssl/bn.rb
167 /usr/local/lib/ruby/1.9.1/openssl/cipher.rb
168 /usr/local/lib/ruby/1.9.1/openssl/config.rb
169 /usr/local/lib/ruby/1.9.1/openssl/digest.rb
170 /usr/local/lib/ruby/1.9.1/openssl/buffering.rb
171 /usr/local/lib/ruby/1.9.1/openssl/ssl-internal.rb
172 /usr/local/lib/ruby/1.9.1/openssl/x509-internal.rb
173 /usr/local/lib/ruby/1.9.1/openssl.rb
174 /usr/local/lib/ruby/1.9.1/securerandom.rb
175 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/inflector/inflections.rb
176 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/inflector/methods.rb
177 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/lazy_load_hooks.rb
178 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/dependencies/autoload.rb
179 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/version.rb
180 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support.rb
181 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/kernel/reporting.rb
182 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/array/extract_options.rb
183 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/class/attribute_accessors.rb
184 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications/fanout.rb
185 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications.rb
186 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/array/wrap.rb
187 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/deprecation/behaviors.rb
188 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/deprecation/reporting.rb
189 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/deprecation.rb
190 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/aliasing.rb
191 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/deprecation/method_wrappers.rb
192 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/deprecation/proxy_wrappers.rb
193 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/deprecation.rb
194 /usr/local/lib/ruby/1.9.1/monitor.rb
195 /usr/local/lib/ruby/1.9.1/logger.rb
196 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/logger.rb
197 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/hash/reverse_merge.rb
198 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/initializable.rb
199 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/ordered_hash.rb
200 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/ordered_options.rb
201 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/hash/deep_dup.rb
202 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/paths.rb
203 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/rack.rb
204 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/configuration.rb
205 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/attribute_accessors.rb
206 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/multibyte/utils.rb
207 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/multibyte.rb
208 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/string/multibyte.rb
209 /usr/local/lib/ruby/gems/1.9.1/gems/i18n-0.6.0/lib/i18n/version.rb
210 /usr/local/lib/ruby/gems/1.9.1/gems/i18n-0.6.0/lib/i18n/exceptions.rb
211 /usr/local/lib/ruby/gems/1.9.1/gems/i18n-0.6.0/lib/i18n/interpolate/ruby.rb
212 /usr/local/lib/ruby/gems/1.9.1/gems/i18n-0.6.0/lib/i18n.rb
213 /usr/local/lib/ruby/gems/1.9.1/gems/i18n-0.6.0/lib/i18n/config.rb
214 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/i18n.rb
215 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/inflector/transliterate.rb
216 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/inflections.rb
217 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/string/inflections.rb
218 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/inflector.rb
219 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/introspection.rb
220 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/delegation.rb
221 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/railtie.rb
222 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/engine/railties.rb
223 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/engine.rb
224 /usr/local/lib/ruby/1.9.1/time.rb
225 /usr/local/lib/ruby/1.9.1/base64.rb
226 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/base64.rb
227 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/string/encoding.rb
228 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/object/blank.rb
229 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/xml_mini/rexml.rb
230 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/xml_mini.rb
231 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/hash/keys.rb
232 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/array/conversions.rb
233 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/plugin.rb
234 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application.rb
235 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/version.rb
236 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/file_update_checker.rb
237 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/concern.rb
238 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/railtie/configurable.rb
239 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/railtie/configuration.rb
240 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/i18n_railtie.rb
241 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/railtie.rb
242 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_pack/version.rb
243 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_pack.rb
244 /usr/local/lib/ruby/gems/1.9.1/gems/activemodel-3.2.2/lib/active_model/version.rb
245 /usr/local/lib/ruby/gems/1.9.1/gems/activemodel-3.2.2/lib/active_model.rb
246 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch.rb
247 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/railtie.rb
248 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails.rb
249 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/crud.rb
250 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/factory_methods.rb
251 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/expressions.rb
252 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/predications.rb
253 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/math.rb
254 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/alias_predication.rb
255 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/order_predications.rb
256 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/table.rb
257 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/attributes/attribute.rb
258 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/attributes.rb
259 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/compatibility/wheres.rb
260 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/relation.rb
261 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/expression.rb
262 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/visitor.rb
263 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/depth_first.rb
264 /usr/local/lib/ruby/1.9.1/x86_64-linux/bigdecimal.so
265 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/to_sql.rb
266 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/sqlite.rb
267 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/postgresql.rb
268 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/mysql.rb
269 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/mssql.rb
270 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/oracle.rb
271 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/join_sql.rb
272 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/where_sql.rb
273 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/order_clauses.rb
274 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/dot.rb
275 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/ibm_db.rb
276 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors/informix.rb
277 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/visitors.rb
278 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/tree_manager.rb
279 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/insert_manager.rb
280 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/select_manager.rb
281 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/update_manager.rb
282 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/delete_manager.rb
283 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/node.rb
284 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/select_statement.rb
285 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/select_core.rb
286 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/insert_statement.rb
287 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/update_statement.rb
288 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/terminal.rb
289 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/true.rb
290 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/false.rb
291 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/unary.rb
292 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/ascending.rb
293 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/descending.rb
294 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/unqualified_column.rb
295 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/with.rb
296 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/binary.rb
297 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/equality.rb
298 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/in.rb
299 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/join_source.rb
300 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/delete_statement.rb
301 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/table_alias.rb
302 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/infix_operation.rb
303 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/and.rb
304 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/function.rb
305 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/count.rb
306 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/values.rb
307 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/named_function.rb
308 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/inner_join.rb
309 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/outer_join.rb
310 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/string_join.rb
311 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes/sql_literal.rb
312 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/nodes.rb
313 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/deprecated.rb
314 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/sql/engine.rb
315 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel/sql_literal.rb
316 /usr/local/lib/ruby/gems/1.9.1/gems/arel-3.0.2/lib/arel.rb
317 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/version.rb
318 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/enumerable.rb
319 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/kernel/singleton_class.rb
320 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/remove_method.rb
321 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/class/attribute.rb
322 /usr/local/lib/ruby/gems/1.9.1/gems/activemodel-3.2.2/lib/active_model/attribute_methods.rb
323 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/attribute_methods.rb
324 /usr/local/lib/ruby/1.9.1/bigdecimal/util.rb
325 /usr/local/lib/ruby/1.9.1/benchmark.rb
326 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/benchmark.rb
327 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/schema_cache.rb
328 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/big_decimal/conversions.rb
329 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/quoting.rb
330 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/database_statements.rb
331 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/schema_statements.rb
332 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/database_limits.rb
333 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb
334 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/descendants_tracker.rb
335 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/object/inclusion.rb
336 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb
337 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract_adapter.rb
338 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/scoping.rb
339 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record.rb
340 /usr/local/lib/ruby/gems/1.9.1/gems/activemodel-3.2.2/lib/active_model/railtie.rb
341 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/basic_object.rb
342 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/object/acts_like.rb
343 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/duration.rb
344 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/object/try.rb
345 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/values/time_zone.rb
346 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/time_with_zone.rb
347 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/time/zones.rb
348 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/date/zones.rb
349 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/date/calculations.rb
350 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/time/publicize_conversion_methods.rb
351 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/time/conversions.rb
352 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/date_time/calculations.rb
353 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/date_time/conversions.rb
354 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/process/daemon.rb
355 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/time/calculations.rb
356 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/string/conversions.rb
357 /usr/local/lib/ruby/gems/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/string/interpolate.rb
358 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/string/interpolation.rb
359 /usr/local/lib/ruby/1.9.1/rexml/rexml.rb
360 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/rexml.rb
361 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/file/path.rb
362 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/method_names.rb
363 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/ruby/shim.rb
364 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/attr_internal.rb
365 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/anonymous.rb
366 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller.rb
367 /usr/local/lib/ruby/1.9.1/erb.rb
368 /usr/local/lib/ruby/1.9.1/x86_64-linux/enc/trans/single_byte.so
369 /usr/local/lib/ruby/1.9.1/x86_64-linux/enc/trans/escape.so
370 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/string/output_safety.rb
371 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_view.rb
372 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/vendor/html-scanner.rb
373 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/load_error.rb
374 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/name_error.rb
375 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/uri.rb
376 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller.rb
377 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_view/railtie.rb
378 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/railties/routes_helpers.rb
379 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/railties/paths.rb
380 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_controller/railtie.rb
381 /usr/local/lib/ruby/gems/1.9.1/gems/activerecord-3.2.2/lib/active_record/railtie.rb
382 /usr/local/lib/ruby/gems/1.9.1/gems/actionmailer-3.2.2/lib/action_mailer/version.rb
383 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/class/delegating_attributes.rb
384 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/reachable.rb
385 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/class/subclasses.rb
386 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/class.rb
387 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/array/uniq_by.rb
388 /usr/local/lib/ruby/gems/1.9.1/gems/actionmailer-3.2.2/lib/action_mailer.rb
389 /usr/local/lib/ruby/gems/1.9.1/gems/actionmailer-3.2.2/lib/action_mailer/railtie.rb
390 /usr/local/lib/ruby/gems/1.9.1/gems/activeresource-3.2.2/lib/active_resource/version.rb
391 /usr/local/lib/ruby/gems/1.9.1/gems/activeresource-3.2.2/lib/active_resource.rb
392 /usr/local/lib/ruby/gems/1.9.1/gems/activeresource-3.2.2/lib/active_resource/railtie.rb
393 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/test_unit/railtie.rb
394 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/sprockets/railtie.rb
395 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/all.rb
396 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/string_inquirer.rb
397 /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_options.rb
398 /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb_lib.so
399 /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/SQLType.rb
400 /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/ProcedureCall.rb
401 /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/Connection.rb
402 /usr/local/lib/ruby/gems/1.9.1/gems/rubyfb-0.6.3/lib/rubyfb.rb
403 /usr/local/lib/ruby/gems/1.9.1/gems/jquery-rails-2.0.1/lib/jquery/rails/engine.rb
404 /usr/local/lib/ruby/gems/1.9.1/gems/jquery-rails-2.0.1/lib/jquery/rails/version.rb
405 /usr/local/lib/ruby/gems/1.9.1/gems/jquery-rails-2.0.1/lib/jquery/rails.rb
406 /usr/local/lib/ruby/gems/1.9.1/gems/jquery-rails-2.0.1/lib/jquery-rails.rb
407 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/version.rb
408 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/module.rb
409 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/disabled_runtime.rb
410 /usr/local/lib/ruby/1.9.1/shellwords.rb
411 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/external_runtime.rb
412 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/johnson_runtime.rb
413 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb
414 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/ruby_racer_runtime.rb
415 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/ruby_rhino_runtime.rb
416 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs/runtimes.rb
417 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/version.rb
418 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/ext/v8/v8.so
419 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/c/locker.rb
420 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/portal.rb
421 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/portal/caller.rb
422 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/portal/proxies.rb
423 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/portal/templates.rb
424 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/portal/function.rb
425 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/portal/constructor.rb
426 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/portal/interceptors.rb
427 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/context.rb
428 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/object.rb
429 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/array.rb
430 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/function.rb
431 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/tap.rb
432 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/access.rb
433 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/error.rb
434 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8/stack.rb
435 /usr/local/lib/ruby/gems/1.9.1/gems/therubyracer-0.9.10/lib/v8.rb
436 /usr/local/lib/ruby/gems/1.9.1/gems/execjs-1.3.0/lib/execjs.rb
437 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/engine/configuration.rb
438 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application/configuration.rb
439 /webapp/geras/geras/config/application.rb
440 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/module/qualified_const.rb
441 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/string/starts_ends_with.rb
442 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/dependencies.rb
443 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application/bootstrap.rb
444 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application/railties.rb
445 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application/finisher.rb
446 /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.2/lib/rails/application/routes_reloader.rb
447 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/object/to_param.rb
448 /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/regexp.rb
449 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/polymorphic_routes.rb
450 /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing.rb
451 /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/core-ext/hash.rb
452 /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/router/utils.rb
453 /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/router/strexp.rb
454 /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/routes.rb
455 /usr/local/lib/ruby/gems/1.9.1/gems/journey-1.0.3/lib/journey/formatter.rb
456 /usr/local/lib/ruby/1.9.1/x86_64-linux/racc/cparse.so
457 /usr

Error preparing a SQL statement. invalid request BLR at offset 76 generator

I am getting this problem in some tables, and sometime to fix this, i just need to create a new generator for that table, the weird thing is that this legacy Database is being used with other system with DELPHI and is working good:

This is the error:

Error preparing a SQL statement.
invalid request BLR at offset 76
generator MSFIMPUESTOS_SEQ is not defined
Invalid token
SQL Code = -104
Firebird Code = 335544343

Model:
class Tax < ActiveRecord::Base
attr_accessible :code, :description, :rate
establish_connection(
:adapter => "rubyfb",
:database => "localhost:/home/developer/Desktop/MFSBASE.Ib",
:username => "SYSDBA",
:password => "masterkey",
:charset => "NONE")

self.table_name = 'msfimpuestos'

end

select for every asset

I get a select for every asset

Started GET "/assets/rails.png" for 127.0.0.1 at 2012-04-06 21:46:14 +0300
(29.3ms) select first 1 cast(1 as smallint) from rdb$database
Served asset /rails.png - 304 Not Modified (0ms)
[2012-04-06 21:46:14] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true

After gem install keeps throwing error about rubyfb_lib.so

This happened to me in linux, in Windows is working good.

[rake --tasks] rake aborted!
libruby19.so.1.9: cannot open shared object file: No such file or directory - /home/developer/.rvm/gems/ruby-1.9.3-p448@VnErpApi/gems/rubyfb-0.6.7/lib/rubyfb_lib.so
/home/developer/.rvm/gems/ruby-1.9.3-p448@VnErpApi/gems/rubyfb-0.6.7/lib/rubyfb.rb:4:in require' /home/developer/.rvm/gems/ruby-1.9.3-p448@VnErpApi/gems/rubyfb-0.6.7/lib/rubyfb.rb:4:in<top (required)>'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:72:in require' /home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:72:inblock (2 levels) in require'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:70:in each' /home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:70:inblock in require'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:59:in each' /home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:59:inrequire'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/bundler-1.3.5/lib/bundler.rb:132:in require' /home/developer/projects/rails/VnErpApi/config/application.rb:7:in<top (required)>'
/home/developer/projects/rails/VnErpApi/Rakefile:4:in require' /home/developer/projects/rails/VnErpApi/Rakefile:4:in<top (required)>'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/rake_module.rb:25:in load' /home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/rake_module.rb:25:inload_rakefile'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/application.rb:637:in raw_load_rakefile' /home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/application.rb:94:inblock in load_rakefile'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/application.rb:165:in standard_exception_handling' /home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/application.rb:93:inload_rakefile'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/application.rb:77:in block in run' /home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/application.rb:165:instandard_exception_handling'
/home/developer/.rvm/gems/ruby-1.9.3-p448@global/gems/rake-10.1.0/lib/rake/application.rb:75:in run' /home/developer/projects/rails/VnErpApi/bin/rake:4:in

'

Connection option hash

Hi,
is this the propper way to give the attribut sql_role_name to the connect satement?
Couldn't find any example how the hash should look like...

db = Database.new('test-server.org:C:\DB\test.fdb')
db.connect('Username', 'Passwort',{SQL_ROLE_NAME => "DB_USERS"})

Segmentation fault

Hi,
often (not always, 80% of the time) when I try to access a table with 25000+ records I get this Segmentation fault.

/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:924: [BUG] Segmentation fault
ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin10.8.0]

-- control frame ----------
c:0054 p:---- s:0229 b:0229 l:000228 d:000228 CFUNC  :===
c:0053 p:0055 s:0225 b:0224 l:0025d0 d:000223 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:924
c:0052 p:---- s:0219 b:0219 l:000218 d:000218 FINISH
c:0051 p:---- s:0217 b:0217 l:000216 d:000216 CFUNC  :each
c:0050 p:0018 s:0214 b:0214 l:0025d0 d:000213 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:921
c:0049 p:---- s:0210 b:0210 l:000209 d:000209 FINISH
c:0048 p:---- s:0208 b:0208 l:000207 d:000207 CFUNC  :exec_and_close
c:0047 p:0223 s:0203 b:0203 l:000168 d:000202 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:528
c:0046 p:0005 s:0199 b:0199 l:000189 d:000198 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract_adapter.rb:2
c:0045 p:0032 s:0197 b:0197 l:000196 d:000196 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activesupport-3.2.1/lib/active_support/notifications/instrumenter.rb:20
c:0044 p:0046 s:0190 b:0190 l:000189 d:000189 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract_adapter.rb:2
c:0043 p:0017 s:0181 b:0181 l:000180 d:000180 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:845
c:0042 p:0019 s:0175 b:0175 l:000174 d:000174 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:1095
c:0041 p:0025 s:0169 b:0169 l:000168 d:000168 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:511
c:0040 p:0036 s:0162 b:0162 l:0025d0 d:0025d0 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:919
c:0039 p:0024 s:0154 b:0154 l:000153 d:000153 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:888
c:0038 p:0031 s:0143 b:0143 l:000142 d:000142 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/database_sta
c:0037 p:0058 s:0137 b:0137 l:000136 d:000136 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/query_cache.
c:0036 p:0040 s:0130 b:0130 l:000119 d:000129 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/querying.rb:38
c:0035 p:0190 s:0128 b:0128 l:000127 d:000127 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/explain.rb:40
c:0034 p:0015 s:0120 b:0120 l:000119 d:000119 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/querying.rb:37
c:0033 p:0110 s:0115 b:0115 l:000114 d:000114 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation.rb:170
c:0032 p:0009 s:0109 b:0109 l:000098 d:000108 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation.rb:159
c:0031 p:0115 s:0107 b:0107 l:000106 d:000106 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/explain.rb:33
c:0030 p:0011 s:0099 b:0099 l:000098 d:000098 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation.rb:158
c:0029 p:0046 s:0096 b:0096 l:000095 d:000095 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation/finder_methods.rb:159
c:0028 p:0023 s:0092 b:0092 l:000091 d:000091 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/querying.rb:5
c:0027 p:0053 s:0087 b:0087 l:001ae8 d:000086 BLOCK  /Users/xx/xxxxxxx/workspace/xxxxxxx/xxxxxxx/lib/tasks/setup.rake:12
c:0026 p:---- s:0084 b:0084 l:000083 d:000083 FINISH
c:0025 p:---- s:0082 b:0082 l:000081 d:000081 CFUNC  :call
c:0024 p:0043 s:0077 b:0077 l:000068 d:000076 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:205
c:0023 p:---- s:0074 b:0074 l:000073 d:000073 FINISH
c:0022 p:---- s:0072 b:0072 l:000071 d:000071 CFUNC  :each
c:0021 p:0173 s:0069 b:0069 l:000068 d:000068 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:200
c:0020 p:0111 s:0065 b:0065 l:000059 d:000064 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:158
c:0019 p:0019 s:0063 b:0063 l:000062 d:000062 METHOD /Users/xx/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:201
c:0018 p:0033 s:0060 b:0060 l:000059 d:000059 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:151
c:0017 p:0048 s:0053 b:0053 l:000052 d:000052 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:144
c:0016 p:0045 s:0048 b:0048 l:000047 d:000047 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:116
c:0015 p:0012 s:0041 b:0041 l:000026 d:000040 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:94
c:0014 p:---- s:0038 b:0038 l:000037 d:000037 FINISH
c:0013 p:---- s:0036 b:0036 l:000035 d:000035 CFUNC  :each
c:0012 p:0069 s:0033 b:0033 l:000026 d:000032 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:94
c:0011 p:0009 s:0031 b:0031 l:000030 d:000030 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:133
c:0010 p:0011 s:0027 b:0027 l:000026 d:000026 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:88
c:0009 p:0029 s:0024 b:0024 l:000017 d:000023 BLOCK  /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:66
c:0008 p:0009 s:0022 b:0022 l:000021 d:000021 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:133
c:0007 p:0011 s:0018 b:0018 l:000017 d:000017 METHOD /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:63
c:0006 p:0060 s:0015 b:0015 l:000014 d:000014 TOP    /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/bin/rake:33
c:0005 p:---- s:0013 b:0013 l:000012 d:000012 FINISH
c:0004 p:---- s:0011 b:0011 l:000010 d:000010 CFUNC  :load
c:0003 p:0127 s:0007 b:0007 l:0014f8 d:0015e0 EVAL   /Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/bin/rake:19
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
c:0001 p:0000 s:0002 b:0002 l:0014f8 d:0014f8 TOP   
---------------------------
-- Ruby level backtrace information ----------------------------------------
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/bin/rake:19:in `<main>'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/bin/rake:19:in `load'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/bin/rake:33:in `<top (required)>'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:63:in `run'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:133:in `standard_exception_handling'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:66:in `block in run'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:88:in `top_level'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:133:in `standard_exception_handling'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:94:in `block in top_level'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:94:in `each'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:94:in `block (2 levels) in top_level'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/application.rb:116:in `invoke_task'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:144:in `invoke'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:151:in `invoke_with_call_chain'
/Users/xx/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:201:in `mon_synchronize'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:158:in `block in invoke_with_call_chain'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:200:in `execute'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:200:in `each'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:205:in `block in execute'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rake-0.9.2.2/lib/rake/task.rb:205:in `call'
/Users/xx/xxxxxxx/workspace/xxxxxxx/xxxxxxx/lib/tasks/setup.rake:12:in `block (2 levels) in <top (required)>'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/querying.rb:5:in `all'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation/finder_methods.rb:159:in `all'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation.rb:158:in `to_a'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/explain.rb:33:in `logging_query_plan'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation.rb:159:in `block in to_a'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/relation.rb:170:in `exec_queries'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/querying.rb:37:in `find_by_sql'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/explain.rb:40:in `logging_query_plan'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/querying.rb:38:in `block in find_by_sql'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/query_cache.rb:63:in `select_all'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/database_statements.rb:16:in `select_all'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:888:in `select'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:919:in `select_raw'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:511:in `exec_query'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:1095:in `log'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:845:in `log'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activesupport-3.2.1/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:528:in `block in exec_query'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:528:in `exec_and_close'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:921:in `block in select_raw'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:921:in `each'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:924:in `block (2 levels) in select_raw'
/Users/xx/.rvm/gems/ruby-1.9.2-p290@xxxxxxx/gems/rubyfb-0.6.2/lib/active_record/connection_adapters/rubyfb_adapter.rb:924:in `==='

-- C level backtrace information -------------------------------------------

[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html

Abort trap

System:

Firebird Server 2.5 64bit (OSX)
ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin10.8.0]
Rails 3.2.1

Firebird keywords

There is a need to automatically quote firebird's keywords. For instance, the acts_as_list plugin uses a column position, that will not work with the current rubyfb driver.

In addition, given that support is only available for Firebird 2.0+, the first and offset should be replaced by the rows x to y. I have already done this as it was causing some trouble with will_paginate, but it would be good to add the support to the default one available in the repos.

Automatic conversion of TIMESTAMP to time with regard to DST

In a project, I use rubyfb for importing data from an external FB database. The records have a field with datatype TIMESTAMP. Records are spaced in 15 minute intervals are meant to represent times in CET.

When looking at the data via IB SQL tool I see records with times from the first column.

IB SQL rubyfb expected
2013-03-31 01:30 2013-03-31 01:30 CET 2013-03-31 01:30 CET
2013-03-31 01:45 2013-03-31 01:30 CET 2013-03-31 01:30 CET
2013-03-31 02:00 2013-03-31 03:00 CEST 2013-03-31 03:00 CEST
2013-03-31 02:15 2013-03-31 03:15 CEST 2013-03-31 03:15 CEST
2013-03-31 02:30 2013-03-31 03:30 CEST 2013-03-31 03:30 CEST
2013-03-31 02:45 2013-03-31 03:45 CEST 2013-03-31 03:45 CEST
2013-03-31 03:00 2013-03-31 03:00 CEST 2013-03-31 04:00 CEST
2013-03-31 03:15 2013-03-31 03:15 CEST 2013-03-31 04:15 CEST
2013-03-31 03:30 2013-03-31 03:30 CEST 2013-03-31 04:30 CEST
2013-03-31 03:45 2013-03-31 03:45 CEST 2013-03-31 04:45 CEST
2013-03-31 04:00 2013-03-31 04:00 CEST 2013-03-31 05:00 CEST
2013-03-31 04:15 2013-03-31 04:15 CEST 2013-03-31 05:15 CEST
2013-03-31 04:30 2013-03-31 04:30 CEST 2013-03-31 05:30 CEST
2013-03-31 04:45 2013-03-31 04:45 CEST 2013-03-31 05:45 CEST

But when I queries with rubyfb the records have values from the middle column, i.e. 03:00 CEST to 03:59 CEST is repeated twice and all summer hours are one hour behind the expected time even though they have the CEST TZ. That is the regular time is handled correctly, the shift to DST is correct but the whole DST is one hour off.

(For clarification, CET is +01:00 and CEST is +02:00. In 2013 the switch occurred at 2013-03-31 changing from 01:59 CET to 03:00 CEST.)

I don't have access to the server running the FB database and don't know what is the setting of the server time or if it has any significance. I can tell that the database itself returns correct current time in CEST when queried during CEST.

As a workaround I CAST the column to VARCHAR and then parse the returned value with explicitly specifying CET as a timezone.

Error opening database connection

`connect': Error opening database connection. (Rubyfb::FireRubyException)
unable to allocate memory from operating system
Unsuccessful execution caused by an unavailable resource.
SQL Code = -904

The first 77 connections are ok...

....each{|sql|
db = Database.new(...)
cxn = db.connect(...)
cxn.execute_immediate(sql).each{|v|
puts v[:field]
}
}

Is there something wrong with my code?l

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.