Project

General

Profile

Bug #8907

Updated by nobu (Nobuyoshi Nakada) over 10 years ago

I had installed debugger gem on Rails 4 application, and had put "debugger" inside controller's private method(before_action method). Below is the code snippet from users_controller.rb. 

 Rails 4.0.0 

 class UsersController < ApplicationController 
   before_action :is_signed_in, only: [:new, :create] 
  
     def new 
     @user = User.new 
   end 

   def create 
     @user = User.new(user_params) 
     if @user.save 
       sign_in @user 
       flash[:success] = "Welcome to the Sample App!" 
       redirect_to @user 
     else 
       render 'new' 
     end 
   end 

   private 
      def is_signed_in 
       debugger 
       redirect_to(root_url) if signed_in? 
     end 
 end 

 Though I'm not able to reproduce it, still thought of sharing it here. I could find two crash reports in my Library.. Attaching both of them. 

 Here is the trace: 

 ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin11.4.2] 

 -- Crash Report log information -------------------------------------------- 
    See Crash Report log file under the one of following: 
      * ~/Library/Logs/CrashReporter 
      * /Library/Logs/CrashReporter 
      * ~/Library/Logs/DiagnosticReports 
      * /Library/Logs/DiagnosticReports 
    the more detail of. 

 -- Control frame information ----------------------------------------------- 
 c:0009 p:---- s:0038 e:000037 CFUNC    :remove_breakpoint 
 c:0008 p:0037 s:0034 e:000033 BLOCK    /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debugger-1.6.1/lib/ruby-debug/commands/breakpoints.rb:130 [FINISH] 
 c:0007 p:---- s:0031 e:000030 CFUNC    :each 
 c:0006 p:0028 s:0028 e:000027 METHOD /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debugger-1.6.1/lib/ruby-debug/commands/breakpoints.rb:127 
 c:0005 p:0040 s:0024 e:000023 BLOCK    /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/ide_processor.rb:89 [FINISH] 
 c:0004 p:---- s:0021 e:000020 CFUNC    :catch 
 c:0003 p:0066 s:0017 e:000016 METHOD /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/ide_processor.rb:86 
 c:0002 p:0303 s:0010 e:000009 BLOCK    /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide.rb:122 [FINISH] 
 c:0001 p:---- s:0002 e:000001 TOP      [FINISH] 

 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide.rb:122:in `block in start_control' 
 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/ide_processor.rb:86:in `process_commands' 
 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/ide_processor.rb:86:in `catch' 
 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/ide_processor.rb:89:in `block in process_commands' 
 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debugger-1.6.1/lib/ruby-debug/commands/breakpoints.rb:127:in `execute' 
 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debugger-1.6.1/lib/ruby-debug/commands/breakpoints.rb:127:in `each' 
 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debugger-1.6.1/lib/ruby-debug/commands/breakpoints.rb:130:in `block in execute' 
 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debugger-1.6.1/lib/ruby-debug/commands/breakpoints.rb:130:in `remove_breakpoint' 

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

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

 * Loaded script: /Users/Chandan/Documents/experiments/sample_app/bin/rails 

 * Loaded features: 

 (snip because truncated by Redmine) 


 Process finished with exit code 

     0 enumerator.so 
     1 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/enc/encdb.bundle 
     2 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/enc/trans/transdb.bundle 
     3 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/rbconfig.rb 
     4 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/compatibility.rb 
     5 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/defaults.rb 
     6 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/deprecate.rb 
     7 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/errors.rb 
     8 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/version.rb 
     9 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/requirement.rb 
    10 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/platform.rb 
    11 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/specification.rb 
    12 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/exceptions.rb 
    13 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_gem.rb 
    14 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/thread.rb 
    15 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/monitor.rb 
    16 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb 
    17 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems.rb 
    18 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/optparse.rb 
    19 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/ostruct.rb 
    20 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/prettyprint.rb 
    21 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/pp.rb 
    22 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/stringio.bundle 
    23 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/socket.bundle 
    24 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/socket.rb 
    25 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debase-0.0.3/lib/debase_internals.bundle 
    26 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debase-0.0.3/lib/debase/version.rb 
    27 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debase-0.0.3/lib/debase/context.rb 
    28 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/debase-0.0.3/lib/debase.rb 
    29 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/version.rb 
    30 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/cgi/core.rb 
    31 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/cgi/util.rb 
    32 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/cgi/cookie.rb 
    33 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/cgi.rb 
    34 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/dependency.rb 
    35 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/path_support.rb 
    36 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/syntax_error.rb 
    37 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/psych.bundle 
    38 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes/node.rb 
    39 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes/stream.rb 
    40 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes/document.rb 
    41 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes/sequence.rb 
    42 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes/scalar.rb 
    43 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes/mapping.rb 
    44 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes/alias.rb 
    45 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/nodes.rb 
    46 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/streaming.rb 
    47 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/visitors/visitor.rb 
    48 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/strscan.bundle 
    49 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/scalar_scanner.rb 
    50 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/visitors/to_ruby.rb 
    51 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/visitors/emitter.rb 
    52 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/visitors/yaml_tree.rb 
    53 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/json/ruby_events.rb 
    54 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/visitors/json_tree.rb 
    55 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/visitors/depth_first.rb 
    56 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/visitors.rb 
    57 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/handler.rb 
    58 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/tree_builder.rb 
    59 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/parser.rb 
    60 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/omap.rb 
    61 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/set.rb 
    62 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/coder.rb 
    63 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/core_ext.rb 
    64 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/date_core.bundle 
    65 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/date/format.rb 
    66 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/date.rb 
    67 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/deprecated.rb 
    68 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/stream.rb 
    69 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/json/yaml_events.rb 
    70 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/json/tree_builder.rb 
    71 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/json/stream.rb 
    72 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych/handlers/document_stream.rb 
    73 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/psych.rb 
    74 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/yaml.rb 
    75 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/xml_printer.rb 
    76 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/interface.rb 
    77 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/helper.rb 
    78 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/breakpoints.rb 
    79 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/catchpoint.rb 
    80 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/condition.rb 
    81 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/control.rb 
    82 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/enable.rb 
    83 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/eval.rb 
    84 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/frame.rb 
    85 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/inspect.rb 
    86 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/jump.rb 
    87 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/load.rb 
    88 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/pause.rb 
    89 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/set_type.rb 
    90 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/stepping.rb 
    91 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/threads.rb 
    92 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/commands/variables.rb 
    93 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/command.rb 
    94 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/ide_processor.rb 
    95 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/event_processor.rb 
    96 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide.rb 
    97 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/multiprocess/pre_child.rb 
    98 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/multiprocess/monkey.rb 
    99 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/ruby-debug-ide-0.4.17/lib/ruby-debug-ide/multiprocess.rb 
   100 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/pathname.bundle 
   101 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/pathname.rb 
   102 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/user_interaction.rb 
   103 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/etc.bundle 
   104 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/config_file.rb 
   105 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/rubygems_integration.rb 
   106 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/shared_helpers.rb 
   107 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/fileutils.rb 
   108 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/gem_path_manipulation.rb 
   109 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/gem_helpers.rb 
   110 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/match_platform.rb 
   111 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/rubygems_ext.rb 
   112 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/version.rb 
   113 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler.rb 
   114 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/settings.rb 
   115 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/digest.bundle 
   116 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/digest.rb 
   117 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/digest/sha1.bundle 
   118 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/set.rb 
   119 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/definition.rb 
   120 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/dependency.rb 
   121 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/ruby_dsl.rb 
   122 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/dsl.rb 
   123 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/source.rb 
   124 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/common.rb 
   125 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/generic.rb 
   126 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/ftp.rb 
   127 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/http.rb 
   128 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/https.rb 
   129 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/ldap.rb 
   130 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/ldaps.rb 
   131 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri/mailto.rb 
   132 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/uri.rb 
   133 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/fcntl.bundle 
   134 

 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/timeout.rb 
   135 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/openssl.bundle 
   136 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl/bn.rb 
   137 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl/cipher.rb 
   138 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl/config.rb 
   139 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl/digest.rb 
   140 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl/x509.rb 
   141 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl/buffering.rb 
   142 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl/ssl.rb 
   143 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/openssl.rb 
   144 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/securerandom.rb 
   145 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/resolv.rb 
   146 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/remote_fetcher.rb 
   147 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/text.rb 
   148 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/name_tuple.rb 
   149 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/rubygems/spec_fetcher.rb 
   150 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/source/rubygems.rb 
   151 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/ruby_version.rb 
   152 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/source/path.rb 
   153 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/source/git.rb 
   154 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/lockfile_parser.rb 
   155 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/lazy_specification.rb 
   156 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/tsort.rb 
   157 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/forwardable.rb 
   158 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/spec_set.rb 
   159 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/environment.rb 
   160 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/runtime.rb 
   161 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/index.rb 
   162 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/remote_specification.rb 
   163 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/endpoint_specification.rb 
   164 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/dep_proxy.rb 
   165 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@global/gems/bundler-1.3.5/lib/bundler/setup.rb 
   166 /Users/Chandan/Documents/experiments/sample_app/config/boot.rb 
   167 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/thread_safe-0.1.2/lib/thread_safe/version.rb 
   168 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/delegate.rb 
   169 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/thread_safe-0.1.2/lib/thread_safe/synchronized_delegator.rb 
   170 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/thread_safe-0.1.2/lib/thread_safe.rb 
   171 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/array/prepend_and_append.rb 
   172 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/hash/deep_merge.rb 
   173 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/hash/except.rb 
   174 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/hash/slice.rb 
   175 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/i18n-0.6.5/lib/i18n/version.rb 
   176 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/i18n-0.6.5/lib/i18n/exceptions.rb 
   177 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/i18n-0.6.5/lib/i18n/interpolate/ruby.rb 
   178 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/i18n-0.6.5/lib/i18n.rb 
   179 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/lazy_load_hooks.rb 
   180 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/i18n-0.6.5/lib/i18n/config.rb 
   181 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/i18n.rb 
   182 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/thread_safe-0.1.2/lib/thread_safe/non_concurrent_cache_backend.rb 
   183 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/thread_safe-0.1.2/lib/thread_safe/mri_cache_backend.rb 
   184 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/thread_safe-0.1.2/lib/thread_safe/cache.rb 
   185 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/inflector/inflections.rb 
   186 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/inflections.rb 
   187 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/inflector/methods.rb 
   188 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/dependencies/autoload.rb 
   189 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/version.rb 
   190 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/array/extract_options.rb 
   191 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/class/attribute_accessors.rb 
   192 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/concern.rb 
   193 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/logger_silence.rb 
   194 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/logger.rb 
   195 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/logger.rb 
   196 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support.rb 
   197 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/blank.rb 
   198 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/kernel/singleton_class.rb 
   199 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/remove_method.rb 
   200 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/class/attribute.rb 
   201 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/delegation.rb 
   202 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/singleton.rb 
   203 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/deprecation/instance_delegator.rb 
   204 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb 
   205 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/mutex_m.rb 
   206 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/notifications/fanout.rb 
   207 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/per_thread_registry.rb 
   208 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/notifications.rb 
   209 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/deprecation/behaviors.rb 
   210 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/deprecation/reporting.rb 
   211 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/aliasing.rb 
   212 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/deprecation/method_wrappers.rb 
   213 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/deprecation/proxy_wrappers.rb 
   214 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/deprecation.rb 
   215 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/deprecation.rb 
   216 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/rails.rb 
   217 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/attribute_accessors.rb 
   218 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_pack/version.rb 
   219 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_pack.rb 
   220 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/tmpdir.rb 
   221 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/tempfile.rb 
   222 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-1.5.2/lib/rack/multipart.rb 
   223 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/time.rb 
   224 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-1.5.2/lib/rack/utils.rb 
   225 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-1.5.2/lib/rack.rb 
   226 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_dispatch.rb 
   227 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-1.5.2/lib/rack/server.rb 
   228 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/commands/server.rb 
   229 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activemodel-4.0.0/lib/active_model/version.rb 
   230 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activemodel-4.0.0/lib/active_model.rb 
   231 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/crud.rb 
   232 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/factory_methods.rb 
   233 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/expressions.rb 
   234 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/predications.rb 
   235 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/window_predications.rb 
   236 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/math.rb 
   237 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/alias_predication.rb 
   238 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/order_predications.rb 
   239 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/table.rb 
   240 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/attributes/attribute.rb 
   241 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/attributes.rb 
   242 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/compatibility/wheres.rb 
   243 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/expression.rb 
   244 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/visitor.rb 
   245 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/depth_first.rb 
   246 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/bigdecimal.bundle 
   247 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/to_sql.rb 
   248 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/sqlite.rb 
   249 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/postgresql.rb 
   250 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/mysql.rb 
   251 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/mssql.rb 
   252 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/oracle.rb 
   253 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/join_sql.rb 
   254 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/where_sql.rb 
   255 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/order_clauses.rb 
   256 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/dot.rb 
   257 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/ibm_db.rb 
   258 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors/informix.rb 
   259 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/visitors.rb 
   260 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/tree_manager.rb 
   261 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/insert_manager.rb 
   262 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/select_manager.rb 
   263 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/update_manager.rb 
   264 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/delete_manager.rb 
   265 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/node.rb 
   266 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/select_statement.rb 
   267 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/select_core.rb 
   268 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/insert_statement.rb 
   269 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/update_statement.rb 
   270 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/terminal.rb 
   271 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/true.rb 
   272 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/false.rb 
   273 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/unary.rb 
   274 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/grouping.rb 
   275 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/ascending.rb 
   276 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/descending.rb 
   277 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/unqualified_column.rb 
   278 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/with.rb 
   279 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/binary.rb 
   280 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/equality.rb 
   281 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/in.rb 
   282 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/join_source.rb 
   283 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/delete_statement.rb 
   284 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/table_alias.rb 
   285 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/infix_operation.rb 
   286 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/over.rb 
   287 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/and.rb 
   288 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/function.rb 
   289 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/count.rb 
   290 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/extract.rb 
   291 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/values.rb 
   292 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/named_function.rb 
   293 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/window.rb 
   294 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/inner_join.rb 
   295 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/outer_join.rb 
   296 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/string_join.rb 
   297 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes/sql_literal.rb 
   298 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/nodes.rb 
   299 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/deprecated.rb 
   300 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/sql/engine.rb 
   301 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel/sql_literal.rb 
   302 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/arel-4.0.0/lib/arel.rb 
   303 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-deprecated_finders-1.0.3/lib/active_record/deprecated_finders/version.rb 
   304 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-deprecated_finders-1.0.3/lib/active_record/deprecated_finders.rb 
   305 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/version.rb 
   306 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/enumerable.rb 
   307 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activemodel-4.0.0/lib/active_model/attribute_methods.rb 
   308 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/attribute_methods.rb 
   309 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/bigdecimal/util.rb 
   310 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb 
   311 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/benchmark.rb 
   312 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/schema_cache.rb 
   313 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/ipaddr.rb 
   314 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/schema_dumper.rb 
   315 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/big_decimal/conversions.rb 
   316 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/quoting.rb 
   317 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/database_statements.rb 
   318 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/errors.rb 
   319 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/migration.rb 
   320 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/migration/join_table.rb 
   321 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/schema_statements.rb 
   322 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/database_limits.rb 
   323 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/query_cache.rb 
   324 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/descendants_tracker.rb 
   325 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/kernel/reporting.rb 
   326 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/callbacks.rb 
   327 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract_adapter.rb 
   328 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/scoping.rb 
   329 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record.rb 
   330 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/ruby_version_check.rb 
   331 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/key_generator.rb 
   332 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/initializable.rb 
   333 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/ordered_options.rb 
   334 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/acts_like.rb 
   335 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/duplicable.rb 
   336 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/deep_dup.rb 
   337 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/try.rb 
   338 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/inclusion.rb 
   339 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/to_param.rb 
   340 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/to_query.rb 
   341 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/base64.rb 
   342 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/multibyte.rb 
   343 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/string/multibyte.rb 
   344 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/inflector/transliterate.rb 
   345 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/string/inflections.rb 
   346 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/xml_mini/rexml.rb 
   347 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/xml_mini.rb 
   348 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/hash/keys.rb 
   349 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/array/conversions.rb 
   350 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/time/acts_like.rb 
   351 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/proxy_object.rb 
   352 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/duration.rb 
   353 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/values/time_zone.rb 
   354 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/time/conversions.rb 
   355 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/time_with_zone.rb 
   356 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/time/zones.rb 
   357 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date_and_time/calculations.rb 
   358 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/time/calculations.rb 
   359 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/time/marshal.rb 
   360 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/time.rb 
   361 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date/acts_like.rb 
   362 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date/zones.rb 
   363 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date/calculations.rb 
   364 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date/conversions.rb 
   365 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date.rb 
   366 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date_time/acts_like.rb 
   367 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date_time/calculations.rb 
   368 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date_time/conversions.rb 
   369 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date_time/zones.rb 
   370 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/date_time.rb 
   371 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/numeric/time.rb 
   372 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/integer/time.rb 
   373 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/string/conversions.rb 
   374 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/string/zones.rb 
   375 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/time.rb 
   376 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/array/wrap.rb 
   377 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/hash/reverse_merge.rb 
   378 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/hash/conversions.rb 
   379 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/conversions.rb 
   380 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/instance_variables.rb 
   381 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/json-1.8.0/lib/json/version.rb 
   382 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/json-1.8.0/lib/json/generic_object.rb 
   383 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/json-1.8.0/lib/json/common.rb 
   384 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/enc/utf_16be.bundle 
   385 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/enc/utf_16le.bundle 
   386 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/enc/utf_32be.bundle 
   387 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/enc/utf_32le.bundle 
   388 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/json-1.8.0/lib/json/ext/parser.bundle 
   389 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/json-1.8.0/lib/json/ext/generator.bundle 
   390 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/json-1.8.0/lib/json/ext.rb 
   391 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/json-1.8.0/lib/json.rb 
   392 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/to_json.rb 
   393 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/option_merger.rb 
   394 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object/with_options.rb 
   395 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/object.rb 
   396 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/paths.rb 
   397 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/rack.rb 
   398 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/configuration.rb 
   399 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/inflector.rb 
   400 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/introspection.rb 
   401 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/railtie.rb 
   402 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/engine/railties.rb 
   403 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/engine.rb 
   404 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/application.rb 
   405 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/version.rb 
   406 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/deprecation.rb 
   407 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/file_update_checker.rb 
   408 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/railtie/configurable.rb 
   409 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/railtie/configuration.rb 
   410 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/i18n_railtie.rb 
   411 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/railtie.rb 
   412 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_dispatch/railtie.rb 
   413 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails.rb 
   414 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activemodel-4.0.0/lib/active_model/railtie.rb 
   415 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/attr_internal.rb 
   416 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/anonymous.rb 
   417 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/abstract_controller.rb 
   418 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-1.5.2/lib/rack/request.rb 
   419 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-1.5.2/lib/rack/response.rb 
   420 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_dispatch/http/filter_redirect.rb 
   421 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_dispatch/http/cache.rb 
   422 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_dispatch/http/response.rb 
   423 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_controller/metal/live.rb 
   424 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/hash_with_indifferent_access.rb 
   425 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/hash/indifferent_access.rb 
   426 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/proc.rb 
   427 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/rescuable.rb 
   428 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_dispatch/http/upload.rb 
   429 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-test-0.6.2/lib/rack/mock_session.rb 
   430 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-test-0.6.2/lib/rack/test/cookie_jar.rb 
   431 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-test-0.6.2/lib/rack/test/mock_digest_request.rb 
   432 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-test-0.6.2/lib/rack/test/utils.rb 
   433 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-test-0.6.2/lib/rack/test/methods.rb 
   434 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-test-0.6.2/lib/rack/test/uploaded_file.rb 
   435 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-test-0.6.2/lib/rack/test.rb 
   436 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_controller/metal/strong_parameters.rb 
   437 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/erb.rb 
   438 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/string/output_safety.rb 
   439 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view.rb 
   440 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/vendor/html-scanner.rb 
   441 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/load_error.rb 
   442 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/name_error.rb 
   443 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/uri.rb 
   444 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_controller.rb 
   445 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/railtie.rb 
   446 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/abstract_controller/railties/routes_helpers.rb 
   447 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_controller/railties/helpers.rb 
   448 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_controller/railtie.rb 
   449 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activerecord-4.0.0/lib/active_record/railtie.rb 
   450 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionmailer-4.0.0/lib/action_mailer/version.rb 
   451 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/class/delegating_attributes.rb 
   452 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/reachable.rb 
   453 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/class/subclasses.rb 
   454 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/class.rb 
   455 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionmailer-4.0.0/lib/action_mailer.rb 
   456 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionmailer-4.0.0/lib/action_mailer/railtie.rb 
   457 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/version.rb 
   458 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/hike-1.2.3/lib/hike.rb 
   459 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/template.rb 
   460 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/string.rb 
   461 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/erb.rb 
   462 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/etanni.rb 
   463 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/haml.rb 
   464 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/css.rb 
   465 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/csv.rb 
   466 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/coffee.rb 
   467 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/nokogiri.rb 
   468 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/builder.rb 
   469 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/markaby.rb 
   470 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/liquid.rb 
   471 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/radius.rb 
   472 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/markdown.rb 
   473 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/textile.rb 
   474 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/rdoc.rb 
   475 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/wiki.rb 
   476 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/yajl.rb 
   477 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/asciidoc.rb 
   478 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt/plain.rb 
   479 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/tilt-1.4.1/lib/tilt.rb 
   480 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/eco_template.rb 
   481 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/ejs_template.rb 
   482 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/jst_processor.rb 
   483 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/utils.rb 
   484 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/engines.rb 
   485 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/rack-1.5.2/lib/rack/mime.rb 
   486 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/mime.rb 
   487 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/processor.rb 
   488 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/processing.rb 
   489 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/compressing.rb 
   490 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/paths.rb 
   491 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/hike-1.2.3/lib/hike/normalized_array.rb 
   492 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/hike-1.2.3/lib/hike/extensions.rb 
   493 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/hike-1.2.3/lib/hike/index.rb 
   494 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/hike-1.2.3/lib/hike/paths.rb 
   495 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/hike-1.2.3/lib/hike/trail.rb 
   496 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/shellwords.rb 
   497 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/directive_processor.rb 
   498 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/safety_colons.rb 
   499 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/charset_normalizer.rb 
   500 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/sass_compressor.rb 
   501 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/yui_compressor.rb 
   502 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/closure_compressor.rb 
   503 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/uglifier_compressor.rb 
   504 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/sass_template.rb 
   505 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets/scss_template.rb 
   506 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-2.10.0/lib/sprockets.rb 
   507 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/benchmarkable.rb 
   508 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/active_model_helper.rb 
   509 /Users/Chandan/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/x86_64-darwin11.4.2/zlib.bundle 
   510 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/asset_url_helper.rb 
   511 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/capture_helper.rb 
   512 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/tag_helper.rb 
   513 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/asset_tag_helper.rb 
   514 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/atom_feed_helper.rb 
   515 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/cache_helper.rb 
   516 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/controller_helper.rb 
   517 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/csrf_helper.rb 
   518 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/date_helper.rb 
   519 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/debug_helper.rb 
   520 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/javascript_helper.rb 
   521 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/array/access.rb 
   522 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/url_helper.rb 
   523 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/string/filters.rb 
   524 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/sanitize_helper.rb 
   525 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/text_helper.rb 
   526 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/form_tag_helper.rb 
   527 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/tags.rb 
   528 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/model_naming.rb 
   529 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/form_helper.rb 
   530 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/form_options_helper.rb 
   531 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/number_helper.rb 
   532 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/number_helper.rb 
   533 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/output_safety_helper.rb 
   534 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module/qualified_const.rb 
   535 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/core_ext/module.rb 
   536 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/record_identifier.rb 
   537 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/record_tag_helper.rb 
   538 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/rendering_helper.rb 
   539 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers/translation_helper.rb 
   540 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/actionpack-4.0.0/lib/action_view/helpers.rb 
   541 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-rails-2.0.0/lib/sprockets/rails/helper.rb 
   542 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/engine/configuration.rb 
   543 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/railties-4.0.0/lib/rails/application/configuration.rb 
   544 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sprockets-rails-2.0.0/lib/sprockets/railtie.rb 
   545 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/activesupport-4.0.0/lib/active_support/string_inquirer.rb 
   546 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/root.rb 
   547 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/util/subset_map.rb 
   548 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/util/multibyte_string_scanner.rb 
   549 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/util.rb 
   550 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/version.rb 
   551 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/logger/log_level.rb 
   552 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/logger/base.rb 
   553 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/logger.rb 
   554 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/cache_stores/base.rb 
   555 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/cache_stores/filesystem.rb 
   556 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/cache_stores/memory.rb 
   557 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/cache_stores/chain.rb 
   558 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/cache_stores.rb 
   559 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/node.rb 
   560 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/root_node.rb 
   561 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/rule_node.rb 
   562 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/comment_node.rb 
   563 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/prop_node.rb 
   564 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/directive_node.rb 
   565 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/media_node.rb 
   566 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/supports_node.rb 
   567 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/css_import_node.rb 
   568 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/variable_node.rb 
   569 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/mixin_def_node.rb 
   570 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/mixin_node.rb 
   571 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/trace_node.rb 
   572 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/content_node.rb 
   573 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/function_node.rb 
   574 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/return_node.rb 
   575 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/extend_node.rb 
   576 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/if_node.rb 
   577 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/while_node.rb 
   578 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/for_node.rb 
   579 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/each_node.rb 
   580 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/debug_node.rb 
   581 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/warn_node.rb 
   582 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/import_node.rb 
   583 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/charset_node.rb 
   584 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/base.rb 
   585 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/perform.rb 
   586 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/cssize.rb 
   587 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/extend.rb 
   588 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/convert.rb 
   589 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/to_css.rb 
   590 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/deep_copy.rb 
   591 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/set_options.rb 
   592 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/tree/visitors/check_nesting.rb 
   593 /Users/Chandan/.rvm/gems/ruby-2.0.0-p247@rails4/gems/sass-3.2.10/lib/sass/selector/simple.rb 
   594 /Users/Chandan/.rvm/gems/ruby-2.0.0-p24

Back